fix: Install node 20.x in non-production docker (#8441) (#8442)

This commit is contained in:
Anthony Meirlaen
2023-12-01 01:22:34 +01:00
committed by GitHub
parent bc6e3e598f
commit 0974b1e705

View File

@@ -104,7 +104,7 @@ RUN apk update && apk add --no-cache \
&& gem install bundler
RUN if [ "$RAILS_ENV" != "production" ]; then \
apk add --no-cache nodejs yarn; \
apk add --no-cache nodejs-current yarn; \
fi
COPY --from=pre-builder /gems/ /gems/