Implementation of two basic images for Docker deployment of Go

Implementation of two basic images for Docker deployment of Go

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 .
  • The golang:latest compilation process actually builds a go development environment in the container.
  • This source image package is about 800M, which is relatively large.

2. alpine:latest base image

  1. The general process of using this image is to package the go program into a binary file on the Linux machine, then drop it into the apine environment and execute the compiled file.
  2. By default, Go's runtime environment variable CGO_ENABLED=1, which means cgo is started by default, allowing you to call C code from Go code. CGO can be disabled by setting CGO_ENABLED=0. So you need to execute: CGO_ENABLED=0 go build .
  3. This base image is only 13M in size, which is very small.
#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:
  • Methods and steps for deploying go projects based on Docker images

<<:  Vue implements the magnifying glass effect of tab switching

>>:  Vue Basics Introduction: Vuex Installation and Use

Recommend

Vue implements multiple selections in the bottom pop-up window

This article example shares the specific code of ...

How to change MySQL character set utf8 to utf8mb4

For MySQL 5.5, if the character set is not set, t...

UTF-8 and GB2312 web encoding

Recently, many students have asked me about web p...

HTML symbol to entity algorithm challenge

challenge: Converts the characters &, <, &...

VMware installation of Centos8 system tutorial diagram (Chinese graphical mode)

Table of contents 1. Software and system image 2....

A complete list of common Linux system commands for beginners

Learning Linux commands is the biggest obstacle f...

Comparing Node.js and Deno

Table of contents Preface What is Deno? Compariso...

The most commonly used HTML escape sequence

In HTML, <, >, &, etc. have special mean...

CSS syntax for table borders

<br /> CSS syntax for table borders The spec...

Use CSS content attr to achieve mouse hover prompt (tooltip) effect

Why do we achieve this effect? ​​In fact, this ef...

How to implement scheduled automatic backup of MySQL under CentOS7

The happiest thing that happens in a production e...

Installation tutorial of mysql5.7.21 decompression version under win10

Install the unzipped version of Mysql under win10...

Summary of all HTML interview questions

1. The role of doctype, the difference between st...

Let's talk about the issue of passing parameters to React onClick

Background In a list like the one below, clicking...