diff options
-rw-r--r-- | Dockerfile | 3 | ||||
-rw-r--r-- | requirements.txt | 2 |
2 files changed, 2 insertions, 3 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 diff --git a/requirements.txt b/requirements.txt index 54220c9..269c5bd 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,7 @@ boto3 cryptography flask +Flask-SQLAlchemy Flask-Login gevent gunicorn @@ -9,4 +10,3 @@ Pillow psycopg2-binary PyJWT requests -sqlalchemy |