Codebase list ruby-gitlab / 6a0b397 Dockerfile
6a0b397

Tree @6a0b397 (Download .tar.gz)

Dockerfile @6a0b397raw · history · blame

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

WORKDIR /app

COPY . ./
RUN bundle install

CMD ["bin/console"]