Browse Source

Merge pull request #39 from extremeshok/patch-1

Bug fix for segfault
pull/46/head
o1lab 6 years ago committed by GitHub
parent
commit
77e9b5f416
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      dockerfile

4
dockerfile

@ -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

Loading…
Cancel
Save