From b2fc0f661ce4bd690d8fd364843bda4d0b111c2f Mon Sep 17 00:00:00 2001 From: JeremyStarTM Date: Thu, 30 May 2024 19:12:55 +0200 Subject: [PATCH] Fix path cuz stupid --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 60dee68..b167274 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,7 +5,7 @@ ############################# FROM ghcr.io/archlinux/archlinux:latest AS builder -RUN sed "s/SigLevel\ \ \ \ \=\ Required\ DatabaseOptional/SigLevel\ \=\ Optional/g" -i pacman.conf +RUN sed "s/SigLevel\ \ \ \ \=\ Required\ DatabaseOptional/SigLevel\ \=\ Optional/g" -i /etc/pacman.conf RUN nice -20 pacman -Syu --noconfirm go base-devel git RUN mkdir /builder /builder/bin RUN git clone --depth=1 https://github.com/gorcon/rcon-cli /builder/rcon-cli @@ -26,7 +26,7 @@ LABEL org.opencontainers.image.documentation="https://git.staropensource.de/Jere LABEL org.opencontainers.image.source="https://git.staropensource.de/JeremyStarTM/MCServerDocker" LABEL org.opencontainers.image.licenses="GPL-3.0-only" -RUN sed "s/SigLevel\ \ \ \ \=\ Required\ DatabaseOptional/SigLevel\ \=\ Optional/g" -i pacman.conf +RUN sed "s/SigLevel\ \ \ \ \=\ Required\ DatabaseOptional/SigLevel\ \=\ Optional/g" -i /etc/pacman.conf RUN nice -20 pacman -Syu --noconfirm jre17-openjdk jre11-openjdk jre8-openjdk RUN mkdir /app ADD entrypoint.sh /app/entrypoint.sh