This commit is contained in:
leo
2023-12-31 15:50:28 +08:00
commit d36f0b05ca
11 changed files with 230 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3.10
COPY requirements.txt /tmp/requirements.txt
RUN pip install -r /tmp/requirements.txt
COPY . /app
WORKDIR /app
CMD ["python", "/app/main.py"]