mirror of
https://github.com/vmorganp/Lazytainer.git
synced 2025-12-30 09:45:18 +01:00
13 lines
225 B
Docker
13 lines
225 B
Docker
FROM golang:alpine3.15
|
|
|
|
WORKDIR /root/
|
|
COPY ./go.mod ./go.sum ./
|
|
RUN go mod download
|
|
COPY ./lazytainer.go .
|
|
RUN go build lazytainer.go
|
|
|
|
FROM alpine:latest
|
|
WORKDIR /root/
|
|
COPY --from=0 /root/lazytainer ./
|
|
|
|
CMD ["./lazytainer"] |