From 0b32146f654616d153345061a83d3b64402a23bc Mon Sep 17 00:00:00 2001 From: urgentquest <urgentquest.spsrp@passmail.com> Date: Wed, 5 Mar 2025 03:24:29 -0800 Subject: [PATCH] Correct copy and paste error: jre variant is sufficient for running the app. While I am here: provide qualified image reference to make podman happy --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index f5167fdf58..5eeaf04be4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM eclipse-temurin:17-alpine as builder +FROM docker.io/eclipse-temurin:17-alpine as builder ENV APP_HOME="/i2p" ARG ANT_VERSION="1.10.15" @@ -12,7 +12,7 @@ RUN apk add --no-cache gettext tar bzip2 curl \ && /opt/apache-ant-${ANT_VERSION}/bin/ant preppkg-linux-only \ && rm -rf pkg-temp/osid pkg-temp/lib/wrapper pkg-temp/lib/wrapper.* -FROM eclipse-temurin:17-alpine +FROM docker.io/eclipse-temurin:17-jre-alpine ENV APP_HOME="/i2p" WORKDIR ${APP_HOME} -- GitLab