From fb9210408c1d8792600410a08727b41404f6c418 Mon Sep 17 00:00:00 2001 From: "Alex Pooley (@zuedev)" Date: Fri, 17 Apr 2026 21:42:43 +0100 Subject: use node instead of bash --- Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile index 77ecf3d..ce3ae15 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,9 +2,8 @@ FROM ghcr.io/steamcmd/steamcmd:debian-13 WORKDIR /app RUN apt-get update && apt-get install -y --no-install-recommends \ - jq \ + nodejs \ && rm -rf /var/lib/apt/lists/* -COPY entrypoint.bash / -RUN chmod +x /entrypoint.bash -ENTRYPOINT [ "/entrypoint.bash" ] \ No newline at end of file +COPY entrypoint.mjs / +ENTRYPOINT [ "node", "/entrypoint.mjs" ] \ No newline at end of file -- cgit v1.2.3