From 3eed4ca15b946c5b9df80f303b44f4799f66bf90 Mon Sep 17 00:00:00 2001 From: Neshura Date: Mon, 27 Feb 2023 01:40:30 +0000 Subject: [PATCH] Switch from Alpine build environment to Debian Bullseye --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8f39598..70eadb8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -12,7 +12,7 @@ stages: ## Docker steps build: - image: rust:alpine3.17 + image: rust:bullseye stage: build variables: @@ -20,7 +20,7 @@ build: CACHING: before_script: - - apk add musl-dev openssl-dev + - apt install openssl script: - echo "Compiling the code..."