diff --git a/Dockerfile b/Dockerfile index e75cfa50..981c3404 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:alpine WORKDIR /app COPY . /app -RUN apk update && apk add --no-cache build-base icu-data-ru curl python3-dev musl-dev postgresql-dev +RUN apk update && apk add --no-cache build-base icu-data-full curl python3-dev musl-dev postgresql-dev postgresql-client RUN curl -sSL https://install.python-poetry.org | python ENV PATH="${PATH}:/root/.local/bin" RUN poetry config virtualenvs.create false && poetry install --only main