init: initial commit
This commit is contained in:
commit
d4496a2eda
8 changed files with 120 additions and 0 deletions
9
Dockerfile
Normal file
9
Dockerfile
Normal file
|
@ -0,0 +1,9 @@
|
|||
FROM python:3.11-slim
|
||||
|
||||
WORKDIR /app
|
||||
COPY . /app
|
||||
|
||||
RUN pip install -r requirements.txt
|
||||
|
||||
EXPOSE 8000
|
||||
CMD ["python", "main.py"]
|
Loading…
Add table
Add a link
Reference in a new issue