Revision e9558dc11b31b908f3af142e403d33e91d417b8a authored by Albert Tian Chen on 24 January 2021, 10:43:42 UTC, committed by Albert Tian Chen on 24 January 2021, 10:43:42 UTC
1 parent 86cf54a
Raw File
cloudbuild_genbank.yaml
# Instructions: https://cloud.google.com/cloud-build/docs/building/build-containers#yaml
steps:
  - name: "gcr.io/cloud-builders/docker"
    args:
      [
        "build",
        "-t",
        "gcr.io/$PROJECT_ID/cg-genbank:${TAG_NAME}",
        "-f",
        "build/genbank.Dockerfile",
        ".",
      ]

images: ["gcr.io/$PROJECT_ID/cg-genbank:${TAG_NAME}"]
back to top