fix build with using golang:latest
This commit is contained in:
+1
-1
@@ -1,4 +1,4 @@
|
|||||||
from golang as builder
|
FROM golang:1.16.0-buster as builder
|
||||||
|
|
||||||
# Add files
|
# Add files
|
||||||
RUN mkdir /app
|
RUN mkdir /app
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
from golang as builder
|
FROM golang:1.16.0-buster as builder
|
||||||
|
|
||||||
RUN mkdir /app
|
RUN mkdir /app
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
@@ -6,6 +6,12 @@ RUN go get github.com/docker/docker/api/types github.com/docker/docker/api/types
|
|||||||
|
|
||||||
COPY orborus.go /app/orborus.go
|
COPY orborus.go /app/orborus.go
|
||||||
RUN go mod init orborus
|
RUN go mod init orborus
|
||||||
|
RUN go get github.com/docker/docker/api/types && \
|
||||||
|
go get github.com/docker/docker/api/types/container && \
|
||||||
|
go get github.com/docker/docker/client && \
|
||||||
|
go get github.com/mackerelio/go-osstat/cpu && \
|
||||||
|
go get github.com/mackerelio/go-osstat/memory && \
|
||||||
|
go get github.com/satori/go.uuid
|
||||||
RUN go build
|
RUN go build
|
||||||
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o orborus .
|
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o orborus .
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
from golang as builder
|
FROM golang:1.16.0-buster as builder
|
||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
@@ -9,7 +9,13 @@ RUN go get -u github.com/gorilla/mux
|
|||||||
RUN go get -u github.com/patrickmn/go-cache
|
RUN go get -u github.com/patrickmn/go-cache
|
||||||
|
|
||||||
COPY worker.go /app/worker.go
|
COPY worker.go /app/worker.go
|
||||||
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o worker .
|
RUN go env -w GO111MODULE=auto && \
|
||||||
|
go get github.com/docker/docker/api/types && \
|
||||||
|
go get github.com/docker/docker/api/types/container && \
|
||||||
|
go get github.com/docker/docker/client && \
|
||||||
|
go get github.com/gorilla/mux && \
|
||||||
|
go get github.com/patrickmn/go-cache && \
|
||||||
|
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o worker .
|
||||||
|
|
||||||
FROM alpine:3.12
|
FROM alpine:3.12
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user