File tree Expand file tree Collapse file tree 4 files changed +3
-9
lines changed
Expand file tree Collapse file tree 4 files changed +3
-9
lines changed Original file line number Diff line number Diff line change 1- 3.3.5
1+ 3.4.2
Original file line number Diff line number Diff line change 11# syntax = docker/dockerfile:1
22
33# Make sure RUBY_VERSION matches the Ruby version in .ruby-version
4- ARG RUBY_VERSION=3.3.5
4+ ARG RUBY_VERSION=3.4.2
55FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim as base
66
77# Rails app lives here
@@ -22,7 +22,7 @@ FROM base as build
2222
2323# Install packages needed to build gems
2424RUN apt-get update -qq && \
25- apt-get install --no-install-recommends -y build-essential git libyaml-dev pkg-config
25+ apt-get install --no-install-recommends -y build-essential git libssl-dev libyaml-dev pkg-config
2626
2727# Install application gems
2828COPY .ruby-version Gemfile Gemfile.lock ./
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33source 'https://rubygems.org'
4- git_source ( :github ) { |repo | "https://github.com/#{ repo } .git" }
5-
6- ruby File . read ( ".ruby-version" ) . strip
74
85gem 'rails' , "~> 8.0.1"
96gem "webauthn" , "~> 3.4"
Original file line number Diff line number Diff line change @@ -357,8 +357,5 @@ DEPENDENCIES
357357 web-console (~> 4.2 , >= 4.2.1 )
358358 webauthn (~> 3.4 )
359359
360- RUBY VERSION
361- ruby 3.3.5p100
362-
363360BUNDLED WITH
364361 2.5.20
You can’t perform that action at this time.
0 commit comments