fix(docker): now use debian instead of alpine #125
2 changed files with 12 additions and 9 deletions
|
@ -3,5 +3,5 @@
|
|||
!src/
|
||||
!package.json
|
||||
!package-lock.json
|
||||
!LICENCE
|
||||
!LICENSE
|
||||
!tsconfig.json
|
||||
|
|
19
Dockerfile
19
Dockerfile
|
@ -1,20 +1,23 @@
|
|||
# syntax=docker/dockerfile:1
|
||||
|
||||
FROM node:20.2-alpine3.18
|
||||
FROM node:20.2.0-bookworm-slim
|
||||
|
||||
ENV DOCKERIZED=1
|
||||
RUN mkdir /config ;\
|
||||
chown node:node /config ;\
|
||||
apk add dumb-init ffmpeg
|
||||
RUN mkdir /config && \
|
||||
chown node:node /config && \
|
||||
apt-get update && \
|
||||
apt-get install -y dumb-init ffmpeg && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /app
|
||||
COPY --chown=node:node . .
|
||||
|
||||
ENV NODE_ENV=production
|
||||
RUN npm ci --omit=dev ;\
|
||||
npx tsc ;\
|
||||
rm -r src/ tsconfig.json ;\
|
||||
npm uninstall typescript @types/sqlite3
|
||||
RUN npm ci --omit=dev && \
|
||||
npx tsc && \
|
||||
rm -r src/ tsconfig.json && \
|
||||
npm uninstall typescript @types/sqlite3 && \
|
||||
npm cache clean --force
|
||||
|
||||
ENV DP_FORCE_YTDL_MOD=youtube-ext
|
||||
CMD ["dumb-init", "node", "./dist/index.js"]
|
||||
|
|
Loading…
Reference in a new issue