| ADD alpine-minirootfs-3.22.1-x86_64.tar.gz / # buildkit | 
						
					
						
							| CMD ["/bin/sh"] | 
						
					
						
							| RUN /bin/sh -c apk update && apk upgrade && apk add --no-cache     git     docker     bash     fish     zsh     wget     curl     htop     vim     nano     tmux     openssh-server     iproute2 # buildkit | 
						
					
						
							| RUN /bin/sh -c wget -O /usr/local/bin/ttyd https://github.com/tsl0922/ttyd/releases/download/1.7.7/ttyd.x86_64 && chmod +x /usr/local/bin/ttyd # buildkit | 
						
					
						
							| RUN /bin/sh -c mkdir -p /var/run/sshd &&     sed -i 's/#PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config &&     sed -i 's/#PasswordAuthentication yes/PasswordAuthentication yes/' /etc/ssh/sshd_config # buildkit | 
						
					
						
							| COPY entrypoint.sh /app/ # buildkit | 
						
					
						
							| COPY service.ssh.sh /app/ # buildkit | 
						
					
						
							| COPY service.ttyd.sh /app/ # buildkit | 
						
					
						
							| RUN /bin/sh -c chmod +x /app/entrypoint.sh /app/service.ssh.sh /app/service.ttyd.sh # buildkit | 
						
					
						
							| RUN /bin/sh -c mkdir -p /srv/stack # buildkit | 
						
					
						
							| WORKDIR /srv/stack | 
						
					
						
							| EXPOSE &{[{{35 0} {35 0}}] 0xc0015e3480} | 
						
					
						
							| ENTRYPOINT ["/app/entrypoint.sh"] |