diff --git a/Dockerfile b/Dockerfile index d9989f9..b2ea4df 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,7 @@ FROM python:alpine # Update package lists and install necessary dependencies -RUN apk update && - apk add --no-cache build-base icu-data-full curl python3-dev musl-dev && - curl -sSL https://install.python-poetry.org | python +RUN apk update && apk add --no-cache build-base icu-data-full curl python3-dev musl-dev && curl -sSL https://install.python-poetry.org | python # Set working directory WORKDIR /app @@ -12,9 +10,7 @@ WORKDIR /app COPY pyproject.toml /app/ # Install poetry and dependencies -RUN pip install poetry && - poetry config virtualenvs.create false && - poetry install --no-root --only main +RUN pip install poetry && poetry config virtualenvs.create false && poetry install --no-root --only main # Copy the rest of the files COPY . /app