mirror of
https://github.com/ProudMuBai/GoFilm.git
synced 2026-02-03 22:44:47 +08:00
17 lines
242 B
Docker
17 lines
242 B
Docker
FROM golang:1.20
|
|
|
|
ENV GO111MODULE=auto \
|
|
CGO_ENABLED=0 \
|
|
GOOS=linux \
|
|
GOARCH=amd64 \
|
|
GOPROXY=https://goproxy.cn,direct
|
|
|
|
MAINTAINER "bai"
|
|
|
|
WORKDIR /opt/server
|
|
|
|
ADD ./server /opt/server
|
|
|
|
RUN go build main.go
|
|
|
|
EXPOSE 3061 |