Add Dockerfile

This commit is contained in:
Seamus Johnston 2022-08-10 10:57:50 -05:00
parent d810eee37c
commit edf54a88a7
No known key found for this signature in database
GPG key ID: 2F21225985069105

9
src/Dockerfile Normal file
View file

@ -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