mirror of
https://github.com/kataras/iris.git
synced 2025-01-23 02:31:04 +01:00
15feaf0237
Former-commit-id: dced7d472edabbab4f80c76051f13261928a8dea
12 lines
312 B
Docker
12 lines
312 B
Docker
FROM golang:1.9-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 |