mirror of
https://github.com/internetee/registry.git
synced 2025-06-01 18:28:38 +02:00
8 lines
201 B
Docker
8 lines
201 B
Docker
FROM internetee/ruby:3.0-buster
|
|
|
|
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
|