6 lines
156 B
Docker
6 lines
156 B
Docker
FROM python:3.9.23-slim
|
|
COPY . /app
|
|
WORKDIR /app
|
|
RUN pip install -r requirements.txt
|
|
ENTRYPOINT ["python", "run.py", "--host", "0.0.0.0", "--port", "8000"]
|