Compare commits

..

No commits in common. "f9622e8081da467df9af0eab29647ac67286285e" and "3e0fc4fd5346f224716222b7ca3035d4d5bf1fe6" have entirely different histories.

2 changed files with 7 additions and 35 deletions

@ -1,21 +1,10 @@
# Stage 1: Build Nginx FROM alpine:3.18.2
FROM alpine:3.18.4 as builder
# Install build dependencies and required tools # Install dependencies
RUN apk update && apk upgrade && \ RUN apk update && \
apk add --no-cache php81 php81-fpm php81-gd build-base pcre-dev openssl-dev zlib-dev linux-headers apk upgrade && \
apk add --no-cache nginx php81 php81-fpm php81-gd && \
# Download and build the latest version of Nginx from source rm -rf /var/cache/apk/*
WORKDIR /tmp
RUN wget https://nginx.org/download/nginx-1.25.2.tar.gz
RUN tar -xzvf nginx-1.25.2.tar.gz
WORKDIR /tmp/nginx-1.25.2
RUN ./configure --prefix=/usr/local/nginx --sbin-path=/usr/local/sbin/nginx --conf-path=/etc/nginx/nginx.conf
RUN make
RUN make install
# Cleanup unnecessary files
RUN rm -rf /tmp/*
# Set up nginx # Set up nginx
COPY ./docker/nginx.conf /etc/nginx/nginx.conf COPY ./docker/nginx.conf /etc/nginx/nginx.conf
@ -24,22 +13,5 @@ COPY ./docker/nginx.conf /etc/nginx/nginx.conf
COPY ./upload.php /tmp/upload.php COPY ./upload.php /tmp/upload.php
COPY ./docker/start.sh /start.sh COPY ./docker/start.sh /start.sh
# Stage 2: Create a smaller image
FROM alpine:3.18.4
# Copy Nginx and PHP-FPM binaries and configurations from the builder stage
COPY --from=builder /usr/local/nginx /usr/local/nginx
COPY --from=builder /etc/nginx /etc/nginx
COPY --from=builder /etc/php81 /etc/php81
COPY --from=builder /tmp/upload.php /tmp/upload.php
COPY --from=builder /start.sh /start.sh
# Install runtime dependencies
RUN apk update && apk upgrade && \
apk add --no-cache php81 php81-fpm php81-gd
# Cleanup unnecessary files
RUN rm -rf /var/cache/apk/*
# Start server # Start server
CMD ["sh", "/start.sh"] CMD ["sh", "/start.sh"]

@ -41,7 +41,7 @@ function start() {
echo "Starting PHP & Nginx" echo "Starting PHP & Nginx"
php-fpm81 && php-fpm81 &&
chmod 777 /run/php/php.sock && chmod 777 /run/php/php.sock &&
/usr/local/sbin/nginx -g 'daemon off;' nginx -g 'daemon off;'
} }
# Start Nginx and retry if it fails # Start Nginx and retry if it fails