https://github.com/jaantollander/julia-apptainer
Example of installing Julia package inside an Apptainer container and running it from the container.
https://github.com/jaantollander/julia-apptainer
apptainer julia singularity
Last synced: 8 months ago
JSON representation
Example of installing Julia package inside an Apptainer container and running it from the container.
- Host: GitHub
- URL: https://github.com/jaantollander/julia-apptainer
- Owner: jaantollander
- License: mit
- Created: 2023-03-02T07:36:23.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-11-24T13:22:30.000Z (almost 2 years ago)
- Last Synced: 2024-12-29T02:52:04.137Z (9 months ago)
- Topics: apptainer, julia, singularity
- Language: Julia
- Homepage:
- Size: 2.93 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Julia Apptainer Example
Example of installing Julia package inside an Apptainer container and running it from the container.## Usage
Build the base Julia container image.```sh
./app base
```Build the container image for the Julia package using the base image.
```sh
./app build
```Run the Julia package via command line from the container image.
```sh
./app run --help
./app run --input examples/1 examples/2
```Setting `DEPOT_PATH`
Install dependencies to the default location inside the container.
It will be read-only at run time.