actions-yarn/Dockerfile
2022-06-07 23:38:47 -04:00

8 lines
175 B
Docker

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