aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsaturneric <[email protected]>2025-11-07 23:39:18 +0000
committersaturneric <[email protected]>2025-11-07 23:39:18 +0000
commit1322e675d5ef48f4389f1da79db0edf170e3f17c (patch)
tree2566756cef94b184c64b1e89c3296e93bfc12c27
parentfix(proxy): update proxy target to `gitea` (diff)
downloadcgit-1322e675d5ef48f4389f1da79db0edf170e3f17c.tar.gz
cgit-1322e675d5ef48f4389f1da79db0edf170e3f17c.zip
chore(docker): update base image to custom alpine
* Switch base image from default Alpine to custom registry version * Ensures consistency and control over build/runtime environments * May address compatibility, security, or dependency requirements
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index 596a0c4..7e1264a 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,4 +1,4 @@
-FROM alpine:latest AS builder
+FROM git.stdv.de/saturneric/alpine:latest AS builder
COPY . /app
@@ -13,7 +13,7 @@ RUN apk --no-cache add libc-dev git gcc make \
RUN make NO_REGEX=NeedsStartEnd LUA_PKGCONFIG=lua5.4 -j$(nproc) install
-FROM alpine:latest AS runtime
+FROM git.stdv.de/saturneric/alpine:latest AS runtime
COPY --from=builder /var/www/htdocs/cgit /usr/share/webapps/cgit
COPY ./filters /usr/lib/cgit/filters