2022-02-07 12:29:49 +01:00
|
|
|
FROM node:17.4-slim
|
2021-07-28 11:20:17 +02:00
|
|
|
RUN yarn global remove gancio || true
|
2021-07-31 15:21:58 +02:00
|
|
|
RUN yarn cache clean
|
2022-03-11 20:54:10 +01:00
|
|
|
RUN yarn global add --latest --production --silent https://gancio.org/latest.tgz
|
2021-07-01 10:56:12 +02:00
|
|
|
ADD entrypoint.sh /
|
|
|
|
|
RUN chmod 755 /entrypoint.sh
|
|
|
|
|
ENTRYPOINT [ "/bin/sh", "/entrypoint.sh" ]
|