mirror of
https://github.com/internetee/registry.git
synced 2025-06-05 20:27:30 +02:00
* Builds from baseimage with gems preinstalled * Checks for changes in Gemfile * Different conditional steps for build dockerfile selection * Builds new latest gems base image if new gems are added to master
5 lines
247 B
Text
5 lines
247 B
Text
FROM internetee/ruby_base:3.0
|
|
LABEL org.opencontainers.image.source=https://github.com/internetee/registry
|
|
|
|
COPY Gemfile Gemfile.lock ./
|
|
RUN gem install bundler && bundle config set without 'development test' && bundle install --jobs 20 --retry 5
|