tracks/Dockerfile

15 lines
139 B
Text
Raw Permalink 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/
RUN bundle install
RUN mkdir /app/log
COPY . /app/
EXPOSE 3000