build and run progress quest from docker container
Created a Makefile and Containerfile to build an Image for running in a container.
Note
Enable save persistence by editing the save path so it can save to a mounted volume
Any chance to switch from pyenv to python:latest Docker image? This should significantly simplify the image definition.
Any chance to switch from pyenv to
python:latestDocker image? This should significantly simplify the image definition.
Sorry for the late response!
Using python:latest with specific package versions is risky in that they will eventually break if not maintained. It's better to update the packages and fix any breaking changes in the code and declare the version of Python in the dockerfile that was used. This lets others who wish to use the application to run as-is in a working environment without having to make those changes themselves.