summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
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}