Skip to content

Commit 3cd667e

Browse files
authored
print the current working dir
1 parent 3c8618f commit 3cd667e

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

Dockerfile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,8 @@ ARG \
5959
PROCPS_VERSION=2:4.0.4-9 \
6060
# renovate: datasource=repology depName=debian_13/sudo
6161
SUDO_VERSION=1.9.16p2-3 \
62+
# renovate: datasource=repology depName=debian_13/tree
63+
TREE_VERSION=2.2.1-1 \
6264
# renovate: datasource=repology depName=debian_13/unzip
6365
UNZIP_VERSION=6.0-29 \
6466
# renovate: datasource=repology depName=debian_13/vim
@@ -87,6 +89,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
8789
man-db="${MAN_DB_VERSION}" \
8890
procps="${PROCPS_VERSION}" \
8991
sudo="${SUDO_VERSION}" \
92+
tree="${TREE_VERSION}" \
9093
unzip="${UNZIP_VERSION}" \
9194
vim="${VIM_VERSION}" \
9295
&& apt-get clean && rm -rf /var/lib/apt/lists/*

docker-entrypoint.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ sudo /usr/local/bin/init-firewall.sh \
99
&& exit 1
1010
)
1111

12+
# sometimes i forget where i started after all the firewall rule stdout
13+
tree
14+
1215
if [ "$#" -eq 0 ]; then
1316
exec /bin/bash
1417
else

0 commit comments

Comments
 (0)