diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 658f3f4d3d..b1f95f00a6 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -45,8 +45,6 @@ archives: # file name then additional logic to clean up older builds would be needed. name_template: 'databricks_cli_{{ if not .IsSnapshot }}{{ .Version }}_{{ end }}{{ .Os }}_{{ .Arch }}' -# TODO: Add some documentation / a readme to the docker directory on how to maintain this. - dockers: - id: arm64 goarch: arm64 diff --git a/docker/setup.sh b/docker/setup.sh index 03fe2c680a..3f6c09dc72 100755 --- a/docker/setup.sh +++ b/docker/setup.sh @@ -15,18 +15,3 @@ mv zip/terraform/terraform /app/bin/terraform TF_PROVIDER_NAME=terraform-provider-databricks_${DATABRICKS_TF_PROVIDER_VERSION}_linux_${ARCH}.zip mkdir -p /app/providers/registry.terraform.io/databricks/databricks wget https://github.com/databricks/terraform-provider-databricks/releases/download/v${DATABRICKS_TF_PROVIDER_VERSION}/${TF_PROVIDER_NAME} -O /app/providers/registry.terraform.io/databricks/databricks/${TF_PROVIDER_NAME} - - -# TODO: document both the interactive and the non interactive workflows for -# working with DABs with the docker container. Execing into the container -# allows for a better iteration loop - -# For the interactive devloop: -# docker run -it --entrypoint /bin/sh cli ... - -# For the non-interactive devloop: -# docker run cli ... - -# TODO: End to end test for this image? - -# TODO: Final sanity check that the docker image is indeed airgapped.