Bug fix for segfault

This commit is contained in:
eXtremeSHOK
2018-07-13 04:19:01 +02:00
committed by GitHub
parent a13f26cf60
commit df7453e541

View File

@@ -3,6 +3,10 @@ FROM alpine:3.7
RUN apk --update --no-cache add \
nodejs \
nodejs-npm
# Bug fix for segfault ( Convert PT_GNU_STACK program header into PT_PAX_FLAGS )
RUN apk --update --no-cache add paxctl \
&& paxctl -cm $(which node)
RUN mkdir -p /usr/src/{app,bin,lib}
WORKDIR /usr/src/app