Přidat Dockerfile
Build Nginx and PHP image / Build-Minecraft-Stats-Image (push) Has been cancelled Details

This commit is contained in:
Radim Lipovčan 2024-03-26 09:07:32 +01:00
parent 6a8d5ca17b
commit ac0adf6ad8
1 changed files with 7 additions and 0 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
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"]