diff options
author | Galen Guyer <galen@galenguyer.com> | 2022-02-14 23:07:05 -0500 |
---|---|---|
committer | Galen Guyer <galen@galenguyer.com> | 2022-02-14 23:07:05 -0500 |
commit | d21947a12b7fe6bf0a62b4c87b6d3c363d9585e1 (patch) | |
tree | c87b48d0fb4ecf27dc94569037406627bcc047d6 /alpine/Dockerfile | |
parent | b97b649cb3fe2217e46800e5bfc649ff20076625 (diff) |
add single page app configs
Diffstat (limited to 'alpine/Dockerfile')
-rw-r--r-- | alpine/Dockerfile | 72 |
1 files changed, 0 insertions, 72 deletions
diff --git a/alpine/Dockerfile b/alpine/Dockerfile deleted file mode 100644 index ac8f582..0000000 --- a/alpine/Dockerfile +++ /dev/null @@ -1,72 +0,0 @@ -# allow multiarch builds -ARG TARGETOS -ARG TARGETARCH -ARG TARGETVARIANT="" - -ARG ALPINE_VER="latest" -FROM alpine:"$ALPINE_VER" AS builder -RUN apk add gcc g++ git curl make linux-headers tar gzip geoip-dev gd-dev libxslt-dev pcre-dev perl-dev - -WORKDIR /src/pcre -ARG PCRE_VER="8.44" -RUN curl -L -O "https://cfhcable.dl.sourceforge.net/project/pcre/pcre/$PCRE_VER/pcre-$PCRE_VER.tar.gz" -RUN tar xzf "/src/pcre/pcre-$PCRE_VER.tar.gz" - -WORKDIR /src/nginx -ARG NGINX_VER -RUN curl -L -O "http://nginx.org/download/nginx-$NGINX_VER.tar.gz" -RUN tar xzf "nginx-$NGINX_VER.tar.gz" - -# configure and build nginx -WORKDIR /src/nginx/nginx-"$NGINX_VER" -RUN ./configure --prefix=/usr/share/nginx \ - --sbin-path=/usr/sbin/nginx \ - --conf-path=/etc/nginx/nginx.conf \ - --error-log-path=/var/log/nginx/error.log \ - --http-log-path=/var/log/nginx/access.log \ - --pid-path=/run/nginx.pid \ - --lock-path=/run/lock/subsys/nginx \ - --http-client-body-temp-path=/tmp/nginx/client \ - --http-proxy-temp-path=/tmp/nginx/proxy \ - --user=www-data \ - --group=www-data \ - --with-threads \ - --with-file-aio \ - --with-pcre="/src/pcre/pcre-$PCRE_VER" \ - --with-pcre-jit \ - --with-http_addition_module \ - --without-http_fastcgi_module \ - --without-http_uwsgi_module \ - --without-http_scgi_module \ - --without-http_gzip_module \ - --without-select_module \ - --without-poll_module \ - --without-mail_pop3_module \ - --without-mail_imap_module \ - --without-mail_smtp_module \ - --with-cc-opt="-Wl,--gc-sections -static -static-libgcc -O2 -ffunction-sections -fdata-sections -fPIE -fstack-protector-all -D_FORTIFY_SOURCE=2 -Wformat -Werror=format-security" -ARG CORE_COUNT="1" -RUN make -j"$CORE_COUNT" -RUN make install - -FROM alpine:"$ALPINE_VER" - -# setup nginx folders and files -RUN adduser www-data -D -H -G www-data \ - && mkdir -p /tmp/nginx/ \ - && mkdir -p /var/log/nginx \ - && mkdir -p /var/www/html \ - && ln -sf /dev/stdout /var/log/nginx/access.log \ - && ln -sf /dev/stderr /var/log/nginx/error.log \ - && mkdir -p /etc/nginx \ - && chmod g+rwx /var/run /var/log/nginx /tmp/nginx - -# copy in default nginx configs -COPY conf/ etc/nginx/ - -# add nginx binary -COPY --from=builder /usr/sbin/nginx /usr/sbin/nginx - -EXPOSE 8080 -# configure CMD -CMD ["/usr/sbin/nginx","-g","daemon off;"] |