diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 06acfe6..4f1b696 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -52,7 +52,7 @@ ARG GO_TOOLS_WITH_MODULES="\ RUN (echo "${GO_TOOLS_WITH_MODULES}" | xargs -n 1 go get )2>&1 \ # golangci-lint - && curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b /usr/local/bin 2>&1 \ + && curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b /usr/local/bin 2>&1 # [Optional] Uncomment the next line to use go get to install anything else you need # RUN go get -x # [Optional] Uncomment this section to install additional OS packages. diff --git a/server.go b/server.go index 376c8db..28dbdb4 100644 --- a/server.go +++ b/server.go @@ -18,7 +18,7 @@ func handle(w http.ResponseWriter, r *http.Request) { } func main() { - portNumber := "5000" + portNumber := "9000" http.HandleFunc("/", handle) fmt.Println("Server listening on port ", portNumber) http.ListenAndServe(":"+portNumber, nil)