Skip to main content
Package access allows you to add Minimus packages directly in your Dockerfile. Package access is not enabled by default, so you’ll need to request access to have it enabled for your tenant. Alternatively, consider the Image Creator for your use case.
  1. Create a token with package access scope.
  2. Authenticate to the Minimus package registry:
    access command
    echo "https://minimus:mini_z47******@packages.mini.dev/os" >> /etc/apk/repositories
    
    Once authenticated, the session will remain active until the token expires.
  3. Once logged in, add packages as usual with a package manger. For example:
    apk update
    apk add {package name}
    
I