mirror of
https://github.com/repo-runner/debian-node.git
synced 2024-11-08 13:50:09 +00:00
9 lines
185 B
Docker
9 lines
185 B
Docker
FROM node:{{ .ver }}
|
|
|
|
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"]
|