The windows packaging is now Docker based. In order to run Docker as a non-root user, it is helpful to create a Unix docker group. Steps (see also the more detailed discussion here):
- Create the docker group:
sudo groupadd docker
- Add the current user to the group:
sudo usermod -aG docker $USER
- Then log out and then log back in for the changes to take effect, or run the following command:
newgrp docker
- Verify that everything works by running the following test:
docker run hello-world
In your console window, go to the root of the jpylyzer directory. Then run:
./docker-package-win.sh
The (zipped) binaries can be found in the dist
directory.