From 3a7743ce362f77de3ec6143d0803d24805bda772 Mon Sep 17 00:00:00 2001 From: mariusraupach Date: Tue, 7 Jan 2025 09:53:53 +0100 Subject: [PATCH] update Dockerfile --- Dockerfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5fc6cff..702f1df 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,8 @@ FROM cm2network/steamcmd USER root +WORKDIR / + RUN apt-get update && \ apt-get install -y libatomic1 \ libpulse0 \ @@ -11,7 +13,7 @@ RUN apt-get update && \ COPY entrypoint.sh . -RUN chmod +x /entrypoint.sh +RUN chmod +x entrypoint.sh USER steam @@ -28,4 +30,4 @@ WORKDIR / EXPOSE 2456-2458/udp -ENTRYPOINT ["./entrypoint.sh"] \ No newline at end of file +ENTRYPOINT ["entrypoint.sh"] \ No newline at end of file