Skip to content

Commit b130bc0

Browse files
committed
Fix the docker build
Somewhere along the way the docker build broke, it now needs yaml-dev to be installed. Maybe the underlying image changed? Update to 3.4-alpine while we are here.
1 parent 28be030 commit b130bc0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:3.3-alpine
1+
FROM ruby:3.4-alpine
22

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

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

0 commit comments

Comments
 (0)