mirror of
https://github.com/repo-runner/debian-docker.git
synced 2024-11-12 15:42:43 +00:00
9 lines
184 B
Docker
9 lines
184 B
Docker
FROM debian:stretch
|
|
|
|
LABEL maintainer Knut Ahlers <knut@ahlers.me>
|
|
|
|
COPY build.sh /usr/local/bin/
|
|
RUN set -ex \
|
|
&& /usr/local/bin/build.sh
|
|
|
|
ENTRYPOINT ["/usr/local/bin/inner-runner"]
|