Closed sdcampbell closed 1 year ago
ERROR: Could not open requirements file: [Errno 2] No such file or directory: 'requirements.txt'
I'll work with that later today and see if I can fix it.
You need to run
git pull
git checkout develop
docker build -t pywerview .
Yes, that error was my fault. Your Dockerfile worked perfectly.
No problem! Closing the PR now.
:sunflower:
I had some trial and error when building from source so I created this Dockerfile to make it easy. All it takes to build the Docker image is
docker build -t pywerview .
To run it:
docker run --rm -it -v /data:$(pwd) pywerview
. Any output saved to /data will land in the current working directory.Additionally, it would greatly simplify instructions to build from source if you updated the wiki with the
RUN
line, not including the word RUN.