fix docker setup

This commit is contained in:
les
2021-07-01 10:56:12 +02:00
parent c42d5d4276
commit 11e026e099
5 changed files with 16 additions and 6 deletions

View File

@@ -1,2 +1,6 @@
FROM node:buster
RUN yarn global add --silent https://gancio.org/latest.tgz 2> /dev/null
ADD entrypoint.sh /
RUN chmod 755 /entrypoint.sh
ENTRYPOINT [ "/bin/sh", "/entrypoint.sh" ]