File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11FROM ruby:3.3.11-alpine
22
3+ # Fixes the Node version issue by copying Node 16 directly from the official image
4+ COPY --from=node:16-alpine /usr/local/bin/node /usr/local/bin/node
5+ COPY --from=node:16-alpine /usr/local/lib/node_modules /usr/local/lib/node_modules
6+ COPY --from=node:16-alpine /usr/local/include/node /usr/local/include/node
7+ RUN ln -s /usr/local/lib/node_modules/npm/bin/npm-merge-driver /usr/local/bin/npm-merge-driver || true
8+
39ARG UID=1001
410
511RUN apk update
612RUN apk add git yarn build-base postgresql-contrib postgresql-dev \
713 bash libcurl curl yaml-dev
814
9- RUN apk add --no-cache --repository https://dl-cdn.alpinelinux.org/alpine/v3.16/main/ nodejs
15+ # RUN apk add --no-cache --repository https://dl-cdn.alpinelinux.org/alpine/v3.16/main/ nodejs
1016RUN apk add clamav-daemon
1117RUN apk add --no-cache gcompat
1218
You can’t perform that action at this time.
0 commit comments