Skip to content

Commit

Permalink
fix: comment bundle config
Browse files Browse the repository at this point in the history
  • Loading branch information
guidojw committed Oct 11, 2023
1 parent 8e1feea commit 764b898
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ ARG NODE_ENV='production'

# Pre-install gems, so that they can be cached.
COPY Gemfile* /app/
RUN if [ "$RAILS_ENV" = 'production' ] || [ "$RAILS_ENV" = 'staging' ]; then \
bundle config set --local without 'development test'; \
else \
bundle config set --local without 'development'; \
fi
# RUN if [ "$RAILS_ENV" = 'production' ] || [ "$RAILS_ENV" = 'staging' ]; then \
# bundle config set --local without 'development test'; \
# else \
# bundle config set --local without 'development'; \
# fi
RUN bundle install

# Pre-install npm packages, so that they can be cached.
Expand Down

0 comments on commit 764b898

Please sign in to comment.