run the bat
docker-to-wsl.bat
then you can use the new distro (named "distro")
wsl -d distro
if you want a custom entrypoint (on wsl start) you can use /etc/wsl.conf to set a custom entry command
Example
RUN printf "[boot]\ncommand = /etc/entrypoint.sh" >> /etc/wsl.conf
RUN printf "#!/bin/sh\ntouch /root/booted" >> /etc/entrypoint.sh
RUN chmod +x /etc/entrypoint.sh