mirror of
https://github.com/nicotsx/zerobyte.git
synced 2026-06-18 05:19:17 -04:00
11 lines
251 B
Docker
11 lines
251 B
Docker
FROM alpine:3.21
|
|
|
|
RUN apk add --no-cache openssh-client openssh-server
|
|
|
|
COPY entrypoint.sh /usr/local/bin/zerobyte-sftp-entrypoint
|
|
RUN chmod +x /usr/local/bin/zerobyte-sftp-entrypoint
|
|
|
|
EXPOSE 22
|
|
|
|
ENTRYPOINT ["/usr/local/bin/zerobyte-sftp-entrypoint"]
|