Remove libpcre3-dev and librocksdb-dev deps from Fluffy Dockerfile (#1384)

This commit is contained in:
Kim De Mey 2022-12-16 14:53:31 +01:00 committed by GitHub
parent 3f74f084c3
commit e234a73b7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 6 deletions

View File

@ -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"]