reflex icon indicating copy to clipboard operation
reflex copied to clipboard

Bun version error in docker-example Dockerfile

Open evandeng2009 opened this issue 2 years ago β€’ 0 comments

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

evandeng2009 avatar Jun 27 '23 05:06 evandeng2009