Remove entrypoint.sh as it is not needed

Signed-off-by: Christian König <ckoenig@posteo.de>
This commit is contained in:
Christian König
2024-06-24 18:17:24 +02:00
parent 20145db333
commit d28c37e1e5
3 changed files with 5 additions and 6 deletions

View File

@@ -2,7 +2,8 @@
set -ex
if [[ "$1" == "enter" ]]; then
enter="-it --entrypoint=sh"
enter="-it"
cmd="sh"
fi
GIT_BRANCH=$(git rev-parse --abbrev-ref HEAD | sed "s/\//-/g")
@@ -20,4 +21,4 @@ docker run --rm \
--env GIT_TAG="${GIT_TAG}" \
--env PY_COLORS=1 \
--env TARGETPLATFORM="${PLATFORM}" \
${enter} image_pipenv
${enter} image_pipenv ${cmd}