From ae9cc40e279073186071fb9630f97e9b0d5ff34c Mon Sep 17 00:00:00 2001 From: Mylloon Date: Tue, 5 Dec 2023 14:16:35 +0100 Subject: [PATCH] fmt --- Dockerfile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Dockerfile b/Dockerfile index 38cae9a..3ab7e7d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,20 +4,20 @@ FROM node:20.2.0-bullseye-slim ENV DOCKERIZED=1 RUN mkdir /config && \ - chown node:node /config && \ - apt-get update && \ - apt-get install -y dumb-init ffmpeg && \ - rm -rf /var/lib/apt/lists/* + 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 && \ - npm cache clean --force + 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"]