You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by ha...@apache.org on 2022/02/08 18:20:19 UTC

[hop] branch 2.0.0 updated: Fix docker build

This is an automated email from the ASF dual-hosted git repository.

hansva pushed a commit to branch 2.0.0
in repository https://gitbox.apache.org/repos/asf/hop.git


The following commit(s) were added to refs/heads/2.0.0 by this push:
     new e0ec924  Fix docker build
     new 36a63d4  Merge pull request #1345 from hansva/2.0.0
e0ec924 is described below

commit e0ec92463313b863223df97637098cd52e1bebce
Author: Hans Van Akelyen <ha...@gmail.com>
AuthorDate: Tue Feb 8 19:19:49 2022 +0100

    Fix docker build
---
 docker/Dockerfile | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docker/Dockerfile b/docker/Dockerfile
index 8734ac9..22f7ad6 100644
--- a/docker/Dockerfile
+++ b/docker/Dockerfile
@@ -15,7 +15,7 @@
 # specific language governing permissions and limitations
 # under the License.
 
-FROM adoptopenjdk/openjdk11:alpine-slim
+FROM alpine
 LABEL maintainer="Apache Hop Team"
 # path to where the artifacts should be deployed to
 ENV DEPLOYMENT_PATH=/opt/hop
@@ -87,7 +87,7 @@ ENV HOP_SERVER_MAX_OBJECT_TIMEOUT=
 RUN chmod 777 -R /tmp && chmod o+t -R /tmp
 
 # Install some fonts
-RUN apk --no-cache add openjdk8-jre \
+RUN apk --no-cache add openjdk11-jre \
         msttcorefonts-installer \
         fontconfig && \
         update-ms-fonts && \