From e0b7567cdcee17beb920085d85dd01bb5b314f74 Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Sat, 28 Nov 2020 00:01:08 +1100 Subject: [PATCH] Remove lcli from Docker image --- Dockerfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 52cbdbca2d1..2d7bca06a50 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,6 @@ COPY . lighthouse ARG PORTABLE ENV PORTABLE $PORTABLE RUN cd lighthouse && make -RUN cd lighthouse && make install-lcli FROM debian:buster-slim RUN apt-get update && apt-get install -y --no-install-recommends \ @@ -13,4 +12,3 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* COPY --from=builder /usr/local/cargo/bin/lighthouse /usr/local/bin/lighthouse -COPY --from=builder /usr/local/cargo/bin/lcli /usr/local/bin/lcli