mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 18:51:03 +01:00
12 lines
303 B
Docker
12 lines
303 B
Docker
|
FROM golang:1.8.3-alpine
|
||
|
|
||
|
RUN apk update && apk upgrade && apk add --no-cache bash git
|
||
|
RUN go get github.com/iris-contrib/cloud-native-go
|
||
|
|
||
|
ENV SOURCES /go/src/github.com/iris-contrib/cloud-native-go
|
||
|
# COPY . ${SOURCES}
|
||
|
|
||
|
RUN cd ${SOURCES} $$ CGO_ENABLED=0 go build
|
||
|
|
||
|
ENTRYPOINT cloud-native-go
|
||
|
EXPOSE 8080
|