Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the docker-dependencies group across 1 directory with 2 updates #1537

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:21.7-alpine3.19 as frontend-builder
FROM node:22.1-alpine3.19 as frontend-builder
WORKDIR /app
COPY tailwind.config.js package.json package-lock.json ./
COPY views/ ./views/
Expand All @@ -7,7 +7,7 @@ RUN npm ci
RUN npm run prod


FROM ruby:3.2.3-alpine3.19 as bundler
FROM ruby:3.2.4-alpine3.19 as bundler
# Install build dependencies
# - build-base, git, curl: To ensure certain gems can be compiled
# - postgresql-dev: Required for postgresql gem
Expand All @@ -19,7 +19,7 @@ RUN bundle config set --local without development:test
RUN bundle install


FROM ruby:3.2.3-alpine3.19
FROM ruby:3.2.4-alpine3.19
# Install runtime dependencies
# - tzdata: The public-domain time zone database
# - curl: Required for healthcheck and some basic operations
Expand Down