This commit is contained in:
parent
a5cf3640dd
commit
564a22abb2
5 changed files with 58 additions and 10 deletions
|
|
@ -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 .
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue