Update Dockerfile

add more requirements for native code compile
This commit is contained in:
Paul Esson 2019-11-13 15:00:50 +11:00 committed by GitHub
parent fb4aea7299
commit 3a3b5a57de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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