diff options
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..77ecf3d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,10 @@ +FROM ghcr.io/steamcmd/steamcmd:debian-13 +WORKDIR /app + +RUN apt-get update && apt-get install -y --no-install-recommends \ + jq \ + && rm -rf /var/lib/apt/lists/* + +COPY entrypoint.bash / +RUN chmod +x /entrypoint.bash +ENTRYPOINT [ "/entrypoint.bash" ]
\ No newline at end of file |
