mirror of
https://github.com/warp-tech/warpgate.git
synced 2025-09-07 07:04:22 +08:00
4 lines
98 B
Docker
4 lines
98 B
Docker
FROM alpine:3.14
|
|
RUN apk add openssh curl
|
|
RUN passwd -u root
|
|
ENTRYPOINT ["/usr/sbin/sshd", "-De"]
|