We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 379f317 + de3930f commit d6778e5Copy full SHA for d6778e5
Dockerfile
@@ -2,6 +2,8 @@ FROM ruby:3.4.3-alpine3.20
2
ARG KRANE_VERSION=3.4.1
3
ARG KUBECTL_VERSION=1.32.3
4
5
+ENV BUNDLE_WITHOUT="development:test"
6
+
7
RUN apk update && apk --update add \
8
ruby-io-console \
9
# libstdc++ \
@@ -26,7 +28,7 @@ RUN apk --update add \
26
28
git \
27
29
bash \
30
&& gem install bundler && \
- cd /app ; bundle install --without development test && \
31
+ cd /app ; bundle install && \
32
gem install krane -f --no-document --version=$KRANE_VERSION
33
34
COPY . /app
0 commit comments