Containers not showing latest changes

I have added a new block and changes are not being shown in the UI, I suspect my changes are not reflected in the container because I do not see the complete folder structure inside apps/src. Also what is the purpose of yaml file named docker-compose.build.yml do we need to run it at any stage ?
7 Replies
zeehasham
zeehasham5mo ago
I think I would have to rebuild the docker file using this docker-compose.build yaml file and use those images ?
zeehasham
zeehasham5mo ago
I tried to build but everytime image building process gets broken at this step. I even created a standalone folder manually but still same. What am I missing ? @Baptiste any guidance pls
No description
zeehasham
zeehasham5mo ago
I have following under .next
root@debian-s-2vcpu-4gb-amd-sfo3-01:~/latest_typebot/apps/builder/.next# ls
build-manifest.json cache package.json react-loadable-manifest.json server static trace
root@debian-s-2vcpu-4gb-amd-sfo3-01:~/latest_typebot/apps/builder/.next# ls
build-manifest.json cache package.json react-loadable-manifest.json server static trace
Unknown User
Unknown User5mo ago
Message Not Public
Sign In & Join Server To View
zeehasham
zeehasham5mo ago
I am trying to compile dockerfile to have my changes embed
Unknown User
Unknown User5mo ago
Message Not Public
Sign In & Join Server To View
Baptiste
Baptiste5mo ago
You'd have to build new docker images, yes if you self-host using Docker To build the builder: docker build --build-arg="SCOPE=builder" . For the viewer: docker build --build-arg="SCOPE=viewer" .