summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorGravatar Matthias Jaros <jarlucmat@mailbox.org>2025-10-27 10:27:47 +0100
committerGravatar Matthias Jaros <jarlucmat@mailbox.org>2025-10-27 10:27:47 +0100
commit2d2eab47ec684f7ac7abff7afee8f3f0dc650c53 (patch)
treefd2d6c9a56eb8695d4be34b434a4dd35bac1abd4 /Dockerfile
parent7f234df40ce16f61f965fc5c1a9c79fdb5da23e2 (diff)
Added banner and renamed run script to git-run
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 4 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index c25e8c0..3b0f377 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -11,9 +11,11 @@ COPY src/sudo-git /etc/sudoers.d/
# copy scrips
COPY src/env /usr/local/bin/
COPY src/init /usr/local/bin/
-COPY src/run /usr/local/bin/
+COPY src/git-run /usr/local/bin/
RUN chmod 755 /usr/local/bin/env
RUN chmod 755 /usr/local/bin/init
-RUN chmod 755 /usr/local/bin/run
+RUN chmod 755 /usr/local/bin/git-run
+
+COPY src/version /usr/local/bin/
ENTRYPOINT ["/usr/local/bin/init"]