mirror of
https://github.com/repo-runner/python3-alpine.git
synced 2024-11-08 13:20:02 +00:00
20 lines
344 B
Text
20 lines
344 B
Text
|
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 ["--"]
|