Add dockerfile

Signed-off-by: Frank Villaro-Dixon <frank@villaro-dixon.eu>
This commit is contained in:
Frank Villaro-Dixon 2023-07-11 22:07:06 +02:00
parent 4d2559cec6
commit b177167c23

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM python:3.10
RUN pip install pipenv
COPY Pipfile* /tmp/
RUN cd /tmp && pipenv install --dev --system --deploy
COPY main.py .