this works locally, what is happening

This commit is contained in:
Ell 2023-07-17 19:24:09 +02:00
parent 7b97b3e734
commit 07fd636cda

View file

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