From 5c561a10c36618405005c7f906683d9a65183418 Mon Sep 17 00:00:00 2001 From: anakinxc Date: Mon, 11 Dec 2023 10:04:56 +0800 Subject: [PATCH] Default to login shell --- dockerfiles/ubuntu-base-ci.DockerFile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dockerfiles/ubuntu-base-ci.DockerFile b/dockerfiles/ubuntu-base-ci.DockerFile index bc5ff3f..827457e 100644 --- a/dockerfiles/ubuntu-base-ci.DockerFile +++ b/dockerfiles/ubuntu-base-ci.DockerFile @@ -46,3 +46,5 @@ RUN if [ "$TARGETPLATFORM" = "linux/arm64" ] ; then BAZEL_ARCH=arm64 ; else BAZE # run as root for now WORKDIR /home/admin/ + +ENTRYPOINT [ "/bin/bash", "--login", "c" ]