diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -1,11 +1,10 @@ -FROM python:3.7 as pyfbin +FROM python:3.8 as pyfbin WORKDIR /app COPY requirements.txt . RUN apt-get update && apt-get install -y --no-install-recommends \ ffmpegthumbnailer \ - imagemagick \ && apt-get clean && rm -rf /var/lib/apt/lists/* \ && pip install --no-cache-dir -r requirements.txt |