Fix packages

This commit is contained in:
Zachary Guénot
2023-06-15 21:34:23 +02:00
parent 3e5a4cdff2
commit 6ffa521888
2 changed files with 2 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ WORKDIR /usr/src/app
COPY ["package.json", "package-lock.json*", "./"]
RUN apt-get update
RUN apt-get -y install ffmpeg
RUN npm install --production --silent && mv node_modules ../
RUN npm install --production --verbose && mv node_modules ../
COPY . .
RUN chown -R node /usr/src/app
USER node