diff --git a/Gemfile.lock b/Gemfile.lock index d49d4c6..48b95c3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - linear-cli (0.9.8) + linear-cli (0.9.10) base64 (~> 0.2) dry-cli (~> 1.0) dry-cli-completion (~> 1.0) diff --git a/changelog/unreleased/fixed_sqlite_problem_with_ruby_3_3_https_github_com_sparklemotion_sqlite3_ruby_issues_434_by_pinning_to_alpine_3_18.yml b/changelog/unreleased/fixed_sqlite_problem_with_ruby_3_3_https_github_com_sparklemotion_sqlite3_ruby_issues_434_by_pinning_to_alpine_3_18.yml new file mode 100644 index 0000000..d5214e3 --- /dev/null +++ b/changelog/unreleased/fixed_sqlite_problem_with_ruby_3_3_https_github_com_sparklemotion_sqlite3_ruby_issues_434_by_pinning_to_alpine_3_18.yml @@ -0,0 +1,4 @@ +type: Fixed +title: > + Fixed sqlite problem with ruby 3.3 (https://github.com/sparklemotion/sqlite3-ruby/issues/434) by pinning to alpine 3.18 +author: bougyman diff --git a/oci/Containerfile b/oci/Containerfile index 806fcef..422d518 100644 --- a/oci/Containerfile +++ b/oci/Containerfile @@ -1,4 +1,4 @@ -FROM docker.io/ruby:3.3.0-alpine3.19 AS build-env +FROM docker.io/ruby:3.3.0-alpine3.18 AS build-env # Setting env up @@ -16,7 +16,7 @@ COPY . $APP_ROOT RUN gem i semantic_logger && bundle install && bundle exec rake build ############### Build step done ############### -FROM docker.io/ruby:3.3.0-alpine3.19 +FROM docker.io/ruby:3.3.0-alpine3.18 ARG PACKAGES="bash sqlite sqlite-dev ruby-dev build-base github-cli openssh" ARG APP_VERSION