Dockerfile

This commit is contained in:
ANAGO Andy Ronnel 2019-07-23 00:31:43 +02:00 committed by Alexander Medvednikov
parent 981185e42f
commit 2c31469ec2
2 changed files with 24 additions and 0 deletions

12
Dockerfile Normal file
View file

@ -0,0 +1,12 @@
#same container that golang use
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 && \
ln -s /etc/vlang/v /usr/local/bin/v
CMD [ "bash" ]