Initial commit

This commit is contained in:
askiiart 2023-03-08 09:13:52 -06:00
commit f4a7a0bcdb
3 changed files with 36 additions and 0 deletions

11
Dockerfile Normal file
View file

@ -0,0 +1,11 @@
# syntax=docker/dockerfile:1
FROM python:3.9-bullseye
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY app.py app.py
CMD ["python3", "app.py"]