Skip to content

Commit 37b9862

Browse files
committed
fix: wget disappeared in eclipse-temurin 25 image
Closes: #26
1 parent f76bc59 commit 37b9862

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ FROM eclipse-temurin:$JAVA_IMAGE_TAG
33

44
ARG APP_VERSION=2.8.0
55
RUN set -ex; \
6+
apt-get update && apt-get install -y wget; \
67
wget -q https://github.com/ghusta/FakeSMTP/releases/download/v${APP_VERSION}/fakeSMTP-${APP_VERSION}.jar -O fakeSMTP.jar; \
8+
rm -rf /var/lib/apt/lists/*; \
79
mv fakeSMTP.jar /opt;
810

911
EXPOSE 25

0 commit comments

Comments
 (0)