Skip to content

Commit

Permalink
Freeing more disk space for Docker build
Browse files Browse the repository at this point in the history
  • Loading branch information
JBris committed Aug 16, 2024
1 parent 515ff75 commit fc7a0e5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/docker-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,14 @@ jobs:
run: |
sudo swapoff -a
sudo rm -f /swapfile
sudo apt clean
sudo apt-get remove -y '^dotnet-.*'
sudo apt-get remove -y '^llvm-.*'
sudo apt-get remove -y 'php.*'
sudo apt-get remove -y azure-cli mono-devel
sudo apt-get autoremove -y
sudo apt-get clean
docker rmi $(docker image ls -aq)
rm -rf /usr/share/dotnet/
df -h
- uses: actions/checkout@v3
- name: Set up QEMU
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description = "A simulation model for the digital reconstruction of 3D root syst
authors = ["James Bristow <[email protected]>"]
license = "GPL-3.0-only"
readme = "README.md"
repository = "https://github.com/python-poetry/poetry"
repository = "https://github.com/JBris/deep-root-gen"

[tool.poetry.dependencies]
python = ">=3.10,<3.11"
Expand Down

0 comments on commit fc7a0e5

Please sign in to comment.