Skip to content

Commit

Permalink
Update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ScribblerCoder authored and octachrome committed Apr 16, 2024
1 parent e25b03f commit 7216e86
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# A multistage Dockerfile. The first stage is the builder image then
# we copy all needed dependencies to the final image to reduce size
FROM node:lts-alpine as builder

# Install dependencies
Expand All @@ -24,6 +26,7 @@ FROM node:lts-alpine as server

WORKDIR /app

# Copy the application from the previous stage (without extra packages installed through apk/apt)
COPY --from=builder /app ./

# Expose the port and start the application
Expand Down

0 comments on commit 7216e86

Please sign in to comment.