missing &

This commit is contained in:
asonix 2020-01-28 15:59:21 -06:00
parent 9e8d82e5e3
commit 4fdf5fc0ae

View file

@ -6,8 +6,8 @@ SHELL ["bash", "-c"]
COPY Gemfile* package.json yarn.lock /opt/mastodon/
RUN cd /opt/mastodon && \
bundle config set deployment 'true' \
bundle install -j$(nproc) --without development test && \
bundle config set deployment 'true' && \
bundle install --without development test --with production && \
yarn install --pure-lockfile
FROM amd64/ubuntu:18.04