From 1b6b3135c78f650aac1045cd2338ac65ae04d6ac Mon Sep 17 00:00:00 2001 From: Dan Elbert Date: Fri, 18 Oct 2024 14:39:41 -0500 Subject: [PATCH] Fix dockerfile --- Dockerfile | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 6407753..40309d8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,17 +1,13 @@ FROM ruby:3.3.5-bookworm RUN curl -sL https://deb.nodesource.com/setup_lts.x | bash - && \ - curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \ - echo "deb https://dl.yarnpkg.com/debian/ stable main" > /etc/apt/sources.list.d/yarn.list && \ apt-get update && apt-get dist-upgrade -y && \ apt-get install -y \ nodejs \ - yarn \ nginx && \ apt-get autoremove -y && apt-get clean && rm -rf /var/lib/apt/lists/* -RUN gem update --system && gem install bundler - +RUN gem update --no-document --system 3.5.21 && gem install bundler --no-document -v 2.5.21 && corepack enable # Install nginx config files RUN rm /etc/nginx/sites-enabled/default