mirror of
https://github.com/vlang/v.git
synced 2025-08-03 09:47:15 -04:00
11 lines
234 B
Docker
11 lines
234 B
Docker
FROM mstorsjo/llvm-mingw
|
|
|
|
LABEL maintainer="Delyan Angelov <delian66@gmail.com>"
|
|
COPY . .
|
|
RUN make
|
|
RUN ./v -os windows -o v.c cmd/v
|
|
RUN x86_64-w64-mingw32-gcc v.c -std=c99 -w -municode -o v.exe -lws2_32
|
|
RUN file v.exe
|
|
|
|
CMD [ "bash" ]
|