dnscms: always install latest gunicorn

This commit is contained in:
2024-08-10 23:40:57 +02:00
parent 459029d971
commit a6baaf257c

View File

@ -29,7 +29,7 @@ RUN curl -sSL https://install.python-poetry.org | python3 -
WORKDIR /app
COPY pyproject.toml poetry.lock README.md /app/
RUN pip install "gunicorn==20.0.4"
RUN pip install gunicorn
RUN poetry install --without=dev
COPY . /app
RUN chown wagtail:wagtail /app