Dockerfile

pull/1275/head
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 100644
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" ]

View File

@ -40,6 +40,18 @@ The compilation is temporarily slower for this release:
## Installing V in docker container
```bash
git clone https://github.com/vlang/v
cd v
docker build -t vlang .
#to enter in docker container
docker run --rm -it vlang:latest
#to enter in v shell run
v
```
## Installing V from source
### Linux, macOS, Windows, *BSD, WSL, Android, Raspberry Pi