Skip to content

Commit

Permalink
fix dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
after-ephemera committed Feb 26, 2024
1 parent 9faf069 commit 8b5f138
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN npm install && npm run build
FROM node:21-slim
WORKDIR /slackbot
COPY package.json ./
COPY dist/ ./dist/
COPY --from=builder /slackbot/dist/ ./dist/
COPY --from=builder /slackbot/node_modules/ node_modules/
COPY config/ ./config/
CMD ["node", "dist/src/app.js"]
Expand Down

0 comments on commit 8b5f138

Please sign in to comment.