From 07fd636cda03006b452a359dd97b0a8b840b0601 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Mon, 17 Jul 2023 19:24:09 +0200 Subject: [PATCH] this works locally, what is happening --- nextcloud-upload/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/nextcloud-upload/Dockerfile b/nextcloud-upload/Dockerfile index fea5932..5b7b2f0 100644 --- a/nextcloud-upload/Dockerfile +++ b/nextcloud-upload/Dockerfile @@ -1,5 +1,5 @@ FROM --platform=$BUILDPLATFORM node:latest WORKDIR /bin -ADD . /bin -RUN npm install -ENTRYPOINT ["node", "run.js"] +ADD ./ /bin +RUN npm install /bin +ENTRYPOINT ["node", "/bin/run.js"]