QuakeLiveDocker/Dockerfile
Jack Hadrill a10322727e
All checks were successful
continuous-integration/drone/push Build is passing
Merge branch 'main' of https://git.jacknet.io/jackhadrill/QuakeLiveDocker
2022-07-28 00:56:36 +01:00

10 lines
199 B
Docker

FROM steamcmd/steamcmd:ubuntu
WORKDIR /game
RUN steamcmd +login anonymous +force_install_dir /game +app_update 349090 validate +exit
COPY start.sh .
ENTRYPOINT [ "bash" ]
CMD [ "/game/start.sh" ]