mirror of
https://github.com/anchore/syft.git
synced 2025-11-18 00:43:20 +01:00
19 lines
668 B
Bash
Executable File
19 lines
668 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -uxe
|
|
|
|
# note: this can be easily done in a 1-liner, however circle CI does NOT allow volume mounts from the host in docker executors (since they are on remote hosts, where the host files are inaccessible)
|
|
|
|
PKGSDIR=$1
|
|
CTRID=$(docker create -u "$(id -u):$(id -g)" -e MAVEN_CONFIG=/tmp/.m2 -v /example-java-app -w /example-java-app maven:openjdk mvn -Duser.home=/tmp -DskipTests package)
|
|
|
|
function cleanup() {
|
|
docker rm "${CTRID}"
|
|
}
|
|
|
|
trap cleanup EXIT
|
|
set +e
|
|
|
|
docker cp "$(pwd)/example-java-app" "${CTRID}:/"
|
|
docker start -a "${CTRID}"
|
|
mkdir -p "$PKGSDIR"
|
|
docker cp "${CTRID}:/example-java-app/target/example-java-app-maven-0.1.0.jar" "$PKGSDIR" |