Codebase list ruby-gitlab / a423c09 Dockerfile
a423c09

Tree @a423c09 (Download .tar.gz)

Dockerfile @a423c09raw · history · blame

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

WORKDIR /app

COPY . ./
RUN bundle install

CMD ["bin/console"]