blob: ce3ae15bb4cab22edae95c2fb10a403c06e40688 (
plain)
1
2
3
4
5
6
7
8
9
|
FROM ghcr.io/steamcmd/steamcmd:debian-13
WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends \
nodejs \
&& rm -rf /var/lib/apt/lists/*
COPY entrypoint.mjs /
ENTRYPOINT [ "node", "/entrypoint.mjs" ]
|