add Dockerfile

This commit is contained in:
qweeck 2024-02-29 17:39:19 +11:00
parent 16d75723fb
commit cf8b6f0e0b
1 changed files with 7 additions and 0 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM python:3.10.13-alpine3.18
WORKDIR /usr/src/app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD [ "python", "main.py" ]