We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40379f3 commit 5bb4f59Copy full SHA for 5bb4f59
Dockerfile
@@ -1,14 +1,14 @@
1
ARG RUBY_VERSION
2
FROM ruby:$RUBY_VERSION-slim
3
RUN set -ex \
4
- # Update RubyGems system if Ruby version is 3.1 or higher
5
- && if ruby -e 'exit(RUBY_VERSION.to_f >= 3.1)'; then \
6
- gem update --system; \
7
- fi \
8
- && apt-get update -y \
9
- && apt-get upgrade -y \
10
- && apt-get install -y build-essential git libcurl4-openssl-dev \
11
- && apt-get clean
+ && gem update --system --silent --quiet \
+ && apt-get update -y \
+ && apt-get upgrade -y \
+ && apt-get install -y \
+ build-essential \
+ git \
+ libcurl4-openssl-dev \
+ && apt-get clean
12
WORKDIR /app/github-pages-health-check
13
COPY Gemfile .
14
COPY github-pages-health-check.gemspec .
0 commit comments