From 1ecc50d40f3037942440631868d39473b4098b51 Mon Sep 17 00:00:00 2001 From: "Ricardo G. Herdt" Date: Sun, 5 Dec 2021 17:25:39 +0100 Subject: [PATCH] conscheme: use new repo in GitLab --- implementations/conscheme/head/Dockerfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/implementations/conscheme/head/Dockerfile b/implementations/conscheme/head/Dockerfile index 28cee32..4c25f53 100644 --- a/implementations/conscheme/head/Dockerfile +++ b/implementations/conscheme/head/Dockerfile @@ -3,11 +3,8 @@ FROM debian:bullseye-slim AS build RUN apt-get update && apt-get -y --no-install-recommends install \ build-essential ca-certificates git golang \ && rm -rf /var/lib/apt/lists/* -WORKDIR /build/conscheme -RUN git init \ - && git remote add origin https://github.com/weinholt/conscheme.git \ - && git fetch origin 9f34f3f1e7a7c480b09a92cf3302f469bd7fbdd7 --depth 1 --tags \ - && git reset --hard FETCH_HEAD +WORKDIR /build +RUN git clone https://gitlab.com/weinholt/conscheme.git RUN go get -d -v ./... RUN go build -v ./... RUN go test -v ./...