manual ci script + no cache for map updates
Some checks failed
/ build (push) Failing after 5m47s

This commit is contained in:
Hadrien 2026-07-03 23:33:48 +02:00
parent a5cf3640dd
commit 564a22abb2
5 changed files with 58 additions and 10 deletions

View file

@ -1,13 +1,12 @@
FROM docker.io/nginx:1.29-alpine
RUN apk add --update --no-cache wget unzip bash pandoc sed
RUN apk add --update --no-cache unzip bash pandoc sed
RUN wget -q https://git.interhacker.space/epickiwi/2026.camp.carte/releases/download/latest/dist.zip
RUN unzip -q dist.zip -d /tmp/carte
COPY dist.zip /tmp/dist.zip
RUN unzip -q /tmp/dist.zip -d /tmp/carte
RUN mkdir -p /usr/share/nginx/html/carte
RUN cp -r /tmp/carte/dist/* /usr/share/nginx/html/carte/
RUN rm -rf /tmp/carte
RUN rm -rf dist.zip
RUN rm -rf /tmp/carte /tmp/dist.zip
COPY guide.template.html .
COPY update-guide.sh .