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