From 461b1fa053bcc86d06156574ab59fa7000dbf69e Mon Sep 17 00:00:00 2001 From: Kevin Hoerr Date: Sat, 6 Aug 2022 01:44:00 +0000 Subject: Quarkus (#2) Reviewed-on: https://git.submelon.dev/kjhoerr/pantry/pulls/2 --- src/main/docker/Dockerfile.native-micro | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 src/main/docker/Dockerfile.native-micro (limited to 'src/main/docker/Dockerfile.native-micro') diff --git a/src/main/docker/Dockerfile.native-micro b/src/main/docker/Dockerfile.native-micro new file mode 100644 index 0000000..ededc88 --- /dev/null +++ b/src/main/docker/Dockerfile.native-micro @@ -0,0 +1,30 @@ +#### +# This Dockerfile is used in order to build a container that runs the Quarkus application in native (no JVM) mode. +# It uses a micro base image, tuned for Quarkus native executables. +# It reduces the size of the resulting container image. +# Check https://quarkus.io/guides/quarkus-runtime-base-image for further information about this image. +# +# Before building the container image run: +# +# ./mvnw package -Pnative +# +# Then, build the image with: +# +# docker build -f src/main/docker/Dockerfile.native-micro -t quarkus/pantry . +# +# Then run the container using: +# +# docker run -i --rm -p 8080:8080 quarkus/pantry +# +### +FROM quay.io/quarkus/quarkus-micro-image:1.0 +WORKDIR /work/ +RUN chown 1001 /work \ + && chmod "g+rwX" /work \ + && chown 1001:root /work +COPY --chown=1001:root target/*-runner /work/application + +EXPOSE 8080 +USER 1001 + +CMD ["./application", "-Dquarkus.http.host=0.0.0.0"] -- cgit