about summary refs log tree commit diff
path: root/Dockerfile
diff options
context:
space:
mode:
authorYamagishi Kazutoshi <ykzts@desire.sh>2018-07-14 10:56:41 +0900
committerEugen Rochko <eugen@zeonfederated.com>2018-07-14 03:56:41 +0200
commite9b322d0a6bebe7d13a53a216482ecc364f18806 (patch)
treeb775933f5fce4df3c563d45c1e675189b6444dd2 /Dockerfile
parente7091074636c519a5c0bd52c8ef85fa3c5df4656 (diff)
Upgrade webpack to version v4.x (#6655)
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index fe1cea89a..02f334585 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -69,7 +69,7 @@ COPY Gemfile Gemfile.lock package.json yarn.lock .yarnclean /mastodon/
 
 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 \
- && yarn --pure-lockfile \
+ && yarn install --pure-lockfile --ignore-engines \
  && yarn cache clean
 
 RUN addgroup -g ${GID} mastodon && adduser -h /mastodon -s /bin/sh -D -G mastodon -u ${UID} mastodon \