blob: 0260dda41888acd1002665210566d97f9ed8efac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
FROM alpine:3.19
# install packages
RUN apk add --no-cache tini wget
RUN rm -fr /var/cache/apk/*
# 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"]
|