Skip to content

Commit

Permalink
Merge pull request #239 from n-thumann/fix_broken_dockerfile
Browse files Browse the repository at this point in the history
Fix: Broken Dockerfile
  • Loading branch information
n-thumann authored Nov 13, 2023
2 parents feab43e + dbb1f29 commit 5ea3c87
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 @@ -11,11 +11,11 @@ FROM node:20-bullseye-slim
USER node
WORKDIR /app

COPY --chown=node:node --from=builder /app/dist/ /app/
COPY --chown=node:node --from=builder /app/dist/ ./dist/
ADD --chown=node:node https://db.iptv.blog/multicastadressliste.json ./data/
COPY --chown=node:node package*.json ./
COPY --chown=node:node views/ ./views/
COPY --chown=node:node public/ ./public/
RUN npm ci --omit=dev && npm cache clean --force

CMD [ "node", "app.js" ]
CMD [ "node", "dist/app.js" ]

0 comments on commit 5ea3c87

Please sign in to comment.