davedotluebke / old-skool-text-game

Coding project used to learn Python
5 stars 4 forks source link

Create a docker container for the game #160

Open davedotluebke opened 4 years ago

davedotluebke commented 4 years ago

We're getting a fairly large collection of Python dependencies, and we've occasionally hesitated to add some useful module because of the extra dependency that it would introduce. This is what docker containers are for: you can put everything into a container, then somebody just runs it with docker run <container>. Configuring docker isn't trivial the first time but then you never have to deal with it again, and it can pull the container down fresh every time - so we can update it with point releases or bug fixes.