Skip to content

Commit

Permalink
Bump the docker-dependencies group across 1 directory with 2 updates
Browse files Browse the repository at this point in the history
Bumps the docker-dependencies group with 2 updates in the / directory: node and ruby.


Updates `node` from 21.7-alpine3.19 to 22.1-alpine3.19

Updates `ruby` from 3.2.3-alpine3.19 to 3.2.4-alpine3.19

---
updated-dependencies:
- dependency-name: node
  dependency-type: direct:production
  dependency-group: docker-dependencies
- dependency-name: ruby
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: docker-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
  • Loading branch information
dependabot[bot] committed May 9, 2024
1 parent f5cea35 commit 5848245
Showing 1 changed file with 3 additions and 3 deletions.
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

0 comments on commit 5848245

Please sign in to comment.