mirror of
https://github.com/Ellpeck/WoodpeckerPlugins.git
synced 2024-11-22 18:38:35 +01:00
5 lines
72 B
Text
5 lines
72 B
Text
|
FROM node:latest
|
||
|
ADD . /
|
||
|
RUN npm install
|
||
|
ENTRYPOINT ["node", "/run.js"]
|