actions-yarn/Dockerfile
2020-06-05 09:41:55 +02:00

8 lines
175 B
Docker

FROM node:lts-alpine
RUN apk add --no-cache git python2 build-base
RUN npm i -g --force yarn
COPY "entrypoint.sh" "/entrypoint.sh"
ENTRYPOINT ["/entrypoint.sh"]
CMD ["help"]