Skip to content
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

Switch default dev-env container pull to ghcr.io #2806

Merged
merged 2 commits into from
Oct 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docker-end-user.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
- name: Set baseimage
run: |
USER_INPUT=${{ github.event.inputs.baseimage }}
echo "BASEIMAGE=${USER_INPUT:-docker.io/dolfinx/dev-env:current}" >> $GITHUB_ENV
echo "BASEIMAGE=${USER_INPUT:-ghcr.io/fenics/dolfinx/dev-env:current}" >> $GITHUB_ENV

- name: Checkout basix
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.end-user
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ ARG PYVISTA_VERSION=0.42.2
# DOLFINx
ARG PYTHON_VERSION=3.10
# Base image for end-user images
ARG BASEIMAGE=docker.io/dolfinx/dev-env:current
ARG BASEIMAGE=ghcr.io/fenics/dolfinx/dev-env:current

FROM ${BASEIMAGE} as dolfinx-onbuild
LABEL description="DOLFINx in 32-bit real and complex modes (onbuild)"
Expand Down