mirror of
https://github.com/drone-plugins/drone-npm.git
synced 2026-06-04 10:14:57 +08:00
12 lines
339 B
Docker
12 lines
339 B
Docker
FROM plugins/base:linux-arm64
|
|
|
|
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 npm
|
|
|
|
ADD release/linux/arm64/drone-npm /bin/
|
|
ENTRYPOINT [ "/bin/drone-npm" ]
|