Closed mrunhap closed 3 weeks ago
@mrunhap Hello there! I'm here to assist you with any bugs, questions, or contributions you have. Let's tackle this together!
The issue you're encountering while trying to build the agenta-web
service using Docker Compose is due to a failure in the Docker build process. Specifically, the error message indicates that the COPY sentry.* .
command failed because no source files were specified. This suggests that the expected sentry
files are missing from the context being sent to the Docker daemon.
To resolve this, ensure that the sentry.*
files are present in the root directory of your project before running the Docker command. If these files are not needed, you can remove or comment out the COPY sentry.* .
line in the Dockerfile:
# COPY sentry.* .
Additionally, consider addressing the deprecation warning regarding the legacy builder by installing the buildx
component as recommended in the Docker documentation.
For reference, here is the relevant part of the Dockerfile
:
# used in cloud
COPY sentry.* .
Make sure that the sentry.*
files (e.g., sentry.config.js
, sentry.client.config.js
, etc.) are located in the same directory as your Dockerfile
or within the build context directory. If these files are missing, the COPY
command will fail [1][2][3].
To continue talking to Dosu, mention @dosu.
Hey @mrunhap , can you please confirm whether this issue is still open
Describe the bug I want start it in deployment mode and run the command
But agenta-web build failed:
To Reproduce Steps to reproduce the behavior: