mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
12 lines
323 B
Docker
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"]
|