added copying of JDK 17 into image
pipeline / Test (push) Successful in 33s
Docker / Test (push) Successful in 30s
Docker / Publish (push) Successful in 27s

This commit is contained in:
brb
2023-07-24 16:24:01 +02:00
parent 89d29492e6
commit 448f757bd1
+5
View File
@@ -5,6 +5,11 @@
# pull official base image
FROM python:3.10-bookworm as BUILDER
# install JDK 17
ENV JAVA_HOME=/opt/java/openjdk
COPY --from=eclipse-temurin:17-jre $JAVA_HOME $JAVA_HOME
ENV PATH="${JAVA_HOME}/bin:${PATH}"
# install Ookla's speedtest
RUN apt update && \
apt install -y speedtest-cli