File: Dockerfile

package info (click to toggle)
ruby-git 4.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,564 kB
  • sloc: ruby: 9,983; sh: 519; perl: 64; makefile: 6
file content (12 lines) | stat: -rw-r--r-- 179 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
FROM ruby

WORKDIR /ruby-git


ADD Gemfile git.gemspec .git* ./
ADD lib/git/version.rb ./lib/git/version.rb
RUN bundle install

ADD . .

ENTRYPOINT ["bundle", "exec", "bin/test"]