| 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 | |
| 5 | FROM node:12.6-buster-slim |
| 6 | |
| 7 | COPY config/fuzzingserver.json /config/fuzzingserver.json |
| 8 | RUN chmod +775 /config/fuzzingserver.json |
| 9 | RUN apt update && apt install -y docker |
| 10 |