1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/Dockerfile
ANAGO Andy Ronnel 2c31469ec2 Dockerfile
2019-07-23 00:31:43 +02:00

13 lines
288 B
Docker

#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" ]