blob: e221a9d43195eec7a1cb0cf733477c60ea437887 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
FROM alpine
# install packages
RUN apk add --no-cache tini wget
# copy entrypoint
COPY ./entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh
# execute
ENTRYPOINT ["/sbin/tini", "--"]
CMD ["/usr/local/bin/entrypoint.sh"]
|