blob: 1bdadcfa890ec380310019268d19532b126a7ab9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
ARG ALPINE_VERSION="3.21"
FROM alpine:${ALPINE_VERSION}
# 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"]
|