mirror of
https://github.com/napnap75/multiarch-docker-images.git
synced 2025-12-15 19:24:19 +01:00
10 lines
179 B
Docker
10 lines
179 B
Docker
FROM alpine:3.21
|
|
|
|
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"]
|