We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2ce4a0 commit 1951ad6Copy full SHA for 1951ad6
Dockerfile
@@ -1,4 +1,4 @@
1
-FROM python:3.9.7-slim AS build
+FROM python:3.10.15-slim AS build
2
3
RUN apt-get -y update && apt-get install -y apt-utils && \
4
apt-get install -y -qq -o=Dpkg::Use-Pty=0 build-essential gfortran zlib1g-dev \
@@ -38,12 +38,12 @@ RUN $JAVA_HOME/bin/jlink \
38
--output /javaruntime
39
40
# Define base image and copy in jlink created minimal Java 17 environment
41
-FROM python:3.9.7-slim
+FROM python:3.10.15-slim
42
ENV JAVA_HOME=/opt/java/openjdk
43
ENV PATH="${JAVA_HOME}/bin:${PATH}"
44
COPY --from=jre-build /javaruntime $JAVA_HOME
45
46
-# now we have Java 17 and Python 3.9
+# now we have Java 17 and Python 3.10.15 installed
47
ENV DEBIAN_FRONTEND=noninteractive
48
ENV LANG=en_US.UTF-8
49
0 commit comments