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
|
|
|
|
COPY ./docker/start.sh /start.sh
|
|
|
|
|
|
|
|
# Start server
|
|
|
|
CMD ["bash", "/start.sh"]
|