sharex-php-uploader/Dockerfile

17 lines
346 B
Docker
Raw Normal View History

2023-07-08 00:08:36 +01:00
FROM alpine:3.18.2
2023-07-04 16:32:18 +01:00
# Install dependencies
2023-07-08 00:08:36 +01:00
RUN apk update && \
apk upgrade && \
2023-07-08 00:11:43 +01:00
apk add --no-cache nginx php php-fpm && \
2023-07-08 00:08:36 +01:00
rm -rf /var/cache/apk/*
2023-07-05 17:19:18 +01:00
2023-07-04 16:32:18 +01:00
# Set up nginx
2023-07-04 16:46:10 +01:00
COPY ./docker/nginx.conf /etc/nginx/nginx.conf
2023-07-04 16:32:18 +01:00
2023-07-04 16:46:10 +01:00
# Setup scripts
2023-07-04 16:51:11 +01:00
COPY ./upload.php /tmp/upload.php
2023-07-04 16:46:10 +01:00
COPY ./docker/start.sh /start.sh
# Start server
CMD ["bash", "/start.sh"]