aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Containerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Containerfile b/Containerfile
index 58f011f..e047979 100644
--- a/Containerfile
+++ b/Containerfile
@@ -2,7 +2,7 @@
FROM golang:1.25-alpine AS builder
RUN apk add --no-cache git
WORKDIR /build
-RUN git clone https://your-git-repo-url/scholscan.git .
+RUN git clone git@git.samsci.com:public/scholscan.git .
RUN go build -o scholscan .
FROM alpine:latest