changes 3
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2025-12-19 10:43:39 +01:00
parent 12e0d29bff
commit 79ad5900d8
3 changed files with 4 additions and 4 deletions

View File

@@ -1,6 +1,9 @@
FROM nginx:alpine3.22 FROM nginx:alpine3.22
COPY ./content /usr/share/nginx/html COPY ./content /usr/share/nginx/html
RUN cd /usr/share/nginx/html && ./snippet-indexer.sh RUN \
cd /usr/share/nginx/html && \
./snippet-indexer.sh && \
sed -i 's,%TAG%,'$RELEASE_TAG','g about.md
# ------------ # ------------
# prepare for rootless operations # prepare for rootless operations

View File

@@ -1,2 +0,0 @@
"additionalFooterText": "blablabla"

View File

@@ -20,7 +20,6 @@ kubectl create namespace $NAMESPACE \
kubectl -f - apply kubectl -f - apply
sed -i 's,%TAG%,'$IMAGE_TAG','g content/about.md
cat $DEPLOYMENT_DIR/deploy-yml.tmpl | \ cat $DEPLOYMENT_DIR/deploy-yml.tmpl | \
sed -e 's,%IMAGE%,'$IMAGE_NAME':'$IMAGE_TAG','g | \ sed -e 's,%IMAGE%,'$IMAGE_NAME':'$IMAGE_TAG','g | \
kubectl apply -f - -n $NAMESPACE kubectl apply -f - -n $NAMESPACE