1. golang:latest base image mkdir gotest touch main.go touch Dockerfile 1. Example code package main import ( "fmt" "log" "net/http" ) func main() { http.HandleFunc("/", func(writer http.ResponseWriter, request *http.Request) { fmt.Fprint(writer, "Hello World") }) fmt.Println("3000!!") log.Fatal(http.ListenAndServe(":3000", nil)) } 2. Dockerfile configuration #Source image FROM golang:latest #Set the working directory WORKDIR $GOPATH/src/github.com/gotest #Add the server's go project code to the docker container ADD . $GOPATH/src/github.com/gotest #go build executable file RUN go build . #Expose port EXPOSE 3000 #Finally run the docker command ENTRYPOINT ["./gotest"] 3. Packaging the image docker build -t gotest .
2. alpine:latest base image
#Source image FROM alpine:latest #Set the working directory WORKDIR $GOPATH/src/github.com/common #Add the server's go project code to the docker container ADD . $GOPATH/src/github.com/common #Expose port EXPOSE 3002 #Finally run the docker command ENTRYPOINT ["./common"] Packaging image docker build -t common . This is the end of this article about the implementation of two basic images for Docker deployment of Go. For more relevant content about Docker deployment of Go images, please search for previous articles on 123WORDPRESS.COM or continue to browse the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Vue implements the magnifying glass effect of tab switching
>>: Vue Basics Introduction: Vuex Installation and Use
This article example shares the specific code of ...
For MySQL 5.5, if the character set is not set, t...
Recently, many students have asked me about web p...
challenge: Converts the characters &, <, &...
Table of contents 1. Software and system image 2....
Learning Linux commands is the biggest obstacle f...
Table of contents Preface What is Deno? Compariso...
In HTML, <, >, &, etc. have special mean...
<br /> CSS syntax for table borders The spec...
Why do we achieve this effect? In fact, this ef...
The happiest thing that happens in a production e...
<br />Question: Why is it not recommended to...
Install the unzipped version of Mysql under win10...
1. The role of doctype, the difference between st...
Background In a list like the one below, clicking...