mirror of
https://github.com/CodeforLeipzig/stadtratmonitor.git
synced 2025-04-10 11:53:02 +02:00
14 lines
256 B
Text
14 lines
256 B
Text
|
# ~~~~~~~~~~~~~~~~~~~~~
|
||
|
# ~~~ DEVELOP IMAGE ~~~
|
||
|
# ~~~~~~~~~~~~~~~~~~~~~
|
||
|
|
||
|
FROM base AS development
|
||
|
|
||
|
RUN bundle config without test
|
||
|
RUN bundle update
|
||
|
RUN bundle install
|
||
|
|
||
|
WORKDIR /home/srm/app/
|
||
|
|
||
|
EXPOSE 3000
|
||
|
CMD bundle exec puma -C /home/srm/app/config/puma.rb
|