mirror of
https://github.com/vlang/v.git
synced 2025-09-15 23:42:28 +03:00
11 lines
310 B
Docker
11 lines
310 B
Docker
FROM thevlang/vlang:buster-dev
|
|
|
|
# ARG WORKSPACE_ROOT
|
|
|
|
# WORKDIR ${WORKSPACE_ROOT}
|
|
COPY ./ /src/
|
|
# COPY tests/autobahn/ws_test/run.sh /run.sh
|
|
# RUN chmod +x /run.sh
|
|
RUN v /src/tests/autobahn/autobahn_server.v
|
|
RUN chmod +x /src/tests/autobahn/autobahn_server
|
|
ENTRYPOINT [ "/src/tests/autobahn/autobahn_server" ]
|