Initial commit

This commit is contained in:
github-classroom[bot]
2025-01-16 17:29:37 +00:00
committed by Igor Baliuk
commit b76ad1afe8
7 changed files with 118 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
FROM python:3.12-alpine3.21
WORKDIR /usr/src/app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD [ "python", "./main.py" ]