From 4ddf862573e51623ee1e23f97073a9230bc98ce9 Mon Sep 17 00:00:00 2001 From: astravexton Date: Fri, 6 Jun 2025 16:25:02 +0100 Subject: [PATCH] bsky2tg: add git clone --- bsky2tg/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsky2tg/Containerfile b/bsky2tg/Containerfile index d78515f..f07b212 100644 --- a/bsky2tg/Containerfile +++ b/bsky2tg/Containerfile @@ -1,10 +1,10 @@ FROM golang:alpine AS builder WORKDIR /go/src/git.zio.sh/astra/bsky2tg -COPY . . RUN apk update && \ apk add --no-cache git bash && \ + git clone ssh://git@git.zio.sh:2222/astra/bsky2tg.git . && \ go get -d -v ./... && \ go install