sharex-php-uploader/Dockerfile

16 lines
318 B
Docker
Raw Normal View History

2023-07-04 15:32:18 +00:00
FROM ubuntu:22.04
# Install dependencies
RUN apt update
2023-07-04 15:35:45 +00:00
RUN DEBIAN_FRONTEND=noninteractive \
apt install nginx php-fpm php-gd -y
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"]