Skip to content

Commit

Permalink
fix: dockerfile dir
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksasiriski committed Nov 2, 2023
1 parent a85840d commit 4b8a0e2
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 @@ -20,7 +20,7 @@ RUN cd /temp && npm ci
# copy node_modules from temp directory
# then copy all (non-ignored) project files into the image
FROM base AS build
COPY --from=install /temp/node_modules node_modules
COPY --from=install /temp/node_modules node_modules/
COPY . .

# build
Expand All @@ -39,4 +39,4 @@ EXPOSE 3000

# run the app
ENTRYPOINT [ "tini", "--" ]
CMD [ "bun", "run", "start" ]
CMD [ "bun", "run", "start" ]

0 comments on commit 4b8a0e2

Please sign in to comment.