[Docker] Bump to alpine 3.19

Let's get this out of the way if stuff needs to be rebuild anyways
This commit is contained in:
Earlopain 2024-01-25 22:06:27 +01:00
parent a7228612a2
commit db5bdabae2
No known key found for this signature in database
GPG Key ID: 48860312319ADF61

View File

@ -1,4 +1,4 @@
FROM ruby:3.2.2-alpine3.18 as ruby-builder
FROM ruby:3.2.2-alpine3.19 as ruby-builder
RUN apk --no-cache add build-base cmake git glib-dev postgresql15-dev
@ -8,13 +8,13 @@ RUN gem i foreman && BUNDLE_IGNORE_CONFIG=true bundle install -j$(nproc) \
&& find /usr/local/bundle/gems/ -name "*.c" -delete \
&& find /usr/local/bundle/gems/ -name "*.o" -delete
FROM node:20-alpine3.18 as node-builder
FROM node:20-alpine3.19 as node-builder
RUN apk --no-cache add git
WORKDIR /app
COPY package.json yarn.lock ./
RUN corepack enable && corepack prepare --activate && yarn install
FROM ruby:3.2.2-alpine3.18
FROM ruby:3.2.2-alpine3.19
RUN apk --no-cache add ffmpeg vips \
postgresql15-client \