diff --git a/Dockerfile b/Dockerfile index 05fd642..44321ac 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,10 @@ -FROM python:3.10.7-slim as build +FROM python:3.10.8-slim as build WORKDIR /app COPY . . RUN pip install poetry && poetry build -FROM python:3.10.7-slim +FROM python:3.10.8-slim COPY --from=build /app/dist /tmp/dist RUN pip install /tmp/dist/*.whl && rm -rf /tmp/dist