diff --git a/Dockerfile b/Dockerfile index f30c77e..353441b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.12 AS build WORKDIR /tmp RUN pip install poetry -COPY ./pyproject.toml ./poetry.lock* /tmp/ +COPY ./pyproject.toml ./poetry.lock /tmp/ RUN poetry export -f requirements.txt --output requirements.txt --without-hashes FROM python:3.12-slim