Skip to content
Draft
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
6 changes: 6 additions & 0 deletions .github/workflows/docker-portability-custom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ on:
type: string
default: "dev"

ubuntu_codename:
description: "Ubuntu codename"
required: true
type: string
default: "jammy"

boost_ver:
description: "Boost version"
required: true
Expand Down
6 changes: 4 additions & 2 deletions Dockerfile.custom
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# Build the image:
# docker build -f Dockerfile.custom --build-arg BOOST=1.74.0 ... -t chaste/runner:custom .
# docker build -f Dockerfile.custom --build-arg BASE=jammy --build-arg BOOST=1.74.0 ... -t chaste/runner:custom .

# Run the container in interactive mode:
# docker run --init -it -e RUNNER_OFF=1 chaste/runner:custom /bin/bash

# Run the container as a GitHub Actions runner:
# docker run --init -it chaste/runner:custom

FROM ubuntu:jammy
ARG BASE=jammy

FROM ubuntu:${BASE}

ARG BOOST
ARG HDF5
Expand Down