Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
StoneyJackson committed Nov 3, 2023
1 parent cc5c6ec commit db29f29
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-with-max-python-max-java.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:

jobs:
build:
name: Test
name: Test with max python and max java
runs-on: ubuntu-latest
steps:
-
Expand Down
4 changes: 2 additions & 2 deletions shell/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand All @@ -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}"
Expand Down

0 comments on commit db29f29

Please sign in to comment.