Hello. I am recently experiencing an issue with d...
# ask-community
d
Hello. I am recently experiencing an issue with dagster-cloud-actions in GitHub. I did not change my code, but now I am experiencing an error in dagster-io/dagster-cloud-action/actions/serverless_branch_deploy@v0.1.27
Copy code
Dockerfile:31
--------------------
  29 |     
  30 |     # Make sure dagster-cloud is installed. Fail early here if not.
  31 | >>> RUN dagster-cloud --version
  32 |     
--------------------
ERROR: failed to solve: process "/bin/sh -c dagster-cloud --version" did not complete successfully: exit code: 1
Error: buildx failed with: ERROR: failed to solve: process "/bin/sh -c dagster-cloud --version" did not complete successfully: exit code: 1
I double checked my setup.py in the previous step and confirmed that dagster-cloud is installed.
Copy code
#10 [4/9] RUN if [ -f "setup.py" ]; then         pip install .;     fi
#10 1.540 Processing /
#10 1.542   Preparing metadata (setup.py): started
#10 1.874   Preparing metadata (setup.py): finished with status 'done'
#10 2.204 Collecting dagster==1.3.7
#10 2.264   Downloading dagster-1.3.7-py3-none-any.whl (1.2 MB)
#10 2.313      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.2/1.2 MB 27.2 MB/s eta 0:00:00
#10 2.424 Collecting dagster-cloud==1.3.7
#10 2.441   Downloading dagster_cloud-1.3.7-py3-none-any.whl (123 kB)
#10 2.448      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 123.4/123.4 kB 37.7 MB/s eta 0:00:00
#10 2.649 Collecting dagit==1.3.7
#10 2.662   Downloading dagit-1.3.7-py3-none-any.whl (9.8 MB)
#10 2.757      ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 9.8/9.8 MB 108.2 MB/s eta 0:00:00
Is there anything you can think of that might be causing this error? Thank you.