dockerfile-fix
Some checks failed
Deploy on push / deploy (push) Failing after 8s

This commit is contained in:
Untone 2024-02-25 19:08:20 +03:00
parent b12db9af0e
commit 3b5a6973ef

View File

@ -8,13 +8,13 @@ RUN apk update && \
# Set working directory # Set working directory
WORKDIR /app WORKDIR /app
# Copy just the dependency manifests first
COPY poetry.lock pyproject.toml /app/
# Install dependencies # Install dependencies
RUN poetry config virtualenvs.create false && \ RUN poetry config virtualenvs.create false && \
poetry install --no-dev poetry install --no-dev
# Copy just the dependency manifests first
COPY poetry.lock pyproject.toml /app/
# Copy the rest of the application # Copy the rest of the application
COPY . /app COPY . /app