File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 2525 "version" : " latest"
2626 },
2727 "ghcr.io/devcontainers/features/node:1" : {
28- "version" : " 20.16 .0"
28+ "version" : " 22.11 .0"
2929 }
3030 },
3131
Original file line number Diff line number Diff line change @@ -20,16 +20,17 @@ ARG RAILS_ROOT=/usr/src/app/
2020
2121RUN apk update && apk upgrade && apk add --update --no-cache \
2222 bash \
23+ curl \
2324 imagemagick \
24- nodejs \
2525 postgresql-client \
2626 tzdata \
27- vim \
28- yarn && rm -rf /var/cache/apk/*
27+ vim && rm -rf /var/cache/apk/*
28+ RUN apk add --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/main/ nodejs=22.11.0-r0 npm
2929
3030WORKDIR $RAILS_ROOT
3131
3232COPY . .
33+ RUN npm install --global yarn
3334RUN yarn install
3435RUN yarn build && yarn build:css
3536
You can’t perform that action at this time.
0 commit comments