From 7c366b472b62e23df52484014c4cd0906a28bd0c Mon Sep 17 00:00:00 2001 From: Matthias Date: Sun, 4 Sep 2022 11:29:49 +0200 Subject: [PATCH] Use prebuild docker image for backend --- .gitlab-ci.yml | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3142c8e..3e25bf8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,18 +1,15 @@ -image: ubuntu:latest - stages: - build - package build_backend: stage: build + image: reg.gitlab.mattv.de/root/docker-images/ubuntu_build_base:latest cache: key: backend paths: - vcpkg_cache script: - - apt-get update - - apt-get install g++ gcc make cmake git curl zip unzip tar python3 pkg-config -y - SRC="$PWD" - TMP=$(mktemp -d) - cd $TMP @@ -45,6 +42,7 @@ test_and_build_frontend: - frontend/dist/ package_server: + image: alpine:latest stage: package before_script: [] needs: