Skip to content

Commit

Permalink
revert builder's base image to based on OpenJDK8 (non-headless)
Browse files Browse the repository at this point in the history
headless OpenJDK does not refer `http_proxy` environment variable, so build image inside proxy will fail.
resolves plantuml#98
  • Loading branch information
translucens committed Apr 27, 2019
1 parent c43c1a2 commit 6002f3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.jetty
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM maven:3.6-jdk-8-slim AS builderjetty
FROM maven:3.6-jdk-8 AS builderjetty

COPY pom.xml /app/
COPY src /app/src/
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.tomcat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM maven:3.6-jdk-8-slim AS buildertomcat
FROM maven:3.6-jdk-8 AS buildertomcat

COPY pom.xml /app/
COPY src /app/src/
Expand Down

0 comments on commit 6002f3f

Please sign in to comment.