From 3b5a6973ef6095484ef57826d251d47c070cbb52 Mon Sep 17 00:00:00 2001 From: Untone Date: Sun, 25 Feb 2024 19:08:20 +0300 Subject: [PATCH] dockerfile-fix --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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