├── .gitignore ├── Dockerfile ├── README.md ├── chroot-files ├── brewmaster ├── copy │ └── postinstall.sh └── valve-archive-keyring.gpg ├── setup-chroot.sh └── start-container.sh /.gitignore: -------------------------------------------------------------------------------- 1 | brewmaster 2 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkwouter/steamos-container-creator/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkwouter/steamos-container-creator/HEAD/README.md -------------------------------------------------------------------------------- /chroot-files/brewmaster: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkwouter/steamos-container-creator/HEAD/chroot-files/brewmaster -------------------------------------------------------------------------------- /chroot-files/copy/postinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkwouter/steamos-container-creator/HEAD/chroot-files/copy/postinstall.sh -------------------------------------------------------------------------------- /chroot-files/valve-archive-keyring.gpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkwouter/steamos-container-creator/HEAD/chroot-files/valve-archive-keyring.gpg -------------------------------------------------------------------------------- /setup-chroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkwouter/steamos-container-creator/HEAD/setup-chroot.sh -------------------------------------------------------------------------------- /start-container.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sharkwouter/steamos-container-creator/HEAD/start-container.sh --------------------------------------------------------------------------------