Changed ruby alphine to ruby ubuntu

This commit is contained in:
Luiz F Picolo 2021-11-03 10:19:25 -04:00
parent cf4185f897
commit 50321e271a
1 changed files with 3 additions and 3 deletions

View File

@ -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 \ curl \
build-essential \ build-essential \
curl -sL https://deb.nodesource.com/setup_12.x | bash - && \ curl -sL https://deb.nodesource.com/setup_12.x | bash - && \
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - && \ 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 && \ 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 RACK_ENV production
ENV TZ=America/Campo_Grande ENV TZ=America/Campo_Grande