mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
* fn: rename from fnctl * fn: predicting the release version for installer * fn: predicting the release version for installer
13 lines
232 B
Docker
13 lines
232 B
Docker
FROM alpine
|
|
|
|
|
|
RUN apk --update upgrade && \
|
|
apk add curl ca-certificates && \
|
|
update-ca-certificates && \
|
|
rm -rf /var/cache/apk/*
|
|
|
|
COPY entrypoint.sh /
|
|
COPY fn /
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"] |