mirror of
https://github.com/napnap75/multiarch-docker-images.git
synced 2025-12-15 11:14:19 +01:00
10 lines
181 B
Docker
10 lines
181 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache openssh
|
|
|
|
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
|
|
|
|
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
|
|
|
|
CMD ["/usr/sbin/sshd", "-D", "-e"]
|