mirror of
https://github.com/Ellpeck/WoodpeckerPlugins.git
synced 2024-11-22 10:33:29 +01:00
5 lines
124 B
Docker
5 lines
124 B
Docker
FROM --platform=$BUILDPLATFORM node:latest
|
|
WORKDIR /bin
|
|
ADD ./ /bin
|
|
RUN npm install /bin
|
|
ENTRYPOINT ["node", "/bin/run.js"]
|