Global Knowledge base not restricted by implementations for more information check
ssh-server (latest)
Installation
docker pull git.limbosolutions.com/kb/ssh-server:latestsha256:7bdd8dc8009266ac1138e7d71dfb9a74aacec631abbc52262333c131d5b65cd9
Image Layers
| # debian.sh --arch 'amd64' out/ 'bullseye' '@1763337600' |
| 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"] |