chore: clean up scripts for internal godoc site that's no longer used (#2770)

This commit is contained in:
David Wahler 2022-07-01 10:55:05 -05:00 committed by GitHub
parent de1fc40000
commit 0dbfd265fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 20 deletions

View File

@ -1,3 +0,0 @@
Configuration for automatically building and hosting an internal godoc site.
This will become obsolete once we make the repo public and can use
https://pkg.go.dev/.

View File

@ -1,8 +0,0 @@
steps:
- name: gcr.io/cloud-builders/docker
args: ['build', '-t', 'gcr.io/coder-devrel/internal-docs', '-f', 'scripts/internal-docs/docker/Dockerfile', '.']
- name: gcr.io/cloud-builders/docker
args: ['push', 'gcr.io/coder-devrel/internal-docs']
- name: 'gcr.io/google.com/cloudsdktool/cloud-sdk'
entrypoint: gcloud
args: ['run', 'deploy', 'internal-docs', '--image', 'gcr.io/coder-devrel/internal-docs', '--region', 'us-central1']

View File

@ -1,9 +0,0 @@
FROM golang:1.18-alpine
RUN go install github.com/dwahler/go-tools/cmd/godoc@v0.1.1
WORKDIR /go/src/github.com/coder/coder
ADD . .
EXPOSE 6060
CMD godoc -http :6060