Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlgo11 committed May 20, 2024
1 parent 8a3184d commit 2d7a94a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ COPY --from=0 /app/node_modules ./node_modules
COPY . .

# Expose the port on which the Node.js application will run
EXPOSE 3000
EXPOSE 3000/tcp

# Configure healthcheck
HEALTHCHECK --interval=1m --timeout=5s CMD node healtcheck.js || exit 1
HEALTHCHECK --start-period=10s --interval=1m --timeout=5s --retries=3 CMD node healthcheck.js || exit 1

# Command to run the Node.js application
CMD ["node", "server.js"]

0 comments on commit 2d7a94a

Please sign in to comment.