Skip to content

Commit

Permalink
valnurable fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegPhenomenon committed Mar 14, 2024
1 parent 9288e38 commit db1955d
Show file tree
Hide file tree
Showing 4 changed files with 114 additions and 112 deletions.
5 changes: 2 additions & 3 deletions Dockerfile.dev
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,14 @@ WORKDIR $APP_PATH
COPY Gemfile Gemfile.lock ./
RUN gem install bundler -v $BUNDLER_VERSION

RUN bundle config --global frozen 1 && \
bundle install && \
RUN bundle install && \
rm -rf /usr/local/bundle/cache/*.gem && \
find /usr/local/bundle/gems/ -name "*.c" -delete && \
find /usr/local/bundle/gems/ -name "*.o" -delete


COPY package.json yarn.lock ./
RUN yarn install --frozen-lockfile --non-interactive --production
RUN yarn install --non-interactive

ADD . $APP_PATH

Expand Down
4 changes: 2 additions & 2 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ gem 'pagy', '~> 6.0'
gem 'pg', '~> 1.1'
gem 'phonelib'
gem 'propshaft'
gem 'puma', '>= 6.3.1'
gem 'rails', '~> 7.0.5', '>= 7.0.7.1'
gem 'puma', '>= 6.4.2'
gem 'rails', '~> 7.0.5', '>= 7.0.8.1'
gem 'redis', '~> 4.0'
gem 'redis-namespace'
gem 'sidekiq', '>=7'
Expand Down
Loading

0 comments on commit db1955d

Please sign in to comment.