mirror of
https://github.com/mudler/luet.git
synced 2025-09-18 16:32:16 +00:00
10 lines
172 B
Docker
10 lines
172 B
Docker
FROM golang as builder
|
|
ADD . /luet
|
|
RUN cd /luet && make build
|
|
|
|
FROM scratch
|
|
ENV LUET_NOLOCK=true
|
|
COPY --from=builder /luet/luet /usr/bin/luet
|
|
|
|
ENTRYPOINT ["/usr/bin/luet"]
|