mirror of
https://github.com/repo-runner/python3-alpine.git
synced 2024-11-08 05:10:01 +00:00
19 lines
344 B
Docker
19 lines
344 B
Docker
FROM python:3-alpine
|
|
|
|
LABEL maintainer Knut Ahlers <knut@ahlers.me>
|
|
|
|
COPY build.sh /usr/local/bin/
|
|
|
|
RUN set -ex \
|
|
&& apk --no-cache add \
|
|
bash \
|
|
ca-certificates \
|
|
curl \
|
|
git \
|
|
jq \
|
|
make \
|
|
&& /usr/local/bin/build.sh \
|
|
&& apk --no-cache del --purge jq
|
|
|
|
ENTRYPOINT ["/usr/local/bin/inner-runner"]
|
|
CMD ["--"]
|