13 lines
467 B
Docker
13 lines
467 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 /app
|
|
COPY --from=requirements-stage /tmp/requirements.txt /app/requirements.txt
|
|
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
|
|
COPY kennel /app/kennel
|
|
CMD ["uvicorn", "kennel.main:app", "--host", "0.0.0.0", "--port", "80"]
|