Skip to content

Commit

Permalink
Merge pull request #1402 from basecamp/fix-docker-build
Browse files Browse the repository at this point in the history
Fix the docker build
  • Loading branch information
djmb authored Feb 6, 2025
2 parents 28be030 + b130bc0 commit 9d2dda0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ruby:3.3-alpine
FROM ruby:3.4-alpine

# Install docker/buildx-bin
COPY --from=docker/buildx-bin /buildx /usr/libexec/docker/cli-plugins/docker-buildx
Expand All @@ -13,7 +13,7 @@ COPY Gemfile Gemfile.lock kamal.gemspec ./
COPY lib/kamal/version.rb /kamal/lib/kamal/version.rb

# Install system dependencies
RUN apk add --no-cache build-base git docker openrc openssh-client-default \
RUN apk add --no-cache build-base git docker openrc openssh-client-default yaml-dev \
&& rc-update add docker boot \
&& gem install bundler --version=2.4.3 \
&& bundle install
Expand Down

0 comments on commit 9d2dda0

Please sign in to comment.