Skip to content

Commit

Permalink
add apptainer def and update gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael J. Wilson committed Jan 31, 2024
1 parent 5a3fbf2 commit d558b83
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
*~
*.sif
debug/
target/
python/foundation/_*
Expand Down
7 changes: 3 additions & 4 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,13 @@ pip install polars
> https://github.com/rust-lang/rust-clippy
> apptainer / singularity
> https://apptainer.org/docs/user/main/quick_start.html#downloading-images
https://apptainer.org/docs/user/latest/quick_start.html

> pytest
> https://docs.pytest.org/en/7.4.x/how-to/fixtures.html
pip install pytest

> pytest-cov
> pytest-cov, sphinx, line_profiler
pip install pytest-cov

> sphinx
pip install sphinx
pip install line_profiler
16 changes: 16 additions & 0 deletions containers/foundation/foundation.def
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
BootStrap: docker
From: ubuntu:22.04

%post
apt-get -y update
apt-get -y install cowsay lolcat

%environment
export LC_ALL=C
export PATH=/usr/games:$PATH

%runscript
date | cowsay | lolcat

%labels
Example Author

0 comments on commit d558b83

Please sign in to comment.