clean yarn cache in Dockerfile to force upgrade

This commit is contained in:
les 2021-07-15 18:30:29 +02:00
parent 137eec3098
commit 78df98c646
No known key found for this signature in database
GPG key ID: 352918250B012177

View file

@ -1,5 +1,6 @@
FROM node:buster
RUN yarn global add --silent https://gancio.org/latest.tgz 2> /dev/null
RUN yarn cache clean
RUN yarn global add --latest --silent https://gancio.org/latest.tgz 2> /dev/null
ADD entrypoint.sh /
RUN chmod 755 /entrypoint.sh