diff options
author | Yamagishi Kazutoshi <ykzts@desire.sh> | 2018-07-14 10:56:41 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2018-07-14 03:56:41 +0200 |
commit | e9b322d0a6bebe7d13a53a216482ecc364f18806 (patch) | |
tree | b775933f5fce4df3c563d45c1e675189b6444dd2 /Dockerfile | |
parent | e7091074636c519a5c0bd52c8ef85fa3c5df4656 (diff) |
Upgrade webpack to version v4.x (#6655)
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
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 \ |