Skip to content

Commit dc662e0

Browse files
committed
Fix chmod by using octal notation
1 parent f353cb9 commit dc662e0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/containers/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ RUN echo 'eval "$(pyenv init -)"' >>${HOME}/.bashrc && \
9696

9797
# Install Python
9898
ARG PYTHON_VERSIONS="3.12 3.11 3.10 3.9 3.8 3.7 3.13 pypy3.10-7.3.17"
99-
COPY --chown=1000:1000 --chmod=+x ./install-python.sh /tmp/install-python.sh
99+
COPY --chown=1000:1000 --chmod=755 ./install-python.sh /tmp/install-python.sh
100100
RUN /tmp/install-python.sh && \
101101
rm /tmp/install-python.sh
102102

0 commit comments

Comments
 (0)