Aktualizovat Dockerfile
Some checks failed
Build Minecraft Stats Ownercz Image / Build-Minecraft-Stats-Image (push) Has been cancelled

This commit is contained in:
Radim Lipovčan 2024-03-12 18:14:28 +01:00
parent 7a4ef61009
commit 5f119eb664

View File

@ -6,6 +6,7 @@ RUN apt-get update; apt-get install -y nginx java-17-amazon-corretto-jdk supervi
COPY MinecraftStatsCLI.zip /source/MinecraftStatsCLI.zip
COPY MinecraftStatsWeb.zip /source/MinecraftStatsWeb.zip
COPY nginx.conf /opt/nginx.conf
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
RUN unzip /source/MinecraftStatsCLI.zip -d /opt/mcstatscli/
RUN unzip /source/MinecraftStatsWeb.zip -d /opt/mcstatsweb/
CMD ["nginx", "-c","/opt/nginx.conf","-g", "daemon off;", "&&","java","-jar","/opt/mcstatscli/MinecraftStatsCLI.jar"]
CMD ["supervisord", "-c", "/etc/supervisor/conf.d/supervisord.conf"]