Skip to content

Commit

Permalink
Update JDK to 11.0.5 and remove curl
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Gonzalez-Martin committed Dec 16, 2019
1 parent 444fc04 commit 694bfc5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions engine/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
FROM openjdk:8u222-jre-slim
FROM openjdk:11.0.5-jre-slim

ARG APP_VERSION=UNKOWN_VERSION

RUN \
apt-get update -y && \
apt-get install -y curl && \
apt-get remove -y --auto-remove && \
apt-get clean -y && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

Expand Down
3 changes: 1 addition & 2 deletions engine/Dockerfile.mvn
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,10 @@ COPY src/ src/
# Build
RUN mvn clean verify -Dlicense.useMissingFile -B

FROM openjdk:8u222-jre-slim
FROM openjdk:11.0.5-jre-slim

RUN \
apt-get update -y && \
apt-get install -y curl && \
apt-get remove -y --auto-remove && \
apt-get clean -y && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

Expand Down

0 comments on commit 694bfc5

Please sign in to comment.