repo-cloner/creator/Dockerfile

10 lines
160 B
Docker
Raw Normal View History

2018-02-08 15:22:17 +01:00
# Alpine base image
FROM alpine:edge
2018-02-09 11:49:16 +01:00
RUN apk add --no-cache bash docker openssh-keygen vim
2018-02-08 15:22:17 +01:00
2018-02-09 11:49:16 +01:00
ADD entrypoint-command /bin/entrypoint
2018-02-08 15:22:17 +01:00
2018-02-09 11:49:16 +01:00
CMD [ "/bin/entrypoint" ]
2018-02-08 15:22:17 +01:00