Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
cl-docker-images
ccl
Commits
f82b1cbf
Commit
f82b1cbf
authored
Jun 28, 2020
by
Eric Timmons
Browse files
Add a better entrypoint
parent
4fe274ab
Changes
16
Hide whitespace changes
Inline
Side-by-side
images/debian/buster/amd64/Dockerfile
View file @
f82b1cbf
...
...
@@ -26,4 +26,8 @@ RUN set -x \
WORKDIR
/
COPY
docker-entrypoint /usr/local/bin/docker-entrypoint
ENTRYPOINT
["docker-entrypoint"]
CMD
["ccl"]
images/debian/buster/amd64/docker-entrypoint
0 → 100755
View file @
f82b1cbf
#!/bin/sh
# If the first arg starts with a hyphen, prepend ccl to arguments.
if
[
"
${
1
#-
}
"
!=
"
$1
"
]
;
then
set
--
ccl
"
$@
"
fi
exec
"
$@
"
images/debian/buster/arm32v7/Dockerfile
View file @
f82b1cbf
...
...
@@ -26,4 +26,8 @@ RUN set -x \
WORKDIR
/
COPY
docker-entrypoint /usr/local/bin/docker-entrypoint
ENTRYPOINT
["docker-entrypoint"]
CMD
["ccl"]
images/debian/buster/arm32v7/docker-entrypoint
0 → 100755
View file @
f82b1cbf
#!/bin/sh
# If the first arg starts with a hyphen, prepend ccl to arguments.
if
[
"
${
1
#-
}
"
!=
"
$1
"
]
;
then
set
--
ccl
"
$@
"
fi
exec
"
$@
"
images/debian/stretch/amd64/Dockerfile
View file @
f82b1cbf
...
...
@@ -26,4 +26,8 @@ RUN set -x \
WORKDIR
/
COPY
docker-entrypoint /usr/local/bin/docker-entrypoint
ENTRYPOINT
["docker-entrypoint"]
CMD
["ccl"]
images/debian/stretch/amd64/docker-entrypoint
0 → 100755
View file @
f82b1cbf
#!/bin/sh
# If the first arg starts with a hyphen, prepend ccl to arguments.
if
[
"
${
1
#-
}
"
!=
"
$1
"
]
;
then
set
--
ccl
"
$@
"
fi
exec
"
$@
"
images/debian/stretch/arm32v7/Dockerfile
View file @
f82b1cbf
...
...
@@ -26,4 +26,8 @@ RUN set -x \
WORKDIR
/
COPY
docker-entrypoint /usr/local/bin/docker-entrypoint
ENTRYPOINT
["docker-entrypoint"]
CMD
["ccl"]
images/debian/stretch/arm32v7/docker-entrypoint
0 → 100755
View file @
f82b1cbf
#!/bin/sh
# If the first arg starts with a hyphen, prepend ccl to arguments.
if
[
"
${
1
#-
}
"
!=
"
$1
"
]
;
then
set
--
ccl
"
$@
"
fi
exec
"
$@
"
images/ubuntu/bionic/amd64/Dockerfile
View file @
f82b1cbf
...
...
@@ -26,4 +26,8 @@ RUN set -x \
WORKDIR
/
COPY
docker-entrypoint /usr/local/bin/docker-entrypoint
ENTRYPOINT
["docker-entrypoint"]
CMD
["ccl"]
images/ubuntu/bionic/amd64/docker-entrypoint
0 → 100755
View file @
f82b1cbf
#!/bin/sh
# If the first arg starts with a hyphen, prepend ccl to arguments.
if
[
"
${
1
#-
}
"
!=
"
$1
"
]
;
then
set
--
ccl
"
$@
"
fi
exec
"
$@
"
images/ubuntu/bionic/arm32v7/Dockerfile
View file @
f82b1cbf
...
...
@@ -26,4 +26,8 @@ RUN set -x \
WORKDIR
/
COPY
docker-entrypoint /usr/local/bin/docker-entrypoint
ENTRYPOINT
["docker-entrypoint"]
CMD
["ccl"]
images/ubuntu/bionic/arm32v7/docker-entrypoint
0 → 100755
View file @
f82b1cbf
#!/bin/sh
# If the first arg starts with a hyphen, prepend ccl to arguments.
if
[
"
${
1
#-
}
"
!=
"
$1
"
]
;
then
set
--
ccl
"
$@
"
fi
exec
"
$@
"
images/ubuntu/eoan/amd64/Dockerfile
View file @
f82b1cbf
...
...
@@ -26,4 +26,8 @@ RUN set -x \
WORKDIR
/
COPY
docker-entrypoint /usr/local/bin/docker-entrypoint
ENTRYPOINT
["docker-entrypoint"]
CMD
["ccl"]
images/ubuntu/eoan/amd64/docker-entrypoint
0 → 100755
View file @
f82b1cbf
#!/bin/sh
# If the first arg starts with a hyphen, prepend ccl to arguments.
if
[
"
${
1
#-
}
"
!=
"
$1
"
]
;
then
set
--
ccl
"
$@
"
fi
exec
"
$@
"
images/ubuntu/eoan/arm32v7/Dockerfile
View file @
f82b1cbf
...
...
@@ -26,4 +26,8 @@ RUN set -x \
WORKDIR
/
COPY
docker-entrypoint /usr/local/bin/docker-entrypoint
ENTRYPOINT
["docker-entrypoint"]
CMD
["ccl"]
images/ubuntu/eoan/arm32v7/docker-entrypoint
0 → 100755
View file @
f82b1cbf
#!/bin/sh
# If the first arg starts with a hyphen, prepend ccl to arguments.
if
[
"
${
1
#-
}
"
!=
"
$1
"
]
;
then
set
--
ccl
"
$@
"
fi
exec
"
$@
"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment