Skip to content

Commit

Permalink
Upgrade ruby and node base images
Browse files Browse the repository at this point in the history
  • Loading branch information
ajacques committed Jun 27, 2024
1 parent 5a4a21d commit 45beb3d
Show file tree
Hide file tree
Showing 2 changed files with 4 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 ruby:3.3.1-bookworm AS base
FROM ruby:3.3-bookworm AS base

FROM base AS prereq

Expand All @@ -11,7 +11,7 @@ RUN gem install bundler

WORKDIR /rails-app

FROM node:22.0-bookworm-slim AS npm
FROM node:22-bookworm-slim AS npm

WORKDIR /rails-app
ADD package.json /rails-app
Expand Down Expand Up @@ -57,7 +57,7 @@ RUN mkdir -p app/assets/config && touch app/assets/config/manifest.js

RUN rm -rf /usr/local/bundle/cache

FROM ruby:3.3.1-slim-bookworm
FROM ruby:3.3-slim-bookworm

RUN apt-get update \
&& apt-get install -qy --no-install-recommends nginx libxml2 libmariadb3 ca-certificates \
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"license": "UNLICENSED",
"dependencies": {
"@sentry/browser": "^7.72.0",
"core-js": "^3.33.0",
Expand Down

0 comments on commit 45beb3d

Please sign in to comment.