fix(Dockerfile): Fixed issue with unable to fetch the response.

The issue was that there were no ffmpeg installed.
pull/451/head
valerii@valeriis-air.(none) 1 year ago
parent b3754facf9
commit 0d9ff67704

@ -4,6 +4,9 @@ WORKDIR /usr/app
ENV PATH="/usr/app/venv/bin:$PATH" ENV PATH="/usr/app/venv/bin:$PATH"
#RUN apt-get update && apt-get install -y git #RUN apt-get update && apt-get install -y git
RUN apt-get update
RUN apt-get install ffmpeg #issue 445
RUN mkdir -p /usr/app RUN mkdir -p /usr/app
RUN python -m venv ./venv RUN python -m venv ./venv

Loading…
Cancel
Save