Skip to content

Commit

Permalink
quarkus base image provided
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamBien committed Mar 21, 2019
1 parent dbc6c08 commit 1070956
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
7 changes: 7 additions & 0 deletions quarkus/Dockerfile
@@ -0,0 +1,7 @@
FROM airhacks/java
LABEL maintainer="Adam Bien, adam-bien.com" description="quarkus.io SkimmedJAR"
ENV DEPLOY_DIR /opt
ENV INSTALL_DIR ${DEPLOY_DIR}/lib
COPY lib ${INSTALL_DIR}
ENTRYPOINT java -jar -Dquarkus.http.host=0.0.0.0 ${DEPLOY_DIR}/quarkus-runner.jar
EXPOSE 8080
12 changes: 12 additions & 0 deletions quarkus/lib/README.md
@@ -0,0 +1,12 @@
# Purpose

This folder contains all the quarkus "immutable" libraries, part of the shared library.
However, the libraries may (will) change on every quarkus release and are therefore
not checked in.

# Setup

Run:
1. mvn io.quarkus:quarkus-maven-plugin:create
2. mvn clean install
3. cp target/lib into this folder

0 comments on commit 1070956

Please sign in to comment.