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

Added -y flag.
This commit is contained in:
valerii@valeriis-air.(none) 2023-05-05 01:53:29 +03:00
parent 0d9ff67704
commit e4b774070d

View File

@ -5,7 +5,7 @@ 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 update
RUN apt-get install ffmpeg #issue 445 RUN apt-get install ffmpeg -y #issue 445
RUN mkdir -p /usr/app RUN mkdir -p /usr/app
RUN python -m venv ./venv RUN python -m venv ./venv