sharex-php-uploader/Dockerfile

28 lines
795 B
Docker
Raw Normal View History

2023-10-13 18:32:09 +00:00
FROM alpine:3.18.4
2023-07-04 15:32:18 +00:00
# Install build dependencies and required tools
RUN apk update && apk upgrade && \
apk add --no-cache php81 php81-fpm php81-gd build-base pcre-dev openssl-dev zlib-dev linux-headers
# 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
2023-10-13 18:44:24 +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/*
RUN rm -rf /var/cache/apk/*
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
# Start server
2023-07-07 23:18:05 +00:00
CMD ["sh", "/start.sh"]