diff --git a/Dockerfile b/Dockerfile index 365a940..abcf76e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,9 +3,9 @@ FROM python:3.8-slim-buster as base FROM base as builder ENV PIP_PARAMS="" -ENV PIP_VERSION=22.0.4 +ENV PIP_VERSION=23.2 -ENV PLONE_VERSION=5.2.12 +ENV PLONE_VERSION=5.2.13 ENV PLONE_VOLTO="plone.volto==3.1.0a4" ENV EXTRA_PACKAGES="relstorage==3.4.5 psycopg2==2.9.3 python-ldap==3.4.0" @@ -24,7 +24,7 @@ RUN pip wheel Paste Plone ${PLONE_VOLTO} ${EXTRA_PACKAGES} -c https://dist.plone FROM base ENV PIP_PARAMS="" -ENV PIP_VERSION=22.0.4 +ENV PIP_VERSION=23.2 LABEL maintainer="Plone Community " \ org.label-schema.name="plone-backend" \ @@ -34,6 +34,7 @@ LABEL maintainer="Plone Community " \ COPY --from=builder /wheelhouse /wheelhouse RUN <