1
0
mirror of https://github.com/romanz/electrs.git synced 2024-11-19 01:43:29 +01:00

Apply hadolint recommendations

This commit is contained in:
David Parrish 2020-07-06 16:16:01 -04:00
parent 840da895ce
commit 0980b44c6f
No known key found for this signature in database
GPG Key ID: 01D9481805467055

View File

@ -1,8 +1,10 @@
FROM rust:1.42.0-slim-buster
RUN apt-get update
RUN apt-get install -y clang cmake
RUN apt-get install -y libsnappy-dev
RUN apt-get update \
&& apt-get install -y --no-install-recommends clang=1:7.* cmake=3.* \
libsnappy-dev=1.* \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
RUN adduser --disabled-login --system --shell /bin/false --uid 1000 user