feature/ssh-server #1

Merged
marcio.fernandes merged 21 commits from feature/ssh-server into main 2025-09-07 13:50:19 +00:00
4 changed files with 3 additions and 5 deletions
Showing only changes of commit ca9b2c204c - Show all commits

2
docker/ssh-server/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
build.env.local
.env.local

View File

@@ -19,9 +19,7 @@ RUN apt-get update && \
python3 \ python3 \
python3-pip \ python3-pip \
openssh-server \ openssh-server \
openssh-client \
curl && \ curl && \
yq && \
mkdir /var/run/sshd && \ mkdir /var/run/sshd && \
apt-get clean apt-get clean

View File

@@ -19,8 +19,6 @@ RUN apt-get update && \
python3-pip \ python3-pip \
openssh-server \ openssh-server \
curl && \ curl && \
openssh-client \
yq && \
mkdir /var/run/sshd && \ mkdir /var/run/sshd && \
apt-get clean apt-get clean

View File

@@ -45,7 +45,7 @@ if [ -n "${BUILD_ENV+x}" ]; then
fi fi
POSSIBLE_BUILD_ARGS_FILES="$POSSIBLE_BUILD_ARGS_FILES \ POSSIBLE_BUILD_ARGS_FILES="$POSSIBLE_BUILD_ARGS_FILES \
.build.local" build.env.local"
# load variables into this context # load variables into this context