diff options
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile index fe1cea89a..77f39d9ec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -66,6 +66,9 @@ RUN apk -U upgrade \ && rm -rf /tmp/* /var/cache/apk/* COPY Gemfile Gemfile.lock package.json yarn.lock .yarnclean /mastodon/ +COPY stack-fix.c /lib +RUN gcc -shared -fPIC /lib/stack-fix.c -o /lib/stack-fix.so +RUN rm /lib/stack-fix.c RUN bundle config build.nokogiri --with-iconv-lib=/usr/local/lib --with-iconv-include=/usr/local/include \ && bundle install -j$(getconf _NPROCESSORS_ONLN) --deployment --without test development \ @@ -84,4 +87,5 @@ VOLUME /mastodon/public/system /mastodon/public/assets /mastodon/public/packs USER mastodon +ENV LD_PRELOAD=/lib/stack-fix.so ENTRYPOINT ["/sbin/tini", "--"] |