You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
722 B
27 lines
722 B
#### |
|
# 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: |
|
# |
|
# mvn package -Pnative -Dquarkus.native.container-build=true |
|
# |
|
# Then, build the image with: |
|
# |
|
# docker build -f src/main/docker/Dockerfile.native -t quarkus/kafka-consumer . |
|
# |
|
# Then run the container using: |
|
# |
|
# docker run -i --rm -p 8080:8080 quarkus/kafka-consumer |
|
# |
|
### |
|
FROM registry.access.redhat.com/ubi8/ubi-minimal:8.1 |
|
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"] |