All Downloads are FREE. Search and download functionalities are using the official Maven repository.

.quarkus-test-images.1.3.0.Beta19.source-code.Dockerfile.native Maven / Gradle / Ivy

There is a newer version: 1.6.0.Beta15
Show newest version
####
# This Dockerfile is used in order to build a container that runs the Quarkus application in native (no JVM) mode.
#
# Before building the container image run:
#
# ./mvnw package -Pnative
#
# Then, build the image with:
#
# docker build -f src/main/docker/Dockerfile.native -t quarkus/code-with-quarkus .
#
# Then run the container using:
#
# docker run -i --rm -p 8080:8080 quarkus/code-with-quarkus
#
###
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.6
WORKDIR /work/
RUN chown 1001 /work \
    && chmod "g+rwX" /work \
    && chown 1001:root /work
COPY --chown=1001:root ${ARTIFACT_PARENT}/*-runner /work/application

EXPOSE 8080
USER 1001

CMD ["./application", "-Dquarkus.http.host=0.0.0.0"]




© 2015 - 2025 Weber Informatics LLC | Privacy Policy