commit 26b8557e3f7b322783a69aac992041b188257caa Author: Alex Wright Date: Sat Nov 17 09:12:08 2018 +0100 Backend docker container setup diff --git a/backend/Dockerfile b/backend/Dockerfile new file mode 100644 index 0000000..764a0a4 --- /dev/null +++ b/backend/Dockerfile @@ -0,0 +1,5 @@ +FROM python:3 + +WORKDIR /app +COPY ./requirements.txt /app/ +RUN pip install -r requirements.txt diff --git a/backend/requirements.txt b/backend/requirements.txt new file mode 100644 index 0000000..5774964 --- /dev/null +++ b/backend/requirements.txt @@ -0,0 +1,5 @@ +jwcrypto +cryptography +flask +gunicorn +ldap3