mirror of
https://framagit.org/les/gancio.git
synced 2025-02-01 00:52:01 +01:00
7 lines
262 B
Docker
7 lines
262 B
Docker
FROM node:buster
|
|
RUN yarn global remove gancio || true
|
|
RUN yarn cache clean
|
|
RUN yarn global add --latest --production --silent https://gancio.org/latest.tgz 2> /dev/null
|
|
ADD entrypoint.sh /
|
|
RUN chmod 755 /entrypoint.sh
|
|
ENTRYPOINT [ "/bin/sh", "/entrypoint.sh" ]
|