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