aboutsummaryrefslogtreecommitdiff
path: root/Containerfile
diff options
context:
space:
mode:
authorSam Scholten2025-12-15 21:16:25 +1000
committerSam Scholten2025-12-15 21:17:06 +1000
commitae38f7ee9cbe80bd2287c8ec5e6f74510a065e62 (patch)
tree5a29977a2a6a1f4ddfc24c681c0fa5266832e2c1 /Containerfile
parent9f5978186ac3de07f4325975fecf4f538fe713b6 (diff)
downloadscholscan-main.tar.gz
scholscan-main.zip
Diffstat (limited to 'Containerfile')
-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