diff --git a/Dockerfile b/Dockerfile index 9c4c803a..096201c1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,13 +8,13 @@ RUN apk update && \ # Set working directory WORKDIR /app -# Copy just the dependency manifests first -COPY poetry.lock pyproject.toml /app/ - # Install dependencies RUN poetry config virtualenvs.create false && \ poetry install --no-dev +# Copy just the dependency manifests first +COPY poetry.lock pyproject.toml /app/ + # Copy the rest of the application COPY . /app