Add basic Dockerfile
This commit is contained in:
parent
2e2a18c037
commit
fe02b11951
2 changed files with 9 additions and 0 deletions
1
.dockerignore
Normal file
1
.dockerignore
Normal file
|
@ -0,0 +1 @@
|
|||
.git
|
8
Dockerfile
Normal file
8
Dockerfile
Normal 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
|
Loading…
Reference in a new issue