mirror of
https://github.com/vmorganp/Lazytainer.git
synced 2025-12-31 10:07:28 +01:00
12 lines
224 B
Docker
12 lines
224 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"] |