Files
fn-serverless/images/dind/chaos/Dockerfile
Travis Reeder 9cc12b4b12 Remove iron...
2017-05-18 18:59:34 +00:00

12 lines
323 B
Docker

FROM docker:1.12-rc-dind
RUN apk update && apk upgrade && apk add --no-cache ca-certificates
COPY entrypoint.sh /usr/local/bin/
COPY chaos.sh /usr/local/bin/
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]
# USAGE: Add a CMD to your own Dockerfile to use this (NOT an ENTRYPOINT, so that this is called)
# CMD ["./runner"]