| # debian.sh --arch 'amd64' out/ 'bookworm' '@1775433600' |
| WORKDIR /app |
| RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates passwd util-linux lib32gcc-s1 && rm -rf /var/lib/apt/lists/* # buildkit |
| COPY /app/bin/steam /app/bin/steam # buildkit |
| RUN /bin/sh -c chmod 755 /app/bin/steam/steamcmd.sh && chmod 755 /app/bin/steam/linux32/steamcmd # buildkit |
| COPY --chmod=755 entrypoint.sh /usr/local/bin/entrypoint.sh # buildkit |
| ENTRYPOINT ["/usr/local/bin/entrypoint.sh"] |
| CMD [] |