Skip to content

Commit

Permalink
Merge pull request #2968 from alphagov/do-not-install-yarn-latest
Browse files Browse the repository at this point in the history
Do not install yarn latest in docker build
  • Loading branch information
richardTowers authored Oct 23, 2023
2 parents 3939dc9 + aeddad3 commit 07d4dbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ WORKDIR $APP_HOME
COPY Gemfile* .ruby-version ./
RUN bundle install
COPY package.json yarn.lock ./
RUN yarn set version berry && yarn install --immutable
RUN yarn install --immutable
COPY . .
RUN bootsnap precompile --gemfile .
RUN rails assets:precompile && rm -fr log
Expand Down

0 comments on commit 07d4dbc

Please sign in to comment.