Skip to content

Commit 9c50d4d

Browse files
authored
Merge pull request #1395 from westurner/patch-3
COPY --chmod=0755 /usr/local/bin/{python3-login,repo2docker-entrypoint} for rootless podman
2 parents e792c9b + 9b287fb commit 9c50d4d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

repo2docker/buildpacks/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -187,8 +187,8 @@
187187
188188
# Add entrypoint
189189
ENV PYTHONUNBUFFERED=1
190-
COPY /python3-login /usr/local/bin/python3-login
191-
COPY /repo2docker-entrypoint /usr/local/bin/repo2docker-entrypoint
190+
COPY --chmod=0755 /python3-login /usr/local/bin/python3-login
191+
COPY --chmod=0755 /repo2docker-entrypoint /usr/local/bin/repo2docker-entrypoint
192192
ENTRYPOINT ["/usr/local/bin/repo2docker-entrypoint"]
193193
194194
# Specify the default command to run

0 commit comments

Comments
 (0)