Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
FROM ruby:3.4.2 AS base

RUN bundle config --global frozen 1 && \
mkdir -p /vendor/bundle && \
bundle config set --local path /vendor/bundle
RUN bundle config set frozen 'true' && \
bundle config set path '/vendor/bundle'

WORKDIR /usr/src/app

COPY Gemfile Gemfile.lock ./
Expand Down
Loading