Anri Kennel
d9cb8f02e2
All checks were successful
ci/woodpecker/push/publish Pipeline was successful
Closes #77 Follow up of #65 Recommended by https://github.com/Androz2091/discord-player/issues/1639 This also returns to Alpine-based Docker image and remove the Debian one Co-authored-by: Mylloon <kennel.anri@tutanota.com> Reviewed-on: #90
21 lines
379 B
Docker
21 lines
379 B
Docker
# syntax=docker/dockerfile:1
|
|
|
|
FROM node:19.8.1-alpine3.17
|
|
|
|
ENV DOCKERIZED=1
|
|
RUN mkdir /config
|
|
RUN chown node:node /config
|
|
|
|
RUN apk add dumb-init ffmpeg
|
|
ENV NODE_ENV=production
|
|
WORKDIR /app
|
|
|
|
COPY --chown=node:node . .
|
|
|
|
RUN npm ci --only=production
|
|
RUN npx tsc
|
|
|
|
RUN rm -r src/ tsconfig.json
|
|
RUN npm uninstall typescript @types/sqlite3
|
|
|
|
CMD ["dumb-init", "node", "./dist/index.js"]
|