This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
FROM --platform=linux/amd64 ruby:3.4.1
|
||||
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev nodejs
|
||||
RUN mkdir /myapp
|
||||
WORKDIR /myapp
|
||||
ADD Gemfile /myapp/Gemfile
|
||||
ADD Gemfile.lock /myapp/Gemfile.lock
|
||||
RUN gem install bundler
|
||||
RUN bundle install
|
||||
ADD . /myapp
|
||||
Reference in New Issue
Block a user