mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
Make building with docker more effecient
- cleaning up apt cache will reduce image size - doing COPY after apt will allow to reuse previous layer on recompile
This commit is contained in:
parent
ebf858b9ae
commit
8b195ba32a
@ -3,10 +3,11 @@ FROM buildpack-deps:buster-curl
|
||||
|
||||
LABEL maintainer="ANAGO Ronnel <anagoandy@gmail.com>"
|
||||
WORKDIR /etc/vlang
|
||||
COPY . .
|
||||
RUN apt-get -yq update && \
|
||||
apt-get install -y gcc clang make && \
|
||||
make && \
|
||||
apt-get install -y --no-install-recommends gcc clang make && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
COPY . .
|
||||
RUN make && \
|
||||
ln -s /etc/vlang/v /usr/local/bin/v
|
||||
|
||||
CMD [ "bash" ]
|
||||
|
Loading…
Reference in New Issue
Block a user