wanlanda_website/Dockerfile
Zikil 70ecfd8d2f
Some checks failed
Deploy FastAPI Application / deploy (push) Failing after 17m45s
add cicd
2024-12-15 01:03:07 +07:00

11 lines
241 B
Docker

FROM python:3.10
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY ./app /code/app
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8020"]