Docker-Image-Nginx-PHP/Dockerfile
Radim Lipovčan ac0adf6ad8
Some checks failed
Build Nginx and PHP image / Build-Minecraft-Stats-Image (push) Has been cancelled
Přidat Dockerfile
2024-03-26 09:07:32 +01:00

8 lines
261 B
Docker

FROM ubuntu:22.04
RUN apt-get update; apt-get install -y wget gpg unzip
RUN apt-get update; apt-get install -y nginx supervisor
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
CMD ["supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]