This repository has been archived on 2026-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
MoeCounter/Dockerfile
T

13 lines
209 B
Docker
Raw Normal View History

2024-08-29 22:54:58 +08:00
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
2023-01-27 17:21:23 +08:00
COPY . .
2024-08-29 22:54:58 +08:00
EXPOSE 8000
CMD ["uvicorn", "src:create_app", "--host", "0.0.0.0", "--port", "8000"]