use /opt/ instead of /etc/ for binary storage

pull/1326/head
Martin Rauscher 2019-07-26 17:50:41 +02:00 committed by Alexander Medvednikov
parent 3850227b46
commit 80ec11edcb
1 changed files with 2 additions and 2 deletions

View File

@ -2,12 +2,12 @@
FROM buildpack-deps:buster-curl
LABEL maintainer="ANAGO Ronnel <anagoandy@gmail.com>"
WORKDIR /etc/vlang
WORKDIR /opt/vlang
RUN apt-get -yq update && \
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
ln -s /opt/vlang/v /usr/local/bin/v
CMD [ "bash" ]