mirror of
https://github.com/vmorganp/Lazytainer.git
synced 2026-01-01 02:17:21 +01:00
11 lines
212 B
Docker
11 lines
212 B
Docker
from golang:alpine3.14
|
|
WORKDIR /root/
|
|
COPY ./lazytainer.go .
|
|
RUN go build lazytainer.go
|
|
|
|
FROM alpine:latest
|
|
RUN apk --no-cache add docker-cli
|
|
WORKDIR /root/
|
|
COPY --from=0 /root/lazytainer ./
|
|
|
|
CMD ["./lazytainer"] |