Codebase list ruby-gitlab / 56aea8b Dockerfile
56aea8b

Tree @56aea8b (Download .tar.gz)

Dockerfile @56aea8braw · history · blame

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

WORKDIR /app

COPY . ./
RUN bundle install

CMD ["bin/console"]