diff --git a/frameworks/Ruby/roda-sequel/roda-sequel-postgres-iodine-mri.dockerfile b/frameworks/Ruby/roda-sequel/roda-sequel-postgres-iodine-mri.dockerfile index b8990b4ba3c..2ab0b2de6cc 100644 --- a/frameworks/Ruby/roda-sequel/roda-sequel-postgres-iodine-mri.dockerfile +++ b/frameworks/Ruby/roda-sequel/roda-sequel-postgres-iodine-mri.dockerfile @@ -14,6 +14,7 @@ ENV BUNDLE_FORCE_RUBY_PLATFORM=true RUN bundle config set with 'postgresql iodine' RUN bundle install --jobs=8 +ENV RACK_ENV=production ENV DBTYPE=postgresql EXPOSE 8080 diff --git a/frameworks/Ruby/roda-sequel/roda-sequel-postgres.dockerfile b/frameworks/Ruby/roda-sequel/roda-sequel-postgres.dockerfile index 542d2d49cc9..46cff7f1b39 100644 --- a/frameworks/Ruby/roda-sequel/roda-sequel-postgres.dockerfile +++ b/frameworks/Ruby/roda-sequel/roda-sequel-postgres.dockerfile @@ -14,9 +14,10 @@ ENV BUNDLE_FORCE_RUBY_PLATFORM=true RUN bundle config set with 'postgresql puma' RUN bundle install --jobs=8 +ENV RACK_ENV=production ENV DBTYPE=postgresql ENV WEB_CONCURRENCY=auto EXPOSE 8080 -CMD bundle exec puma -C config/mri_puma.rb -b tcp://0.0.0.0:8080 -e production +CMD bundle exec puma -C config/mri_puma.rb -b tcp://0.0.0.0:8080 diff --git a/frameworks/Ruby/roda-sequel/roda-sequel.dockerfile b/frameworks/Ruby/roda-sequel/roda-sequel.dockerfile index 87dcf9ce1ff..1506324b59c 100644 --- a/frameworks/Ruby/roda-sequel/roda-sequel.dockerfile +++ b/frameworks/Ruby/roda-sequel/roda-sequel.dockerfile @@ -15,9 +15,10 @@ ENV BUNDLE_FORCE_RUBY_PLATFORM=true RUN bundle config set with 'mysql puma' RUN bundle install --jobs=8 +ENV RACK_ENV=production ENV DBTYPE=mysql ENV WEB_CONCURRENCY=auto EXPOSE 8080 -CMD bundle exec puma -C config/mri_puma.rb -b tcp://0.0.0.0:8080 -e production +CMD bundle exec puma -C config/mri_puma.rb -b tcp://0.0.0.0:8080