playground/docker-jenkins/Dockerfile

7 lines
117 B
Docker
Raw Permalink Normal View History

FROM debian:latest
COPY build-initial.sh /tmp
RUN /tmp/build-initial.sh && rm -rf /tmp/*
CMD ["/usr/sbin/sshd -D"]