actions-yarn/Dockerfile
2020-06-05 09:33:11 +02:00

7 lines
154 B
Docker

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