actions-yarn/Dockerfile
Paul Esson 729ea4ad03
Update Dockerfile
use build-base for g++ and make
2019-11-13 15:02:21 +11:00

7 lines
149 B
Docker

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