diff --git a/Dockerfile b/Dockerfile index 42ad61d..a317fd6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,13 +7,6 @@ FROM registry.docker.com/library/ruby:$RUBY_VERSION-slim as base # Rails app lives here WORKDIR /rails -# Set production environment -ENV RAILS_ENV="production" \ - BUNDLE_DEPLOYMENT="1" \ - BUNDLE_PATH="/usr/local/bundle" \ - BUNDLE_WITHOUT="development" - - # Throw-away build stage to reduce size of final image FROM base as build