sharex-php-uploader/Dockerfile

19 lines
357 B
Docker
Raw Normal View History

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