singularity-cli
singularity-cli copied to clipboard
streamlined singularity python client (spython) for singularity
Bumps [black](https://github.com/psf/black) from 23.3.0 to 24.3.0. Release notes Sourced from black's releases. 24.3.0 Highlights This release is a milestone: it fixes Black's first CVE security vulnerability. If you run Black...
Hello, when one instanciate an instance giving a name that contains a `-` (minus sign). the generated instance have a name slightly changed to name whit `-` (minus) replaced by...
Hello, while testing `singularity-cli` I encountered a problem with `instance.run_command` method. see: ``` from spython.main import Client a = Client.instance('/my/image.sif', name='foo') a.run_command(['ls']) Traceback (most recent call last): File "", line...
Using `spython recipe` to transform a Dockerfile, the following instruction is wrongly translated `COPY --chown=user:group`
Hi! Just decovered that RUN command [function](https://github.com/singularityhub/singularity-cli/blob/2b222339382e92f9b93357b3bc81d6558e4efdcd/spython/main/run.py#L110) has no `stream_type` argument, however EXEC function [has it](https://github.com/singularityhub/singularity-cli/blob/2b222339382e92f9b93357b3bc81d6558e4efdcd/spython/main/execute.py#L119). Could it be added or there are some reasons not to do it? Actually...
## Expected Behavior A Dockerfile converted to a Singularity def should respect the ENV directives. ## Actual Behavior ## Steps to Reproduce I have a Dockerfile that uses an ENV...
## Expected Behavior I'm expecting `spython.main.Client.execute` to behave exactly like `singularity exec` from the command line when running a dummy python script to write to a file. ## Actual Behavior...