mirror of
https://github.com/Ky0toFu/Mirror-Flowers.git
synced 2025-09-18 04:51:06 +00:00
10 lines
185 B
Docker
10 lines
185 B
Docker
FROM python:3.9
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD ["uvicorn", "backend.app:app", "--host", "0.0.0.0", "--port", "8000"] |