Skip to content

Commit

Permalink
Fix, it's yum
Browse files Browse the repository at this point in the history
  • Loading branch information
carlopi committed Oct 1, 2024
1 parent 2f90186 commit bebb2b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/linux_amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,6 @@ ENV PATH="/usr/local/go/bin:${PATH}"
# Install Python3
RUN case "$extra_toolchains" in \
*\;python3\;*) \
apt-get install -y -qq python \
apt-get install -y -qq python3 \
;; \
esac
2 changes: 1 addition & 1 deletion docker/linux_amd64_gcc4/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,6 @@ ENV PATH="/usr/local/go/bin:${PATH}"
# Install Python3
RUN case "$extra_toolchains" in \
*\;python3\;*) \
apt-get install -y -qq python \
yum install -y python3; \
;; \
esac
2 changes: 1 addition & 1 deletion docker/linux_arm64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,6 @@ esac
# Install Python3
RUN case "$extra_toolchains" in \
*\;python3\;*) \
apt-get install -y -qq python \
apt-get install -y -qq python3 \
;; \
esac

0 comments on commit bebb2b6

Please sign in to comment.