In this post, we will scaffold a simple Express project using Bun, and then deploy it to Render using Docker. You’ll also get to see how much easie...
For further actions, you may consider blocking this person and/or reporting abuse
Hey, Love the post
i have an error when setting up docker
error: EACCES reading "/usr/src/app/node_modules/proxy-from-env/index.js"Same here! Have you found out the problem?
This is a permissions issue where files are not owned by user
bun.It can be fixed by either:
1) set all the files to be owned by user bun. Place following just above line with
USER bun2) or by removing this line from docker file.
USER bunThis will cause bun to run as root inside the container.