Skip to content

Commit

Permalink
fix(Dockerfile): Fixed issue with unable to fetch the response.
Browse files Browse the repository at this point in the history
The issue was that there were no ffmpeg installed.
  • Loading branch information
valerii-chirkov committed May 4, 2023
1 parent b3754fa commit 0d9ff67
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ WORKDIR /usr/app
ENV PATH="/usr/app/venv/bin:$PATH"

#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 python -m venv ./venv

Expand Down

0 comments on commit 0d9ff67

Please sign in to comment.