gancio-upstream/docs/docker/Dockerfile

9 lines
361 B
Text
Raw Normal View History

2022-06-06 16:55:34 +02:00
FROM node:17-slim
2022-04-22 23:04:21 +02:00
RUN bash -c "apt update -y && apt install git -y && apt clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp"
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" ]