mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
14 lines
323 B
Docker
14 lines
323 B
Docker
FROM docker:17.11-dind
|
|
|
|
RUN apk add --no-cache ca-certificates
|
|
|
|
# cleanup warning: https://github.com/docker-library/docker/issues/55
|
|
RUN addgroup -g 2999 docker
|
|
|
|
COPY preentry.sh /usr/local/bin/
|
|
|
|
ENTRYPOINT ["preentry.sh"]
|
|
|
|
# USAGE: Add a CMD to your own Dockerfile to use this (NOT an ENTRYPOINT), eg:
|
|
# CMD ["./runner"]
|