This commit is contained in:
Hunter Opp 2022-01-31 01:46:50 +05:30 committed by GitHub
parent 88c22dbb4a
commit c606d54ff0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,9 @@
FROM nikolaik/python-nodejs:python3.9-nodejs17
FROM nikolaik/python-nodejs:latest
RUN apt-get update \
&& apt-get install -y --no-install-recommends ffmpeg \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
COPY . /app
WORKDIR /app
COPY . /app/
WORKDIR /app/
RUN pip3 install --no-cache-dir --upgrade --requirement requirements.txt
CMD ["python3", "main.py"]