web ui - mostly finished templating integration (needs some testing)

This commit is contained in:
bunkerity
2021-06-01 15:22:03 +02:00
parent 7323525b69
commit ee178de6ab
16 changed files with 141 additions and 50 deletions

View File

@@ -1,9 +1,5 @@
FROM nginx:1.20.1-alpine AS builder
FROM alpine
COPY --from=builder /etc/nginx/ /opt/confs/nginx
COPY autoconf/dependencies.sh /tmp
RUN chmod +x /tmp/dependencies.sh && \
/tmp/dependencies.sh && \

View File

@@ -1,9 +1,5 @@
FROM nginx:1.20.1-alpine AS builder
FROM amd64/alpine
COPY --from=builder /etc/nginx/ /opt/confs/nginx
COPY autoconf/dependencies.sh /tmp
RUN chmod +x /tmp/dependencies.sh && \
/tmp/dependencies.sh && \

View File

@@ -3,12 +3,9 @@ FROM alpine AS builder
ENV QEMU_URL https://github.com/balena-io/qemu/releases/download/v4.0.0%2Bbalena2/qemu-4.0.0.balena2-arm.tar.gz
RUN apk add curl && curl -L ${QEMU_URL} | tar zxvf - -C . --strip-components 1
FROM nginx:1.20.1-alpine AS builder2
FROM arm32v7/alpine
COPY --from=builder qemu-arm-static /usr/bin
COPY --from=builder2 /etc/nginx/ /opt/confs/nginx
COPY autoconf/dependencies.sh /tmp
RUN chmod +x /tmp/dependencies.sh && \

View File

@@ -3,12 +3,9 @@ FROM alpine AS builder
ENV QEMU_URL https://github.com/balena-io/qemu/releases/download/v4.0.0%2Bbalena2/qemu-4.0.0.balena2-aarch64.tar.gz
RUN apk add curl && curl -L ${QEMU_URL} | tar zxvf - -C . --strip-components 1
FROM nginx:1.20.1-alpine AS builder2
FROM arm64v8/alpine
COPY --from=builder qemu-aarch64-static /usr/bin
COPY --from=builder2 /etc/nginx/ /opt/confs/nginx
COPY autoconf/dependencies.sh /tmp
RUN chmod +x /tmp/dependencies.sh && \

View File

@@ -1,9 +1,5 @@
FROM nginx:1.20.1-alpine AS builder
FROM i386/alpine
COPY --from=builder /etc/nginx/ /opt/confs/nginx
COPY autoconf/dependencies.sh /tmp
RUN chmod +x /tmp/dependencies.sh && \
/tmp/dependencies.sh && \