mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-10-29 07:13:23 +00:00
16 lines
241 B
Docker
16 lines
241 B
Docker
FROM alpine:edge
|
|
|
|
RUN \
|
|
apk update && apk upgrade && \
|
|
apk add --no-cache \
|
|
openssh-server \
|
|
tini \
|
|
util-linux \
|
|
&& true
|
|
|
|
COPY . .
|
|
|
|
RUN mkdir -p /etc/ssh /root/.ssh && chmod 0700 /root/.ssh
|
|
|
|
CMD ["/sbin/tini", "/usr/bin/ssh.sh"]
|