Anri Kennel
d3cd6e1346
All checks were successful
ci/woodpecker/push/publish Pipeline was successful
Resolve https://github.com/Androz2091/discord-player/issues/1705 - Update deps - Load env file BEFORE importing depedencies - Now force the usage of play-dl Co-authored-by: Mylloon <kennel.anri@tutanota.com> Reviewed-on: #91
23 lines
410 B
Docker
23 lines
410 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
|
|
|
|
ENV DP_FORCE_YTDL_MOD=play-dl
|
|
|
|
CMD ["dumb-init", "node", "./dist/index.js"]
|