use apt-get instead of apt

This commit is contained in:
teddit
2022-01-29 14:53:45 +01:00
parent d315051a7b
commit 3ad64d5c87

View File

@@ -2,7 +2,7 @@
FROM node:14.17-slim
# Video support dependency
RUN apt update && apt install -y ffmpeg
RUN apt-get update && apt-get install -y ffmpeg
# Install NPM dependencies and copy the project
WORKDIR /teddit