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
4 changes: 2 additions & 2 deletions implementations/ruby-json_schemer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
FROM ruby:3-alpine as builder
FROM ruby:4-alpine as builder

# unf_ext wants libc++ to compile itself
RUN apk add --no-cache g++ make
COPY Gemfile* *.gemspec .
RUN bundle install

FROM ruby:3-alpine
FROM ruby:4-alpine
WORKDIR /usr/src/app
COPY --from=builder /usr/local/bundle/ /usr/local/bundle/
COPY . .
Expand Down
Loading