Add dockerfile

This commit is contained in:
Zeva Rose 2022-10-27 19:50:28 -06:00
parent 7b9379b5c5
commit 1ed09666b8

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM python:3.10
WORKDIR /app
COPY . /app
RUN pip install --no-cache-dir .
CMD [ "python", "run.py" ]