Chris Stewart

Results 98 comments of Chris Stewart

Does this have anything to do with the effect that the docker plugin seems to emit ``` USER 1000:0 ``` when generating a `Dockerfile`? It seems like the `gid` is...

> I was having the same kind of issue, maybe this would help you: [#1449 (comment)](https://github.com/sbt/sbt-native-packager/issues/1449#issuecomment-926299638) In my case I am building on linux and running on linux :thinking: ....

Looking closer, it does seem like my error is fundamentally different: here is the text version rather than the image i linked above ``` docker run -p 9999:9999 -p 19999:19999...

> @Christewart Can you maybe give us the content of your `oracleServer/target/docker/stage/Dockerfile` file, please? ``` FROM alpine:latest as stage0 LABEL snp-multi-stage="intermediate" LABEL snp-multi-stage-id="68d23a07-a1ab-4ea2-8eb4-1ea041c09d56" WORKDIR /opt/docker COPY 2/opt /2/opt COPY 3/opt...

>Do you see these files in oracleServer/target/docker/stage/3: Here is `tree 3` ``` 3 └── opt └── docker └── jre ├── bin │   ├── java │   └── keytool ├── conf │  ...

>Can you copy the content of /opt/docker/bin/bitcoin-s-server maybe, please? I don't understand where to find this in the staged directory, or else maybe it doesn't exist?

```bash #!/bin/sh realpath () { ( TARGET_FILE="$1" cd "$(dirname "$TARGET_FILE")" TARGET_FILE=$(basename "$TARGET_FILE") COUNT=0 while [ -L "$TARGET_FILE" -a $COUNT -lt 100 ] do TARGET_FILE=$(readlink "$TARGET_FILE") cd "$(dirname "$TARGET_FILE")" TARGET_FILE=$(basename "$TARGET_FILE")...

> This part looks weird to me: > > ``` > if [[ "$OS" == "OSX" ]]; then > #mac doesn't allow random binaries to be executable > #remove the...

> > the desktop app working on mac. > Are you not creating a Docker image? What is this a concern in the Docker world? We need to deliver the...

I just removed the extra bash script stuff for now, I get the _exact_ same error after removing it. Here is the new bash script after disabling the bash script...