mirror of
https://github.com/Ellpeck/WoodpeckerPlugins.git
synced 2024-11-21 18:13:30 +01:00
fixed nextcloud upload dockerfile
This commit is contained in:
parent
54c83fcee0
commit
7b97b3e734
2 changed files with 5 additions and 4 deletions
|
@ -4,7 +4,7 @@
|
||||||
settings:
|
settings:
|
||||||
repo: ellpeck/woodpecker-nextcloud-upload
|
repo: ellpeck/woodpecker-nextcloud-upload
|
||||||
dockerfile: nextcloud-upload/Dockerfile
|
dockerfile: nextcloud-upload/Dockerfile
|
||||||
platforms: linux/amd64, linux/arm/v7, linux/arm64/v8
|
platforms: linux/amd64, linux/arm/v7, linux/arm64/v8, linux/ppc64le, linux/riscv64
|
||||||
tags: latest, ${CI_COMMIT_SHA}
|
tags: latest, ${CI_COMMIT_SHA}
|
||||||
username: ellpeck
|
username: ellpeck
|
||||||
password:
|
password:
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
FROM node:latest
|
FROM --platform=$BUILDPLATFORM node:latest
|
||||||
ADD . /
|
WORKDIR /bin
|
||||||
|
ADD . /bin
|
||||||
RUN npm install
|
RUN npm install
|
||||||
ENTRYPOINT ["node", "/run.js"]
|
ENTRYPOINT ["node", "run.js"]
|
||||||
|
|
Loading…
Reference in a new issue