Add docker file

Not really tested since my docker environment isn't working. To wrap
up later.
This commit is contained in:
Kienan Stewart 2020-04-20 22:55:48 -04:00
parent cc805d3027
commit 9e6ffb0174
1 changed files with 13 additions and 0 deletions

13
Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM debian:buster
RUN apt-get update && apt-get install -y \
pipenv
RUN mkdir /venv
RUN mkdir /src
VOLUME /src
WORKDIR /venv
ENV PIPENV_VENV_IN_PROJECT="enabled"
COPY Pipfile .
COPY Pipfile.lock .
RUN pipenv sync