From 9fc53e2cd87edec84b611c3be36e2d40f014a4c6 Mon Sep 17 00:00:00 2001 From: Aminda Suomalainen Date: Mon, 22 May 2023 19:50:53 +0300 Subject: [PATCH] .gitlab-ci.yml: switch to alpine:latest, manually specify packages --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c8ad192..5179de2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,4 +1,4 @@ -image: python:alpine +image: alpine:latest variables: JEKYLL_ENV: production @@ -11,7 +11,7 @@ cache: - ${CI_PROJECT_DIR}/bundle before_script: - - apk install --no-cache ruby-bundler + - apk install --no-cache ruby ruby-bundler - bundle install test: @@ -37,7 +37,7 @@ pages: gitlab-ci-pre-commit: stage: build before_script: - - apk add --no-cache git gcc musl-dev bash + - apk add --no-cache python3 py3-pip git gcc musl-dev bash - pip install pre-commit script: - pre-commit run --all-files --show-diff-on-failure