diff options
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -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 |
