Added docker support for development environment
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
15
Dockerfile.dev
Normal file
15
Dockerfile.dev
Normal file
@ -0,0 +1,15 @@
|
||||
FROM ruby:3.3
|
||||
|
||||
RUN gem install bundler -v 2.5
|
||||
|
||||
WORKDIR /src
|
||||
|
||||
COPY Gemfile Gemfile.lock ./
|
||||
|
||||
RUN bundle check || bundle install
|
||||
|
||||
RUN gem install rake
|
||||
|
||||
COPY . ./
|
||||
|
||||
ENTRYPOINT ["rake", "server:dev"]
|
Reference in New Issue
Block a user