Adding gitignore and Dockerfile

This commit is contained in:
Cal Corum 2023-02-21 16:03:54 -06:00
parent 65ba75a4e1
commit 7fdb4c51f9
2 changed files with 14 additions and 0 deletions

3
.gitignore vendored
View File

@ -127,3 +127,6 @@ dmypy.json
# Pyre type checker # Pyre type checker
.pyre/ .pyre/
# Project specifics
.idea/

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM python:3.8-slim
WORKDIR /usr/src/app
RUN apt-get update && apt-get install -y git
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD [ "python", "-u", "./paperdynasty.py" ]