add to function

This commit is contained in:
2024-03-09 20:28:55 -05:00
parent 66ea127f23
commit 039ecde461
7 changed files with 103 additions and 2 deletions

5
Dockerfile Normal file
View File

@@ -0,0 +1,5 @@
FROM python:3.11.8-alpine3.18
COPY ./app /app
WORKDIR /app
RUN pip3 install -r requirements.txt
CMD ["python", "/app/main.py"]