Skip to content

Commit

Permalink
General update
Browse files Browse the repository at this point in the history
  • Loading branch information
gregogalante committed Nov 8, 2020
1 parent ca80dff commit ea31c0a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions templates/dockerize/docker/rails.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,13 @@ FROM ruby:2.6.0
# Installo dipendenze
RUN apt-get update -qq && apt-get install -y apt-utils build-essential

RUN curl -sL https://deb.nodesource.com/setup_12.x | bash -
RUN apt-get install -y nodejs
RUN npm install -g yarn

COPY . /app
WORKDIR /app
RUN yarn install

RUN test -f tmp/pids/server.pid && rm -f tmp/pids/server.pid; true
RUN gem install bundler:2.0.2
Expand Down

0 comments on commit ea31c0a

Please sign in to comment.