sharex-php-uploader/Dockerfile

49 lines
1.4 KiB
Docker
Raw Normal View History

# Stage 1: Build Nginx
FROM alpine:3.18.5 as builder
2023-07-04 15:32:18 +00:00
# Install build dependencies and required tools
RUN apk update && apk upgrade && \
2023-10-13 19:14:02 +00:00
apk add --no-cache build-base pcre-dev openssl-dev zlib-dev linux-headers
# Download and build the latest version of Nginx from source
WORKDIR /tmp
2023-10-26 11:25:21 +00:00
RUN wget https://nginx.org/download/nginx-1.25.3.tar.gz
RUN tar -xzvf nginx-1.25.3.tar.gz
WORKDIR /tmp/nginx-1.25.3
2023-10-13 18:45:43 +00:00
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/*
2023-07-05 16:19:18 +00:00
2023-07-04 15:32:18 +00:00
# Set up nginx
2023-07-04 15:46:10 +00:00
COPY ./docker/nginx.conf /etc/nginx/nginx.conf
2023-07-04 15:32:18 +00:00
2023-07-04 15:46:10 +00:00
# Setup scripts
2023-07-04 15:51:11 +00:00
COPY ./upload.php /tmp/upload.php
2023-07-04 15:46:10 +00:00
COPY ./docker/start.sh /start.sh
2024-01-11 05:44:41 +00:00
# Copy public directory
COPY ./public /tmp/public
2023-10-13 18:54:21 +00:00
# Stage 2: Create a smaller production image
FROM alpine:3.18.5
# Copy Nginx and PHP-FPM binaries and configurations from the builder stage
COPY --from=builder /usr/local/nginx /usr/local/nginx
2023-10-13 19:08:41 +00:00
COPY --from=builder /usr/local/sbin/nginx /usr/local/sbin/nginx
COPY --from=builder /etc/nginx /etc/nginx
COPY --from=builder /tmp/upload.php /tmp/upload.php
COPY --from=builder /start.sh /start.sh
2024-01-11 05:44:41 +00:00
COPY --from=builder /tmp/public /tmp/public
# Install runtime dependencies
RUN apk update && apk upgrade && \
2023-10-13 19:14:02 +00:00
apk add --no-cache php81 php81-fpm php81-gd pcre
# Cleanup unnecessary files
RUN rm -rf /var/cache/apk/*
2023-07-04 15:46:10 +00:00
# Start server
2023-07-07 23:18:05 +00:00
CMD ["sh", "/start.sh"]