pq-cli icon indicating copy to clipboard operation
pq-cli copied to clipboard

build and run progress quest from docker container

Open BnJam opened this issue 1 year ago • 2 comments

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

BnJam avatar Apr 25 '24 15:04 BnJam

Any chance to switch from pyenv to python:latest Docker image? This should significantly simplify the image definition.

rr- avatar Apr 26 '24 17:04 rr-

Any chance to switch from pyenv to python:latest Docker 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.

BnJam avatar May 29 '24 04:05 BnJam