From db29f29beae8aa52c1e2f71d66f5efb28565fcc9 Mon Sep 17 00:00:00 2001 From: Stoney Jackson Date: Fri, 3 Nov 2023 13:14:58 +0000 Subject: [PATCH] fix --- .github/workflows/test-with-max-python-max-java.yaml | 2 +- shell/Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test-with-max-python-max-java.yaml b/.github/workflows/test-with-max-python-max-java.yaml index 9206be69..f9dd3d4f 100644 --- a/.github/workflows/test-with-max-python-max-java.yaml +++ b/.github/workflows/test-with-max-python-max-java.yaml @@ -6,7 +6,7 @@ on: jobs: build: - name: Test + name: Test with max python and max java runs-on: ubuntu-latest steps: - diff --git a/shell/Dockerfile b/shell/Dockerfile index 18be169d..f935a767 100644 --- a/shell/Dockerfile +++ b/shell/Dockerfile @@ -6,7 +6,7 @@ FROM alpine:3 # Install Python 3 ARG PYTHON3_VERSION="" -RUN apk add --no-cache "python3${PYTHON3_VERSION}" \ +RUN apk add --no-cache python3${PYTHON3_VERSION} \ && python3 -m ensurepip \ && pip3 install --upgrade pip setuptools \ && rm -r /usr/lib/python*/ensurepip \ @@ -16,7 +16,7 @@ RUN apk add --no-cache "python3${PYTHON3_VERSION}" \ # Install JDK ARG OPENJDK_VERSION="" -RUN apk add --no-cache "openjdk17-jdk${OPENJDK_VERSION}" +RUN apk add --no-cache openjdk17-jdk${OPENJDK_VERSION} RUN which java ENV JAVA_HOME="/usr/lib/jvm/default-jvm" ENV PATH="${JAVA_HOME}/bin:${PATH}"