Update Dockerfile (#12997)

This commit is contained in:
Shlee 2020-01-29 03:33:09 +08:00 committad av Eugen Rochko
förälder 0c611e3115
incheckning 71baacb49a
1 ändrade filer med 3 tillägg och 1 borttagningar

Visa fil

@ -58,7 +58,9 @@ RUN npm install -g yarn && \
COPY Gemfile* package.json yarn.lock /opt/mastodon/
RUN cd /opt/mastodon && \
bundle install -j$(nproc) --deployment --without development test && \
bundle config set deployment 'true' && \
bundle config set without 'development test' && \
bundle install -j$(nproc) && \
yarn install --pure-lockfile
FROM ubuntu:18.04