To make the process of running skims as a standalone product as easy as possible for users, an image is deployed to docker hub after every deployment.
Local development
Note
The following procedure works only on Linux distributions.
In order to use a local version of the skims image, you can use the following procedure:
- Generate the container including your local changes:
 
            nix run .#skims-container get
         
- At the end of the output logs there should be a link, similar to this:
 
            /nix/store/2gfw1rjc2kgj67f3mom9-container-image.tar.gz
         
- Copy this link and load it to docker:
 
            docker load < /nix/store/2gfw1rjc2kgj67f3mom9-container-image.tar.gz
         
- Mount this image and execute skims on it:
 
            sudo docker run -v /path/to/test/folder:/working-dir sast:latest sast --help
         
Tip
Have an idea to simplify our architecture or noticed docs that could use some love? Don't hesitate to 
open an issue or submit improvements.