KillingFloor2Docker/Dockerfile
Jack Hadrill 049c5df9e3
All checks were successful
continuous-integration/drone/push Build is passing
Install, patch config files, and run.
2022-07-31 19:10:28 +01:00

9 lines
179 B
Docker

FROM steamcmd/steamcmd:ubuntu
RUN apt-get update && apt-get install -y libcurl4 && apt-get clean
WORKDIR /game
COPY start.sh /start.sh
ENTRYPOINT [ "bash" ]
CMD [ "/start.sh" ]