7d71d98dc1
…d in the Docker image ## Issue Addressed https://github.com/sigp/lighthouse/issues/1459 ## Proposed Changes - Create new `lighthouse` user and group in Docker container - Set user as the default user
19 lines
616 B
Docker
19 lines
616 B
Docker
FROM rust:1.45.1 AS builder
|
|
RUN apt-get update && apt-get install -y cmake
|
|
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 \
|
|
libssl-dev \
|
|
ca-certificates \
|
|
&& apt-get clean \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
RUN groupadd -r lighthouse && useradd --no-log-init -r -g lighthouse lighthouse
|
|
USER lighthouse
|
|
COPY --from=builder /usr/local/cargo/bin/lighthouse /usr/local/bin/lighthouse
|
|
COPY --from=builder /usr/local/cargo/bin/lcli /usr/local/bin/lcli
|