Update Dockerfile

This commit is contained in:
Karim Iskakov
2023-06-20 11:21:45 +03:00
committed by GitHub
parent d6fab25531
commit a8c1e211ab
+2 -2
View File
@@ -9,7 +9,7 @@ ENV PIP_DISABLE_PIP_VERSION_CHECK=on
ENV PIP_DEFAULT_TIMEOUT=100 ENV PIP_DEFAULT_TIMEOUT=100
RUN apt-get update RUN apt-get update
RUN apt-get install -y python3 python3-pip python-dev build-essential python3-venv ffmpeg RUN apt-get install -y python3 python3-pip python3-dev build-essential python3-venv ffmpeg
RUN mkdir -p /code RUN mkdir -p /code
ADD . /code ADD . /code
@@ -17,4 +17,4 @@ WORKDIR /code
RUN pip3 install -r requirements.txt RUN pip3 install -r requirements.txt
CMD ["bash"] CMD ["bash"]