From 50321e271a5b21e35a17033c2e2db3679a35f7e9 Mon Sep 17 00:00:00 2001 From: Luiz Picolo Date: Wed, 3 Nov 2021 10:19:25 -0400 Subject: [PATCH] Changed ruby alphine to ruby ubuntu --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7ca9491..6943303 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,12 @@ -FROM ruby:alpine +FROM ruby:2.7.4 -RUN apt-get update && apt-get install -y \ +RUN apt update && apt install -y \ curl \ build-essential \ curl -sL https://deb.nodesource.com/setup_12.x | bash - && \ curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \ echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list && \ - apt-get update && apt-get install -y nodejs yarn sqlite3 cron g++ + apt update && apt install -y nodejs yarn sqlite3 cron g++ ENV RACK_ENV production ENV TZ=America/Campo_Grande