Bun version error in docker-example Dockerfile
Describe the bug Recently version of bun has been upgraded to 0.6.10, which is not supported by Pynecone. While Dockerfile in docker-example directly use the official shell to download and install the latest version. Causes the following error when init app:
ββββββββββββββββββββββββββββ Initializing summitlab ββββββββββββββββββββββββββββ Bun version 0.6.10 is not supported by Pynecone. Please change your to bun version to be between 0.5.9 and 0.6.9.
To Reproduce Steps to reproduce the behavior:
- Code/Link to Repo:
Expected behavior A clear and concise description of what you expected to happen.
Screenshots If applicable, add screenshots to help explain your problem.
** Specifics (please complete the following information):**
- Python Version:
- Reflex Version:
- OS:
- Browser (Optional):
Additional context
To get rid of this, add a positional argu to the bun shell like this to specify the version without modifying bun shell:
curl -fsSL https://bun.sh/install | bash -- bun-v0.6.9