1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

native: initial linking support for linux (#15326)

This commit is contained in:
Spydr
2022-08-08 21:32:14 +02:00
committed by GitHub
parent a6026fd505
commit 27c5ad03f6
8 changed files with 272 additions and 108 deletions

View File

@@ -7,7 +7,7 @@ WORKDIR /opt/vlang
ARG USE_LOCAL
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends gcc clang make git && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends gcc clang make git binutils && \
apt-get clean && rm -rf /var/cache/apt/archives/* && \
rm -rf /var/lib/apt/lists/*