-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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.
- Loading branch information
Showing
3 changed files
with
11 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 <[email protected]>" \ | ||
|
@@ -14,7 +14,7 @@ COPY . . | |
|
||
# Install local requirements and fix permissions | ||
RUN <<EOT | ||
./bin/pip install mxdev | ||
./bin/pip install mxdev==4.0.2 | ||
mv requirements-docker.txt requirements.txt | ||
./bin/mxdev -c mx.ini | ||
./bin/pip install -r requirements-mxdev.txt | ||
|
@@ -27,3 +27,6 @@ RUN <<EOT | |
ADDITIONAL_PROFILES=plone6demo:initial | ||
./docker-entrypoint.sh create-site | ||
EOT | ||
|
||
ENTRYPOINT [ "/app/docker-entrypoint.sh" ] | ||
CMD ["start"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
-c https://dist.plone.org/release/6.0.11/constraints.txt | ||
plone.distribution==1.0.0b4 |