sharex-php-uploader/Dockerfile

17 lines
346 B
Docker
Raw Normal View History

2023-07-07 23:08:36 +00:00
FROM alpine:3.18.2
2023-07-04 15:32:18 +00:00
# Install dependencies
2023-07-07 23:08:36 +00:00
RUN apk update && \
apk upgrade && \
2023-07-07 23:11:43 +00:00
apk add --no-cache nginx php php-fpm && \
2023-07-07 23:08:36 +00:00
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
CMD ["bash", "/start.sh"]