diff --git a/Dockerfile b/Dockerfile index 2b343c1..cded3c6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,5 +5,5 @@ echo "deb [signed-by=/usr/share/keyrings/corretto-keyring.gpg] https://apt.corre RUN apt-get update; apt-get install -y java-17-amazon-corretto-jdk COPY MinecraftStatsCLI.zip /source/MinecraftStatsCLI.zip COPY MinecraftStatsWeb.zip /source/MinecraftStatsWeb.zip -RUN unzip /source/MinecraftStatsCLI.zip /opt/mcstatscli/ -RUN unzip /source/MinecraftStatsWeb.zip /opt/mcstatsweb/ \ No newline at end of file +RUN unzip /source/MinecraftStatsCLI.zip -d /opt/mcstatscli/ +RUN unzip /source/MinecraftStatsWeb.zip -d /opt/mcstatsweb/ \ No newline at end of file