mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-02 16:21:42 +00:00
7 lines
318 B
Docker
7 lines
318 B
Docker
# This image is meant to enable cross-architecture builds.
|
|
# It assumes the lcli binary has already been
|
|
# compiled for `$TARGETPLATFORM` and moved to `./bin`.
|
|
FROM --platform=$TARGETPLATFORM ubuntu:22.04
|
|
RUN apt update && apt -y upgrade && apt clean && rm -rf /var/lib/apt/lists/*
|
|
COPY ./bin/lcli /usr/local/bin/lcli
|