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 db29f29 commit 208e902
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-with-max-python-min-java.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
name: Test
name: Test with max python and min java

on:
pull_request:

jobs:
build:
name: Test
name: Test with max python and min java
runs-on: ubuntu-latest
steps:
-
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-with-min-python-max-java.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
name: Test
name: Test with min python and max java

on:
pull_request:

jobs:
build:
name: Test
name: Test with min python and max java
runs-on: ubuntu-latest
steps:
-
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-with-min-python-min-java.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
---
name: Test
name: Test with min python and min java

on:
pull_request:

jobs:
build:
name: Test
name: Test with min python and min java
runs-on: ubuntu-latest
steps:
-
Expand Down
3 changes: 2 additions & 1 deletion shell/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ FROM alpine:3

# Install Python 3
ARG PYTHON3_VERSION=""
RUN apk add --no-cache python3${PYTHON3_VERSION} \
ENV PYTHON3_PACKAGE=python3${PYTHON3_VERSION}
RUN apk add --no-cache python3${PYTHON3_PACKAGE} \
&& python3 -m ensurepip \
&& pip3 install --upgrade pip setuptools \
&& rm -r /usr/lib/python*/ensurepip \
Expand Down

0 comments on commit 208e902

Please sign in to comment.