Spooky behaviour while deploying in production
Hi everyone, I'm having a hard time to deploy solid start.
I'm using docker on a VPS, and from one deployment to another, the bundled assets are sometimes corrupted. I noticed two strange behaviours so far:
1. Some bundled assets seems incomplete
This is an error I get when visiting a broken page:
And indeed this is the end of the file:
Literally closing on
"
2. Some link are strangely leading to other page content :
If I visit the link /foo
, it shows me the content of /bar
.
I can re-run the deploy several time, and at some point it works.. ๐
Here is the script I use:
10 Replies
I would love to share a reproduction but this is a private project so I cannot share it publicly. However I can add some individuals from the core team if this is a legit concern.
Any ideas how I can try to figure out what is happening?
The closest issue related to bundling issue is:
https://github.com/solidjs/solid-start/issues/1570
GitHub
[Bug?]: Wrong server function called due to incorrect handling of f...
Duplicates I have searched the existing issues Latest version I have tested the latest version Current behavior ๐ฏ With a nested structure for server functions, the hashing of the files might have a...
But I'm unsure is this is related or not.
@jayson.kt I'm sorry for the direct ping, but as the author of the issue, did you find any additional explanations that could help me in my current situation?
This other issue also describe my second point:
https://github.com/nksaraf/vinxi/issues/326
@lominming I'm as well sorry for the direct ping, but did you find out a way to resolve your issue?
Can you share your package.json and app.config.ts and your dockerfile / docker-compose
Or maybe create a minimal reproduction with a fresh install on a separate repository?
package.json
app.config.ts
Dockerfile
compose.yml
I will certainly try to replicate this issue in a minimal reproduction project. However the fact that this is "self-healing" after
n
retries is.. troublesome.At first glance: BUN
Have you tried to use a node image instead?
Oh, are you implying bun is not yet supported? I was not aware of that!
I also had problems getting bun to run in docker when I was using nextjs
mmh, i guess switching from bun to node should be as transparent as switching from node to bun.
is there an impact I'm unaware of except the performance if switching to node?
first check if it works
if it works non of this matter
if it works after some build, maybe it is something with docker.
can you build without all the docker wrappers?