is there a reference document for `dagster_cloud.y...
# dagster-plus
e
is there a reference document for
dagster_cloud.yaml
similar to https://docs.dagster.io/dagster-cloud/deployment/agents/amazon-ecs/configuration-reference#per-deployment-configuration for the
dagster.yaml
options when deploying to dagster cloud? We need to set the build directory and the Dockerfile separately
e
thanks!
doesn’t look like setting the dockerfile location separately is possible then 😞
d
You can set up the action so that the build part is fully handled by your own github action code though - and then just use our action to deploy an image once its built
For example:
Copy code
# Deploy built image to Dagster Cloud
      - name: Deploy to Dagster Cloud hybrid
        uses: dagster-io/dagster-cloud-action/actions/utils/deploy@v0.1
        with:
          dagster_cloud_api_token: ${{ secrets.DAGSTER_USER_TOKEN }}
          organization_id: kong
          deployment: prod-us-east-2
          location: ${{ toJson(matrix.location) }}
          image_tag: YOUR_IMAGE_TAG_GOES_HERE
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
(note the action has changed to
dagster-io/dagster-cloud-action/actions/utils/deploy
and the image tag is just passed in)
e
thanks, thats probably what we need to do