feat: add Docker build
This commit is contained in:
parent
1f4e4e0933
commit
98f94e6e15
@ -0,0 +1,11 @@
|
|||||||
|
FROM python:3.10-alpine
|
||||||
|
|
||||||
|
WORKDIR /app
|
||||||
|
EXPOSE 9999
|
||||||
|
|
||||||
|
COPY requirements.txt .
|
||||||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||||||
|
|
||||||
|
COPY src /app
|
||||||
|
|
||||||
|
CMD ["python", "main.py"]
|
Loading…
Reference in New Issue
Block a user