| WORKDIR $GOPATH/src/github.com/opencord/voltha-go |
| COPY tests/afrouter ./tests/afrouter |
| COPY tests/afrouter /build/tests |
| # Copy config and runtime protobuf needed for routing |
| RUN cp afrouter/arouter.json /build/tests/suites/ |
| RUN cp vendor/github.com/opencord/voltha-protos/go/voltha.pb /build/tests/suites/ |
| RUN cd afrouter && go build --tags integration -o /build/afrouter |
| RUN cd tests/afrouter && go build --tags integration -o /build/afrouterTest |
| RUN cd /build/tests/suites && /build/afrouterTest -config main.json -logLevel 1 |
| # Set the working directory |
| COPY --from=build-env /build/afrouter /app/ |
| COPY --from=build-env /build/afrouterTest /app/ |
| COPY --from=build-env /build/tests/suites/arouter.json /app/ |
| COPY --from=build-env /build/tests/suites/voltha.pb /app |
| COPY --from=build-env /build/tests /app/tests/ |