1
0
mirror of https://github.com/danbee/my-images synced 2025-03-04 08:49:05 +00:00
my-images/Dockerfile

14 lines
195 B
Docker

FROM danbarber/ruby:2.5.1-node-browsers
RUN mkdir /app
WORKDIR /app
ENV RAILS_ENV test
COPY Gemfile Gemfile.lock ./
RUN gem install bundler && bundle install -j20
COPY . ./
RUN yarn install