Move dockerfiles to docker folder

This commit is contained in:
Thomas Boerger
2019-01-20 20:45:30 +01:00
parent 511199e5d9
commit e83d902cbf
5 changed files with 4 additions and 17 deletions
+11
View File
@@ -0,0 +1,11 @@
FROM plugins/base:linux-amd64
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/amd64/drone-npm /bin/
ENTRYPOINT ["/bin/drone-npm"]
+11
View File
@@ -0,0 +1,11 @@
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" ]
+11
View File
@@ -0,0 +1,11 @@
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 nodejs-npm
ADD release/linux/arm64/drone-npm /bin/
ENTRYPOINT [ "/bin/drone-npm" ]
+12
View File
@@ -0,0 +1,12 @@
# escape=`
FROM plugins/base:windows-amd64
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"
# TODO: install required tools
ADD release\drone-npm.exe c:\drone-npm.exe
ENTRYPOINT [ "c:\\drone-npm.exe" ]