Skip to content
Snippets Groups Projects
Commit 167bd29d authored by Martin Lowe's avatar Martin Lowe :flag_ca:
Browse files

remove native dockerfile as it's not in use currently

parent b3b09d76
No related branches found
No related tags found
1 merge request!213update: switch ECA GL check to check all commits instead of just project
####
# This Dockerfile is used in order to build a container that runs the Quarkus application in native (no JVM) mode
#
# Before building the docker image run:
#
# mvn package -Pnative -Dquarkus.native.container-build=true
#
# Then, build the image with:
#
# docker build -f src/main/docker/Dockerfile.native -t quarkus/gitlab.cla .
#
# Then run the container using:
#
# docker run -i --rm -p 8080:8080 quarkus/gitlab.cla
#
###
FROM registry.access.redhat.com/ubi8/ubi-minimal
WORKDIR /work/
COPY target/*-runner /work/application
RUN chmod 775 /work
EXPOSE 8080
CMD ["./application", "-Dquarkus.http.host=0.0.0.0"]
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment