Skip to content

Commit

Permalink
set build seed backend
Browse files Browse the repository at this point in the history
  • Loading branch information
ksuess committed Jun 18, 2024
1 parent ffeb224 commit 2648155
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion dockerfiles/backend/Dockerfile.acceptance
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Dockerfile from cookiecutter-plone-starter

ARG PLONE_VERSION=6.0
ARG SEED=2
ARG SEED=6
FROM plone/server-builder:${PLONE_VERSION} as builder

WORKDIR /app
Expand All @@ -12,6 +12,7 @@ WORKDIR /app

# Install local requirements
RUN <<EOT
SEED=${SEED}
set -e
bin/pip install plone.app.robotframework>=2.0.0
# TODO Switch back to released collective.elastic.plone
Expand Down
3 changes: 2 additions & 1 deletion dockerfiles/backend/Dockerfile.acceptance.multilingual
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Run robotserver verbose

ARG PLONE_VERSION=6.0
ARG SEED=5
ARG SEED=6
FROM plone/server-builder:${PLONE_VERSION} as builder

WORKDIR /app
Expand All @@ -14,6 +14,7 @@ WORKDIR /app

# Install local requirements
RUN <<EOT
SEED=${SEED}
set -e
bin/pip install plone.app.robotframework>=2.0.0
# TODO Switch back to released collective.elastic.plone
Expand Down

0 comments on commit 2648155

Please sign in to comment.