diff --git a/src/Dockerfile b/src/Dockerfile new file mode 100644 index 000000000..83f72450b --- /dev/null +++ b/src/Dockerfile @@ -0,0 +1,9 @@ +FROM python:3 + +RUN apt-get update && apt-get install -y postgresql-client + +COPY Pipfile Pipfile +COPY Pipfile.lock Pipfile.lock + +RUN pip install pipenv +RUN pipenv install --system --dev