13 lines
465 B
Docker
13 lines
465 B
Docker
|
FROM python:3.12 as requirements-stage
|
||
|
WORKDIR /tmp
|
||
|
RUN pip install poetry
|
||
|
COPY ./pyproject.toml ./poetry.lock* /tmp/
|
||
|
RUN poetry export -f requirements.txt --output requirements.txt --without-hashes
|
||
|
|
||
|
FROM python:3.12
|
||
|
WORKDIR /code
|
||
|
COPY --from=requirements-stage /tmp/requirements.txt /code/requirements.txt
|
||
|
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
||
|
COPY kennel /code/src
|
||
|
CMD ["uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "80"]
|