Skip to content

Commit

Permalink
Fix bookworm image Docker copy issue (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
pacoxu authored Oct 7, 2023
1 parent 966bbbd commit 402eb41
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
FROM node:slim

COPY . .
WORKDIR /usr/src/app

COPY . /usr/src/app

RUN npm install --production

ENTRYPOINT ["node", "/lib/main.js"]
ENTRYPOINT ["node", "/usr/src/app/lib/main.js"]

0 comments on commit 402eb41

Please sign in to comment.