diff --git a/Dockerfile b/Dockerfile index 36123be..c656865 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"]