mirror of
https://github.com/linuxkit/linuxkit.git
synced 2025-12-25 19:26:13 +00:00
Still leaves some intermediate repos in `base/` See #1266 Signed-off-by: Justin Cormack <justin.cormack@docker.com>
15 lines
226 B
Docker
15 lines
226 B
Docker
FROM alpine:edge
|
|
|
|
RUN \
|
|
apk update && apk upgrade && \
|
|
apk add --no-cache \
|
|
openssh-server \
|
|
tini \
|
|
&& true
|
|
|
|
COPY . .
|
|
|
|
RUN mkdir -p /etc/ssh /root/.ssh && chmod 0700 /root/.ssh
|
|
|
|
CMD ["/sbin/tini", "/usr/bin/ssh.sh"]
|