-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
0e3975b
commit 73cbebc
Showing
1 changed file
with
11 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,19 @@ | ||
FROM openjdk:8-jre-alpine | ||
VOLUME /tmp | ||
ARG DOCKERIZE_VERSION | ||
ARG ARTIFACT_NAME | ||
ARG EXPOSED_PORT | ||
ENV SPRING_PROFILES_ACTIVE docker | ||
|
||
ADD https://github.com/jwilder/dockerize/releases/download/${DOCKERIZE_VERSION}/dockerize-alpine-linux-amd64-${DOCKERIZE_VERSION}.tar.gz dockerize.tar.gz | ||
# Download dockerize and cache that layer | ||
ARG DOCKERIZE_VERSION | ||
RUN wget -O dockerize.tar.gz https://github.com/jwilder/dockerize/releases/download/${DOCKERIZE_VERSION}/dockerize-alpine-linux-amd64-${DOCKERIZE_VERSION}.tar.gz | ||
RUN tar xzf dockerize.tar.gz | ||
RUN chmod +x dockerize | ||
|
||
# This is the first layer that won't be cached | ||
ARG ARTIFACT_NAME | ||
ADD ${ARTIFACT_NAME}.jar /app.jar | ||
RUN touch /app.jar | ||
|
||
ARG EXPOSED_PORT | ||
EXPOSE ${EXPOSED_PORT} | ||
|
||
ENV SPRING_PROFILES_ACTIVE docker | ||
|
||
ENTRYPOINT ["java", "-XX:+UnlockExperimentalVMOptions", "-XX:+UseCGroupMemoryLimitForHeap", "-Djava.security.egd=file:/dev/./urandom","-jar","/app.jar"] |