Files
zerobyte/app/test/integration/infra/sftp/Dockerfile
2026-06-02 17:25:10 +02:00

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"]