mirror of
https://github.com/vlang/v.git
synced 2025-09-14 15:02:33 +03:00
12 lines
292 B
Docker
12 lines
292 B
Docker
FROM thevlang/vlang:buster-build
|
|
|
|
|
|
COPY ./ /src/
|
|
|
|
WORKDIR /src
|
|
|
|
RUN make CC=clang
|
|
|
|
RUN /src/v /src/vlib/net/websocket/tests/autobahn/autobahn_server.v
|
|
RUN chmod +x /src/vlib/net/websocket/tests/autobahn/autobahn_server
|
|
ENTRYPOINT [ "/src/vlib/net/websocket/tests/autobahn/autobahn_server" ]
|