Added docker support for development environment
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2024-02-09 07:17:14 -05:00
parent 175ce24b27
commit 8dee8b1f40
6 changed files with 22 additions and 4 deletions

15
Dockerfile.dev Normal file
View 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"]