aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile7
1 files changed, 3 insertions, 4 deletions
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