tracks/Dockerfile

16 lines
172 B
Text
Raw Normal View History

2019-04-07 12:42:37 -05:00
FROM ruby:2.4
WORKDIR /app
RUN touch /etc/app-env
COPY Gemfile* /app/
2019-04-07 19:43:10 -05:00
RUN gem install bundler
2019-10-30 20:45:50 -04:00
RUN bundle install --jobs 4
RUN mkdir /app/log
COPY . /app/
EXPOSE 3000