mirror of
https://github.com/repo-runner/debian-docker.git
synced 2024-11-08 13:50:05 +00:00
9 lines
183 B
Docker
9 lines
183 B
Docker
FROM debian:stable
|
|
|
|
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"]
|