diff --git a/scripts/windows/install.bat b/scripts/windows/install.bat old mode 100644 new mode 100755 index a2126bb..5b0057b --- a/scripts/windows/install.bat +++ b/scripts/windows/install.bat @@ -5,8 +5,8 @@ set PWS=powershell.exe -ExecutionPolicy Bypass -NoLogo -NoProfile docker info || echo. && echo "Please make sure that Docker is installed and running" && timeout /t 10 && exit docker rmi cytools || echo "Old CYTools image does not exist or cannot be deleted" -docker pull python:3.11-bullseye -docker build --no-cache --force-rm -t cytools --build-arg USERNAME=root --build-arg USERID=0 --build-arg ARCH=amd64 --build-arg AARCH=x86_64 --build-arg VIRTUAL_ENV=/opt/cytools/cytools-venv/ --build-arg ALLOW_ROOT_ARG="--allow-root" --build-arg PORT_ARG=2875 ../../ || echo. && echo "There was an error while building the image. Please let the developers know, and try using a stable version of the package." && timeout /t 10 && exit +docker pull ubuntu:noble +docker build --no-cache --force-rm -t cytools --build-arg UNAME=root --build-arg UID=0 --build-arg ARCH=amd64 --build-arg AARCH=x86_64 --build-arg VIRTUAL_ENV=/opt/cytools/cytools-venv/ --build-arg ALLOW_ROOT_ARG="--allow-root" --build-arg PORT_ARG=2875 ../../ || echo. && echo "There was an error while building the image. Please let the developers know, and try using a stable version of the package." && timeout /t 10 && exit set TARGET="%appdata%\CYTools\cytools.bat" set TARGETU="%appdata%\CYTools\uninstall.bat"