aboutsummaryrefslogtreecommitdiff
path: root/v_windows/v/vlib/net/websocket/tests/autobahn/ws_test/Dockerfile
blob: b57cffd8504f1cf473bb0e756dca4b4b01609b3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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" ]