This repository has been archived on 2024-09-12. You can view files and clone it, but cannot push or open issues or pull requests.
spiegelei-server-old/Dockerfile

11 lines
251 B
Docker
Raw Permalink Normal View History

2024-05-07 13:02:33 +02:00
FROM alpine:latest
RUN apk --update add openssh && rm -rf /var/cache/apk/*
COPY motd /etc/motd
COPY sshd_config /etc/ssh/sshd_config
COPY authorized_keys /etc/ssh/authorized_keys
COPY entrypoint.sh /entrypoint.sh
EXPOSE 22
ENTRYPOINT /entrypoint.sh