2021-06-04 12:49:49 +02:00
|
|
|
FROM node:buster
|
2021-07-26 13:10:39 +02:00
|
|
|
RUN yarn global remove gancio
|
2021-07-15 18:30:29 +02:00
|
|
|
RUN yarn global add --latest --silent https://gancio.org/latest.tgz 2> /dev/null
|
2021-07-01 10:56:12 +02:00
|
|
|
|
|
|
|
|
ADD entrypoint.sh /
|
|
|
|
|
RUN chmod 755 /entrypoint.sh
|
|
|
|
|
ENTRYPOINT [ "/bin/sh", "/entrypoint.sh" ]
|