From c4daf8c5fd5aa6f31df28f7b1af05df72fe98a3c Mon Sep 17 00:00:00 2001 From: Fred van Dijk Date: Thu, 16 May 2024 22:43:54 +0200 Subject: [PATCH] Pin plone.distribution to 1.0.0b4 for now to get backend distribution back up and running Repeat ENTRYPOINT and CMD to see if it fixes the sigint signal add build-image-nocache option by naming the from input and filtering it. --- backend/Dockerfile | 7 +++++-- backend/Makefile | 6 +++++- backend/constraints.txt | 1 + 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index c3af23d..72a6fcf 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -1,7 +1,7 @@ # syntax=docker/dockerfile:1 ARG SEED=1000 ARG PLONE_VERSION=6.0.11 -FROM plone/plone-backend:${PLONE_VERSION} +FROM plone/plone-backend:${PLONE_VERSION} AS plonebackend LABEL maintainer="Plone Foundation " \ @@ -14,7 +14,7 @@ COPY . . # Install local requirements and fix permissions RUN <