mirror of
https://github.com/drone-plugins/drone-npm.git
synced 2026-06-04 18:23:52 +08:00
14 lines
444 B
Docker
14 lines
444 B
Docker
FROM plugins/base:arm
|
|
MAINTAINER Drone.IO Community <drone-dev@googlegroups.com>
|
|
|
|
RUN apk add -U --no-cache git nodejs
|
|
|
|
LABEL org.label-schema.version=latest
|
|
LABEL org.label-schema.vcs-url="https://github.com/drone-plugins/drone-npm.git"
|
|
LABEL org.label-schema.name="Drone NPM"
|
|
LABEL org.label-schema.vendor="Drone.IO Community"
|
|
LABEL org.label-schema.schema-version="1.0"
|
|
|
|
ADD release/linux/arm/drone-npm /bin/
|
|
ENTRYPOINT [ "/bin/drone-npm" ]
|