-
-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use benjaminrodenberg/precice:develop #171
Conversation
I'm testing the workflow via workflow dispatch: https://github.com/precice/python-bindings/actions/runs/4316947902/jobs/7533389590 |
User already exists in benjaminrodenberg/precice:develop
Workflow is working as expected: https://github.com/precice/python-bindings/actions/runs/4316995924/jobs/7533501497 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some hopefully helpful comments to understand the changes better.
@@ -34,3 +34,4 @@ jobs: | |||
tags: ${{ env.docker_username }}/python-bindings:${{ env.branch }},${{ env.docker_username }}/python-bindings:latest | |||
build-args: | | |||
branch=${{ env.branch }} | |||
from=benjaminrodenberg/precice:develop |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We need to provide a docker image with the latest version of preCICE, because we need to include the breaking changes.
ARG uid=1000 | ||
ARG gid=1000 | ||
RUN groupadd -g ${gid} precice \ | ||
&& useradd -u ${uid} -g ${gid} -m -s /bin/bash precice \ | ||
&& sudo usermod -a -G sudo precice | ||
# ARG uid=1000 | ||
# ARG gid=1000 | ||
# RUN groupadd -g ${gid} precice \ | ||
# && useradd -u ${uid} -g ${gid} -m -s /bin/bash precice \ | ||
# && sudo usermod -a -G sudo precice |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See baseimage of benjaminrodenberg/precice:develop, described in precice/precice#1115 (comment)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Makes sense for now as we do not have a better container strategy for precice:develop.
No description provided.