diff --git a/.dockerignore b/.dockerignore index 406ebc0..e00420a 100644 --- a/.dockerignore +++ b/.dockerignore @@ -3,5 +3,5 @@ !src/ !package.json !package-lock.json -!LICENCE +!LICENSE !tsconfig.json diff --git a/Dockerfile b/Dockerfile index 0450e38..8bbd01a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,20 +1,23 @@ # syntax=docker/dockerfile:1 -FROM node:20.2-alpine3.18 +FROM node:21.2.0-bookworm-slim ENV DOCKERIZED=1 RUN mkdir /config ;\ chown node:node /config ;\ - apk add dumb-init ffmpeg + 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 ;\ + npx tsc ;\ rm -r src/ tsconfig.json ;\ - npm uninstall typescript @types/sqlite3 + npm uninstall typescript @types/sqlite3 ;\ + npm cache clean --force ENV DP_FORCE_YTDL_MOD=youtube-ext CMD ["dumb-init", "node", "./dist/index.js"]