mirror of
https://github.com/danbee/my-images
synced 2025-03-04 08:49:05 +00:00
14 lines
195 B
Docker
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
|