Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 715 Bytes

build.md

File metadata and controls

18 lines (13 loc) · 715 Bytes

Building the Instana Agent Operator from Source

The following command will build the instana/instana-agent-operator Docker image locally:

./mvnw -C -B clean verify
docker build -f src/main/docker/Dockerfile.jvm -t instana/instana-agent-operator .

To build the Docker image with GraalVM native image, use the following command:

Note: The native image does not work yet because of quarkusio/quarkus#3077

./mvnw -C -B clean verify -Pnative -Dnative-image.docker-build=true
docker build -f src/main/docker/Dockerfile.native -t instana/instana-agent-operator .