diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2020-10-29 19:59:48 +0100 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2020-10-29 19:59:48 +0100 |
commit | 4a202c2317658824e22e5ef31640cfa149e0b04b (patch) | |
tree | 0b7ab40d83a5f21d5787a41cad0472b3ecbd2b6a | |
parent | 2498f142782e26681c542dfca4b3f9fc4ff64808 (diff) |
Update Dockerfile and requirements.txt
-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 |