1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-31 16:57:04 +00:00

add a simple docker example

Former-commit-id: cacfa3ad903ce542ce455cb2298c40639c645d3c
This commit is contained in:
Gerasimos (Makis) Maropoulos
2020-02-06 18:43:03 +02:00
parent 7096050eda
commit c55d2063e1
7 changed files with 87 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
# docker build -t myapp .
# docker run --rm -it -p 8080:8080 myapp:latest
FROM golang:latest AS builder
RUN apt-get update
ENV GO111MODULE=on \
CGO_ENABLED=0 \
GOOS=linux \
GOARCH=amd64
WORKDIR /go/src/app
COPY . /go/src/app
RUN go install
FROM scratch
COPY --from=builder /go/bin/app .
ENTRYPOINT ["./app"]