diff options
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..d9d599d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,12 @@ +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"] |
