mirror of
https://github.com/internetee/registry.git
synced 2025-06-07 21:25:39 +02:00
8 lines
194 B
Docker
8 lines
194 B
Docker
FROM internetee/ruby:2.4
|
|
|
|
RUN mkdir -p /opt/webapps/app/tmp/pids
|
|
WORKDIR /opt/webapps/app
|
|
COPY Gemfile Gemfile.lock ./
|
|
RUN gem install bundler && bundle install --jobs 20 --retry 5
|
|
|
|
EXPOSE 3000
|