Skip to content

Commit

Permalink
fix dockerfile inheritance
Browse files Browse the repository at this point in the history
  • Loading branch information
jandrej committed Nov 21, 2023
1 parent fa48c0f commit b350a3f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cpu/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mfem/containers/base
FROM ghcr.io/mfem/containers/base:latest

ARG num_jobs
ARG hypre_version
Expand Down
2 changes: 1 addition & 1 deletion cuda/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mfem/containers/base
FROM ghcr.io/mfem/containers/base:latest

ARG num_jobs
ARG cuda_arch_sm
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ services:
context: base
args:
num_jobs: 2
image: mfem-base
image: ghcr.io/mfem/containers/base:latest

cpu:
build:
context: cpu
args:
num_jobs: 2
hypre_version: 2.27.0
image: mfem-cpu
image: ghcr.io/mfem/containers/cpu:latest

cuda:
build:
Expand All @@ -23,4 +23,4 @@ services:
num_jobs: 2
cuda_arch_sm: 70
hypre_version: 2.27.0
image: mfem-cuda
image: ghcr.io/mfem/containers/cuda:latest

0 comments on commit b350a3f

Please sign in to comment.