automatic builds
This commit is contained in:
parent
764038d40d
commit
fca7bb0758
23
Dockerfile-386
Normal file
23
Dockerfile-386
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
FROM 386/alpine
|
||||||
|
|
||||||
|
COPY compile.sh /tmp/compile.sh
|
||||||
|
RUN chmod +x /tmp/compile.sh && \
|
||||||
|
/tmp/compile.sh && \
|
||||||
|
rm -rf /tmp/*
|
||||||
|
|
||||||
|
COPY entrypoint.sh /opt/entrypoint.sh
|
||||||
|
COPY confs/ /opt/confs
|
||||||
|
COPY scripts/ /opt/scripts
|
||||||
|
COPY fail2ban/ /opt/fail2ban
|
||||||
|
COPY logs/ /opt/logs
|
||||||
|
|
||||||
|
RUN apk --no-cache add php7-fpm certbot libstdc++ libmaxminddb geoip pcre yajl fail2ban clamav apache2-utils && \
|
||||||
|
chmod +x /opt/entrypoint.sh /opt/scripts/* && \
|
||||||
|
mkdir /opt/entrypoint.d && \
|
||||||
|
adduser -h /dev/null -g '' -s /sbin/nologin -D -H nginx
|
||||||
|
|
||||||
|
VOLUME /www /http-confs /server-confs /modsec-confs /modsec-crs-confs
|
||||||
|
|
||||||
|
EXPOSE 80/tcp 443/tcp
|
||||||
|
|
||||||
|
ENTRYPOINT ["/opt/entrypoint.sh"]
|
||||||
23
Dockerfile-amd64
Normal file
23
Dockerfile-amd64
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
FROM amd64/alpine
|
||||||
|
|
||||||
|
COPY compile.sh /tmp/compile.sh
|
||||||
|
RUN chmod +x /tmp/compile.sh && \
|
||||||
|
/tmp/compile.sh && \
|
||||||
|
rm -rf /tmp/*
|
||||||
|
|
||||||
|
COPY entrypoint.sh /opt/entrypoint.sh
|
||||||
|
COPY confs/ /opt/confs
|
||||||
|
COPY scripts/ /opt/scripts
|
||||||
|
COPY fail2ban/ /opt/fail2ban
|
||||||
|
COPY logs/ /opt/logs
|
||||||
|
|
||||||
|
RUN apk --no-cache add php7-fpm certbot libstdc++ libmaxminddb geoip pcre yajl fail2ban clamav apache2-utils && \
|
||||||
|
chmod +x /opt/entrypoint.sh /opt/scripts/* && \
|
||||||
|
mkdir /opt/entrypoint.d && \
|
||||||
|
adduser -h /dev/null -g '' -s /sbin/nologin -D -H nginx
|
||||||
|
|
||||||
|
VOLUME /www /http-confs /server-confs /modsec-confs /modsec-crs-confs
|
||||||
|
|
||||||
|
EXPOSE 80/tcp 443/tcp
|
||||||
|
|
||||||
|
ENTRYPOINT ["/opt/entrypoint.sh"]
|
||||||
30
Dockerfile-arm32v7
Normal file
30
Dockerfile-arm32v7
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
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 arm32v7/alpine
|
||||||
|
|
||||||
|
COPY --from=builder qemu-arm-static /usr/bin
|
||||||
|
|
||||||
|
COPY compile.sh /tmp/compile.sh
|
||||||
|
RUN chmod +x /tmp/compile.sh && \
|
||||||
|
/tmp/compile.sh && \
|
||||||
|
rm -rf /tmp/*
|
||||||
|
|
||||||
|
COPY entrypoint.sh /opt/entrypoint.sh
|
||||||
|
COPY confs/ /opt/confs
|
||||||
|
COPY scripts/ /opt/scripts
|
||||||
|
COPY fail2ban/ /opt/fail2ban
|
||||||
|
COPY logs/ /opt/logs
|
||||||
|
|
||||||
|
RUN apk --no-cache add php7-fpm certbot libstdc++ libmaxminddb geoip pcre yajl fail2ban clamav apache2-utils && \
|
||||||
|
chmod +x /opt/entrypoint.sh /opt/scripts/* && \
|
||||||
|
mkdir /opt/entrypoint.d && \
|
||||||
|
adduser -h /dev/null -g '' -s /sbin/nologin -D -H nginx
|
||||||
|
|
||||||
|
VOLUME /www /http-confs /server-confs /modsec-confs /modsec-crs-confs
|
||||||
|
|
||||||
|
EXPOSE 80/tcp 443/tcp
|
||||||
|
|
||||||
|
ENTRYPOINT ["/opt/entrypoint.sh"]
|
||||||
5
hooks/pre_build
Normal file
5
hooks/pre_build
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Register qemu-*-static for all supported processors except the
|
||||||
|
# current one, but also remove all registered binfmt_misc before
|
||||||
|
docker run --rm --privileged multiarch/qemu-user-static:register --reset
|
||||||
Loading…
x
Reference in New Issue
Block a user