diff --git a/Dockerfile b/Dockerfile index cbcaed738..986aa0300 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ ENV NODE_ENV=production RUN cd /static && npm i && npm run build-docs-only # Stage 3: Build web API -FROM openapitools/openapi-generator-cli as api-builder +FROM openapitools/openapi-generator-cli as web-api-builder COPY ./schema.yml /local/schema.yml diff --git a/cmd/server/main.go b/cmd/server/main.go index 396ca0149..0119a5fe3 100644 --- a/cmd/server/main.go +++ b/cmd/server/main.go @@ -37,7 +37,7 @@ func main() { ex := common.Init() defer common.Defer() - u, _ := url.Parse("http://localhost:8000") + // u, _ := url.Parse("http://localhost:8000") g := gounicorn.NewGoUnicorn() ws := web.NewWebServer()