Add basic Dockerfile

This commit is contained in:
Tony Blyler 2021-11-07 01:55:55 -04:00
parent 2e2a18c037
commit fe02b11951
2 changed files with 9 additions and 0 deletions

1
.dockerignore Normal file
View file

@ -0,0 +1 @@
.git

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM python:3.10-alpine
RUN mkdir -p /usr/local/citi-alerts
WORKDIR /usr/local/citi-alerts
COPY ./ ./
CMD ./main.py