summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorIwanIDev <iwan@iwani.dev>2026-03-21 17:56:04 +0000
committerIwanIDev <iwan@iwani.dev>2026-03-21 17:56:04 +0000
commitece957eb3d306e10914839ab8a6794447c17fc29 (patch)
tree3a806f169fbd4963ab717825d85574c6e13249f3 /Dockerfile
parentfb7fa2f1b8321d5505c0e3afda59cb9c904f106b (diff)
feat: integrate Openring into CI/CD
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
index 9d21131..261f267 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -2,6 +2,12 @@ FROM oven/bun:1.2.22-alpine AS builder
WORKDIR /app
+ARG OPENRING_VERSION=latest
+ENV PATH="/root/go/bin:${PATH}"
+
+RUN apk add --no-cache go git ca-certificates && \
+ go install git.sr.ht/~sircmpwn/openring@${OPENRING_VERSION}
+
ARG VITE_DRUPAL_BASE_URL
ARG VITE_DRUPAL_API_PREFIX
ENV VITE_DRUPAL_BASE_URL=${VITE_DRUPAL_BASE_URL}