sbt-native-packager icon indicating copy to clipboard operation
sbt-native-packager copied to clipboard

sbt Native Packager

Results 158 sbt-native-packager issues
Sort by recently updated
recently updated
newest added

I was looking at the documentation here: https://www.scala-sbt.org/sbt-native-packager/formats/docker.html#publishing-settings. The documentation provides this description about `dockerAliases`: > The list of aliases to be used for tagging the resulting image of the...

documentation

# Problem `dockerAlias` and `dockerAliases` are defined as `SettingKeys`s. When building docker images I would like to dynamically generate tags based on the Git status. For example * if the...

feature request
docker

## Expected behaviour `sbt docker:publishLocal` should work with a source code which has some files under `src/docker` path ## Actual behaviour `sbt docker:publishLocal` fails with the following error: ``` [info]...

docker

## Expected behaviour ``` dockerChmodType in Docker := DockerChmodType.UserGroupWriteExecute ``` does not generate the correct permissions or I did something wrong :/ Here are my sbt docker settings (snippet): ```scala...

bug
docker

I am trying to package a scala server app into a Docker ## Expected behaviour I am suppose to get my ```application``` and a directory with some resources in the...

docker

I have a script in `src/docker/opt/docker/bin/launch.sh`. The generated `Dockerfile`: ``` RUN ["chmod", "-R", "u=rX,g=rX", "/opt/docker"] RUN ["chmod", "u+x,g+x", "/opt/docker/bin/server"] RUN ["chmod", "u+x,g+x", "opt/docker/bin/launch.sh"] ``` See the missing `/` in front...

bug
docker

`DockerPermissionStrategy.MultiStage` is made available from Docker 17.05 onwards. However, it generates a `COPY --chown`, which is only available from 17.09 onwards. As a result we encounter failures running `docker build`...

bug
docker

[https://sbt-native-packager.readthedocs.io/en/latest/formats/graalvm-native-image.html#native-image-quick-installation](https://sbt-native-packager.readthedocs.io/en/latest/formats/graalvm-native-image.html#native-image-quick-installation) contains a broken link to [https://raw.githubusercontent.com/sbt/sbt-native-packager/master/.travis/download-graalvm](https://raw.githubusercontent.com/sbt/sbt-native-packager/master/.travis/download-graalvm)

documentation
graalvm

Here's my motivation. I have a custom plugin that uses `WindowsPlugin` with custom `wixFiles`. I want that plugin to be able to find an icon at a predetermined location (so...

windows

Using `1.7.0`: 1. I created `src/graal/reflect.json` 1. I specify `"-H:ReflectionConfigurationFiles=stage/resources/reflect.json"` in my `graalVMNativeImageOptions` 1. I do not have `graalVMNativeImageGraalVersion` set 1. I run `graalvm-native-image:packageBin` but the resources do not get...

bug
graalvm