Codebase list ruby-gitlab / upstream/4.14.1 Dockerfile
upstream/4.14.1

Tree @upstream/4.14.1 (Download .tar.gz)

Dockerfile @upstream/4.14.1raw · history · blame

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

WORKDIR /app

COPY . ./
RUN bundle install

CMD ["bin/console"]