Can't run demo when installed fenicsx on win with docker

Hi
Today I installed fenicsx on my laptop.

In window power shell I did:
docker run -it --name myfenicsx -v "${pwd}:/home/shared" -w /home/shared dolfinx/dev-env:stable
I used VS code, I download the demo_poisson.py here and run it

root@5abce66e2ff1:/home/shared/test# python3 demo_poisson.py
Traceback (most recent call last):
  File "/home/shared/test/demo_poisson.py", line 73, in <module>
    import ufl
ModuleNotFoundError: No module named 'ufl'
root@5abce66e2ff1:/home/shared/test#

Can someone help? I don’t know what is going on.

The image you want to run is dolfinx/dolfinx, not dolfinx/dev-env. The latter contains an environment with all dependencies, but you have to install dolfinx yourself, which is probably not what you want to do.

dolfinx/dolfinx:v0.8.0 This is working for me