From e0eb0f91bb8e2cf7a325e693df2e27af49227fee Mon Sep 17 00:00:00 2001 From: Ted Kulp Date: Sat, 4 Jun 2022 10:26:21 -0400 Subject: [PATCH] fis: add ffmpeg to container --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index f615579..1bf57a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,16 +4,16 @@ RUN mkdir /app RUN cd /app WORKDIR /app +ENV PYTHONUNBUFFERED=1 +RUN apk add --update --no-cache python3 ffmpeg && ln -sf python3 /usr/bin/python +RUN python3 -m ensurepip +RUN pip3 install --no-cache --upgrade pip setuptools + COPY package.json package.json COPY package-lock.json package-lock.json RUN npm install -ENV PYTHONUNBUFFERED=1 -RUN apk add --update --no-cache python3 && ln -sf python3 /usr/bin/python -RUN python3 -m ensurepip -RUN pip3 install --no-cache --upgrade pip setuptools - COPY . . RUN npm run ng build api --configuration production