You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
238 B
14 lines
238 B
# 使用最新的golang作为母镜像
|
|
FROM golang:latest
|
|
|
|
# 维护者信息
|
|
MAINTAINER eyeblue "eyebluecn@126.com"
|
|
|
|
WORKDIR $GOPATH/src/hellodocker
|
|
ADD . $GOPATH/src/hellodocker
|
|
RUN go build .
|
|
|
|
|
|
EXPOSE 8080
|
|
|
|
ENTRYPOINT ["./hellodocker"]
|
|
|