dfc8968201
The `lcli` docker build was no longer working on the old rust version Co-authored-by: realbigsean <seananderson33@gmail.com>
14 lines
629 B
Docker
14 lines
629 B
Docker
# `lcli` requires the full project to be in scope, so this should be built either:
|
|
# - from the `lighthouse` dir with the command: `docker build -f ./lcli/Dockerflie .`
|
|
# - from the current directory with the command: `docker build -f ./Dockerfile ../`
|
|
FROM rust:1.56.1-bullseye AS builder
|
|
RUN apt-get update && apt-get -y upgrade && apt-get install -y cmake
|
|
COPY . lighthouse
|
|
ARG PORTABLE
|
|
ENV PORTABLE $PORTABLE
|
|
RUN cd lighthouse && make install-lcli
|
|
|
|
FROM ubuntu:latest
|
|
RUN apt-get update && apt-get -y upgrade && apt-get clean && rm -rf /var/lib/apt/lists/*
|
|
COPY --from=builder /usr/local/cargo/bin/lcli /usr/local/bin/lcli
|