Remove libpcre3-dev and librocksdb-dev deps from Fluffy Dockerfile (#1384)
This commit is contained in:
parent
3f74f084c3
commit
e234a73b7e
|
@ -1,7 +1,7 @@
|
|||
FROM debian:buster-slim AS build
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y --fix-missing build-essential make git libpcre3-dev librocksdb-dev \
|
||||
&& apt-get install -y --fix-missing build-essential make git \
|
||||
&& apt-get clean \
|
||||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||||
|
||||
|
@ -23,11 +23,6 @@ RUN cd nimbus-eth1 && \
|
|||
# --------------------------------- #
|
||||
FROM debian:buster-slim AS deploy
|
||||
|
||||
RUN apt-get update \
|
||||
&& apt-get install -y librocksdb-dev \
|
||||
&& apt-get clean \
|
||||
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
||||
|
||||
COPY --from=build /usr/bin/fluffy /usr/bin/fluffy
|
||||
|
||||
ENTRYPOINT ["/usr/bin/fluffy"]
|
||||
|
|
Loading…
Reference in New Issue