Update depends #8

Merged
Fascinated merged 5 commits from development into master 2023-10-13 18:51:48 +00:00
Showing only changes of commit fd60603728 - Show all commits

@ -1,10 +1,21 @@
FROM alpine:3.18.4 FROM alpine:3.18.4
# Install dependencies # Install build dependencies and required tools
RUN apk update && \ RUN apk update && apk upgrade && \
apk upgrade && \ apk add --no-cache php81 php81-fpm php81-gd build-base pcre-dev openssl-dev zlib-dev linux-headers
apk add --no-cache nginx php81 php81-fpm php81-gd && \
rm -rf /var/cache/apk/* # Download and build the latest version of Nginx from source
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
RUN make
RUN make install
# Cleanup unnecessary files
RUN rm -rf /tmp/*
RUN rm -rf /var/cache/apk/*
# Set up nginx # Set up nginx
COPY ./docker/nginx.conf /etc/nginx/nginx.conf COPY ./docker/nginx.conf /etc/nginx/nginx.conf