-
Question1st of all, niceGUI is in my opinion awesome! To my question: So I tried the development.dockerfile as a base, inspired by #2929 but the build fails with:
Now I am stuck trying to get niceGUI installed within a python slim image. I tried 3.8, 3.11 and 3.12. Thank you |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 3 replies
-
I am still struggeling, anyone here with suggestions on how get NiceGUI running on arm v7 |
Beta Was this translation helpful? Give feedback.
-
Hi @J0ergL, |
Beta Was this translation helpful? Give feedback.
-
With this line you can test if poetry installation works on ARMv7: docker run --rm -it python:3.8-slim bash -c "apt update && apt install curl build-essential -y && curl -sSL https://install.python-poetry.org | python3 -" |
Beta Was this translation helpful? Give feedback.
-
I decided to stop digging and use the ARM64 image. |
Beta Was this translation helpful? Give feedback.
The Docker container only switches to appuser in the entrypoint. You could replace the entrypoint, but thats not very secure. It's most recommended to just write your own Dockerfile to extend the base image. Something like this:
Build with
docker build -t nicegui-vim .
And run bash in the container with