fixed nextcloud-upload entrypoint

This commit is contained in:
Ell 2023-07-17 22:30:19 +02:00
parent b358771165
commit e46a6b5130

View file

@ -1,5 +1,5 @@
FROM --platform=$BUILDPLATFORM node:latest
ADD nextcloud-upload /bin
WORKDIR /bin
RUN npm install /bin
ENTRYPOINT ["node", "run.js"]
RUN npm install
ENTRYPOINT ["node", "/bin/run.js"]