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 cd55d49 commit 3d783d0Copy full SHA for 3d783d0
Dockerfile
@@ -1,14 +1,11 @@
1
ARG RUBY_VERSION
2
FROM ruby:$RUBY_VERSION-slim
3
RUN set -ex \
4
- && gem update --system --silent --quiet \
5
- && apt-get update -y \
6
- && apt-get upgrade -y \
7
- && apt-get install -y \
8
- build-essential \
9
- git \
10
- libcurl4-openssl-dev \
11
- && apt-get clean
+ && gem update --system \
+ && 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