1
1
mirror of https://github.com/rui314/mold.git synced 2024-09-21 09:57:18 +03:00

Install missing tools to a docker environment

We need `git` and `pkg-config` because we are using them in our
Makefile.
This commit is contained in:
Rui Ueyama 2022-01-15 14:02:39 +09:00
parent 0c19046721
commit 12fcc76ff0

View File

@ -18,7 +18,7 @@ FROM ubuntu:20.04
RUN apt-get update && \
TZ=Europe/London apt-get install -y tzdata && \
apt-get install -y --no-install-recommends build-essential clang lld \
bsdmainutils file gcc-multilib \
bsdmainutils file gcc-multilib git pkg-config \
cmake libstdc++-10-dev zlib1g-dev libssl-dev && \
apt clean && \
rm -rf /var/lib/apt/lists/*