fix/music #122
1 changed files with 9 additions and 12 deletions
21
Dockerfile
21
Dockerfile
|
@ -1,23 +1,20 @@
|
||||||
# syntax=docker/dockerfile:1
|
# syntax=docker/dockerfile:1
|
||||||
|
|
||||||
FROM node:19.8.1-alpine3.17
|
FROM node:20.2-alpine3.18
|
||||||
|
|
||||||
ENV DOCKERIZED=1
|
ENV DOCKERIZED=1
|
||||||
RUN mkdir /config
|
RUN mkdir /config ;\
|
||||||
RUN chown node:node /config
|
chown node:node /config ;\
|
||||||
|
apk add dumb-init ffmpeg
|
||||||
|
|
||||||
RUN apk add dumb-init ffmpeg
|
|
||||||
ENV NODE_ENV=production
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
COPY --chown=node:node . .
|
COPY --chown=node:node . .
|
||||||
|
|
||||||
RUN npm ci --only=production
|
ENV NODE_ENV=production
|
||||||
RUN npx tsc
|
RUN npm ci --omit=dev ;\
|
||||||
|
npx tsc ;\
|
||||||
RUN rm -r src/ tsconfig.json
|
rm -r src/ tsconfig.json ;\
|
||||||
RUN npm uninstall typescript @types/sqlite3
|
npm uninstall typescript @types/sqlite3
|
||||||
|
|
||||||
ENV DP_FORCE_YTDL_MOD=youtube-ext
|
ENV DP_FORCE_YTDL_MOD=youtube-ext
|
||||||
|
|
||||||
CMD ["dumb-init", "node", "./dist/index.js"]
|
CMD ["dumb-init", "node", "./dist/index.js"]
|
||||||
|
|
Loading…
Reference in a new issue