Backend docker container setup

This commit is contained in:
Alex Wright 2018-11-17 09:12:08 +01:00
commit 26b8557e3f
2 changed files with 10 additions and 0 deletions

5
backend/Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM python:3
WORKDIR /app
COPY ./requirements.txt /app/
RUN pip install -r requirements.txt

5
backend/requirements.txt Normal file
View File

@ -0,0 +1,5 @@
jwcrypto
cryptography
flask
gunicorn
ldap3