v2 / vlib / net / websocket / tests / autobahn / local_run / Dockerfile
9 lines · 7 sloc · 331 bytes · e906033e4e55ebc76876f16f930957a58b5138f0
Raw
1# Use this as docker builder with https://github.com/nektos/act
2# build with: docker build tests/autobahn/. -t myimage
3# use in act: act -P ubuntu-latest=myimage
4
5FROM node:12.6-buster-slim
6
7COPY config/fuzzingserver.json /config/fuzzingserver.json
8RUN chmod +775 /config/fuzzingserver.json
9RUN apt update && apt install -y docker
10