mirror of
https://github.com/repo-runner/debian-node.git
synced 2024-11-08 22:00:08 +00:00
10 lines
182 B
Text
10 lines
182 B
Text
|
FROM node: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"]
|