Codebase list ruby-gitlab / fc9e3df Dockerfile
fc9e3df

Tree @fc9e3df (Download .tar.gz)

Dockerfile @fc9e3dfraw · history · blame

1
2
3
4
5
6
7
8
FROM ruby:2.5

WORKDIR /app

COPY . ./
RUN bundle install

CMD ["bin/console"]