1
0
mirror of https://github.com/kataras/iris.git synced 2025-12-23 04:47:02 +00:00
Former-commit-id: 491a1001aff9fc63a0d79efbfee6a78ca711f07c
This commit is contained in:
Gerasimos (Makis) Maropoulos
2020-02-08 13:41:09 +02:00
parent c55d2063e1
commit ea589b1276
5 changed files with 66 additions and 1 deletions

View File

@@ -7,7 +7,9 @@ ENV GO111MODULE=on \
GOOS=linux \
GOARCH=amd64
WORKDIR /go/src/app
COPY . /go/src/app
COPY go.mod .
RUN go mod download
COPY . .
RUN go install
FROM scratch

View File

@@ -4,4 +4,5 @@ go 1.13
require (
github.com/kataras/iris/v12 v12.1.6
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect
)