From 6f03348e5aac33118840324a96e9321dca483b9f Mon Sep 17 00:00:00 2001 From: Elizabeth Hunt Date: Wed, 7 Aug 2024 19:46:46 -0700 Subject: initial commit that i did NOT steal from anywhere --- Dockerfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') 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"] -- cgit v1.3