mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
all: use apt
over apt-get
for common APT subcommands (#21359)
This commit is contained in:
parent
f9952053af
commit
712a9125bf
18 changed files with 64 additions and 64 deletions
|
@ -6,9 +6,9 @@ WORKDIR /opt/vlang
|
|||
|
||||
ARG USE_LOCAL
|
||||
|
||||
RUN apt-get update && \
|
||||
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends gcc clang make git binutils && \
|
||||
apt-get clean && rm -rf /var/cache/apt/archives/* && \
|
||||
RUN apt update && \
|
||||
DEBIAN_FRONTEND=noninteractive apt install -y --no-install-recommends gcc clang make git binutils && \
|
||||
apt clean && rm -rf /var/cache/apt/archives/* && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY . /vlang-local
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue