Compare commits
5 Commits
renovate/c
...
master
Author | SHA1 | Date | |
---|---|---|---|
08f738e555 | |||
949798a17f | |||
49273340e3 | |||
29ba4a5927 | |||
f7fd878df8 |
17
Dockerfile
17
Dockerfile
@ -16,8 +16,6 @@ RUN git clone https://github.com/aperezdc/ngx-fancyindex.git ngx-fancyindex
|
|||||||
RUN cd nginx-* && ./configure --prefix=/usr/local/nginx \
|
RUN cd nginx-* && ./configure --prefix=/usr/local/nginx \
|
||||||
--sbin-path=/usr/local/sbin/nginx \
|
--sbin-path=/usr/local/sbin/nginx \
|
||||||
--conf-path=/etc/nginx/nginx.conf \
|
--conf-path=/etc/nginx/nginx.conf \
|
||||||
--error-log-path=/var/log/nginx/error.log \
|
|
||||||
--http-log-path=/var/log/nginx/access.log \
|
|
||||||
--with-http_ssl_module \
|
--with-http_ssl_module \
|
||||||
--add-module=../ngx-fancyindex \
|
--add-module=../ngx-fancyindex \
|
||||||
&& make \
|
&& make \
|
||||||
@ -26,6 +24,21 @@ RUN cd nginx-* && ./configure --prefix=/usr/local/nginx \
|
|||||||
# Stage 2: Create a minimal runtime image
|
# Stage 2: Create a minimal runtime image
|
||||||
FROM alpine:latest
|
FROM alpine:latest
|
||||||
|
|
||||||
|
# Install runtime dependencies
|
||||||
|
RUN apk update && apk upgrade
|
||||||
|
RUN apk add pcre pcre-dev
|
||||||
|
|
||||||
|
|
||||||
|
RUN mkdir /usr/local/nginx
|
||||||
|
RUN mkdir /usr/local/nginx/logs
|
||||||
|
RUN mkdir /var/log/nginx
|
||||||
|
|
||||||
|
RUN touch /usr/local/nginx/logs/error.log
|
||||||
|
RUN touch /usr/local/nginx/logs/access.log
|
||||||
|
|
||||||
|
RUN chmod -R 770 /usr/local/nginx
|
||||||
|
RUN chmod -R 770 /var/log/nginx
|
||||||
|
|
||||||
# Copy Nginx binary and configuration from the build stage
|
# Copy Nginx binary and configuration from the build stage
|
||||||
COPY --from=build /usr/local/sbin/nginx /usr/local/sbin/nginx
|
COPY --from=build /usr/local/sbin/nginx /usr/local/sbin/nginx
|
||||||
COPY --from=build /etc/nginx /etc/nginx
|
COPY --from=build /etc/nginx /etc/nginx
|
||||||
|
Loading…
Reference in New Issue
Block a user