Global Knowledge base not restricted by implementations for more information check
ssh-server (latest)
Installation
docker pull git.limbosolutions.com/kb/ssh-server:latestsha256:b5a3b4ba0e4f543c87a08a8f323c79afe10f26dcf0442a93b4121a14963706bc
Image Layers
| # debian.sh --arch 'amd64' out/ 'bullseye' '@1768176000' |
| ENV DEBIAN_FRONTEND=noninteractive |
| RUN /bin/sh -c apt-get update && apt-get install -y python3 python3-pip openssh-server curl nano && mkdir /var/run/sshd && apt-get clean # buildkit |
| RUN /bin/sh -c mkdir -p /etc/app/config # buildkit |
| COPY app/ /app # buildkit |
| WORKDIR /app |
| RUN /bin/sh -c pip install --no-cache-dir -r requirements.txt # buildkit |
| ENV CONFIGURATION=Production |
| ENV DEBUG=False |
| CMD ["python3" "-u" "/app/main.py"] |