v
Raw file | 10 loc (8 sloc) | 225 bytes | Latest commit hash 31b28af17
1FROM mstorsjo/llvm-mingw
2
3LABEL maintainer="Delyan Angelov <[email protected]>"
4COPY . .
5RUN make
6RUN ./v -os windows -o v.c cmd/v
7RUN x86_64-w64-mingw32-gcc v.c -std=c99 -w -municode -o v.exe
8RUN file v.exe
9
10CMD [ "bash" ]