sharex-php-uploader/Dockerfile

19 lines
357 B
Docker
Raw Normal View History

2023-07-05 15:57:12 +00:00
FROM ubuntu:23.04
2023-07-04 15:32:18 +00:00
# Install dependencies
RUN apt update
2023-07-04 15:35:45 +00:00
RUN DEBIAN_FRONTEND=noninteractive \
2023-07-04 16:07:32 +00:00
apt install nginx php8.1 php8.1-fpm php8.1-gd -y
2023-07-04 15:32:18 +00:00
2023-07-05 16:19:18 +00:00
# Clean up
RUN apt clean
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"]