actions-yarn/Dockerfile
Paul Esson 3a3b5a57de
Update Dockerfile
add more requirements for native code compile
2019-11-13 15:00:50 +11:00

7 lines
147 B
Docker

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