diff --git a/Dockerfile b/Dockerfile index 05c855d..c168a13 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:alpine3.18 WORKDIR /app COPY . /app -RUN apk update && apk add --no-cache git gcc curl postgresql-client +RUN apk update && apk add --no-cache git gcc curl RUN curl -sSL https://install.python-poetry.org | python ENV PATH="${PATH}:/root/.local/bin" RUN poetry config virtualenvs.create false && poetry install --no-dev