From edf54a88a7704b301f603243750b9ff7797e2fc0 Mon Sep 17 00:00:00 2001 From: Seamus Johnston Date: Wed, 10 Aug 2022 10:57:50 -0500 Subject: [PATCH] Add Dockerfile --- src/Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/Dockerfile 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