diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1923cf4..5904cec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,6 +9,20 @@ jobs: runs-on: ubuntu-latest steps: + # Free disk space + # Inspiration + # - https://github.com/easimon/maximize-build-space/blob/master/action.yml + # - https://githubmemory.com/repo/ros-industrial/industrial_ci/issues/648 + # - https://github.community/t/bigger-github-hosted-runners-disk-space/17267/11 + - name: Maximize build space + run: | + sudo apt-get -qq purge build-essential ghc* + sudo apt-get clean + sudo rm -rf /usr/share/dotnet + sudo rm -rf /usr/local/lib/android + sudo rm -rf /opt/ghc + docker system prune -f + - name: Checkout repository uses: actions/checkout@v2.3.4 diff --git a/Dockerfile b/Dockerfile index 3386ecb..67835be 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/biosimulators/biosimulators:0.0.6 +FROM ghcr.io/biosimulators/biosimulators:0.0.8 LABEL \ org.opencontainers.image.title="BioSimulators Jupyter server" \