Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
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 ruby:3.2.0-alpine as webpacker
FROM ruby:3.4.4-alpine as webpacker

ENV RAILS_ENV=production
ENV NODE_ENV=production
Expand All @@ -20,7 +20,7 @@ COPY ./app/packs ./app/packs

RUN echo "gem 'shakapacker'" > Gemfile && ./bin/webpacker

FROM ruby:3.2.0-alpine as assets
FROM ruby:3.4.4-alpine as assets

WORKDIR /opt

Expand All @@ -34,7 +34,7 @@ COPY ./vendor/motor-admin/ui ./

RUN yarn build:prod

FROM ruby:3.2.0-alpine as app
FROM ruby:3.4.4-alpine as app

ENV RAILS_ENV=production
ENV BUNDLE_WITHOUT="development:test"
Expand Down