vlang: updated to 0.3.1

main
Jef Roosens 2022-09-01 09:23:42 +02:00
parent 2125c6cae2
commit 96e28c6e12
Signed by: Jef Roosens
GPG Key ID: B75D4F293C7052DB
2 changed files with 16 additions and 3 deletions

View File

@ -1,3 +1,16 @@
# Dockerfiles
This repository contains some Dockerfiles I use for various projects.
## Using buildx
First, install the required QEMU stuff:
```sh
docker run --privileged --rm tonistiigi/binfmt --install all
```
Afterwards, you can build stuff like this:
```
docker buildx build --platform linux/amd64,linux/arm64 .
```

View File

@ -2,9 +2,9 @@ FROM alpine:3.16
ARG TARGETPLATFORM
# Values for release 0.3
ARG V_COMMIT_HASH=ec758604538c00cceb142d324609a241e665f7c7
ARG VC_COMMIT_HASH=5dc8384638f515a098f75296fa7123c5e6a4964a
# Values for release 0.3.1
ARG V_COMMIT_HASH=f2f6ea596966ca405bd1be34b3bf3539b0c18fb7
ARG VC_COMMIT_HASH=119e6752e94814715dbb926d438027a848d5be2c
ENV VVV /opt/vlang
ENV PATH /opt/vlang:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin