Your ROOT_URL in app.ini is http://git.slaventius.ru/ but you are visiting http://37.143.12.169/test3k/authDB/src/commit/dd16a31fa1d09cb92802050c06cdadbe8d33b162/vendor/github.com/arangodb/go-driver/Dockerfile.debug You should set ROOT_URL correctly, otherwise the web may not work correctly.
 
 
 
 
 

11 lines
321 B

FROM golang:1.19.4 as builder
ARG TESTS_DIRECTORY
ARG TESTS_ROOT_PATH="."
RUN go install github.com/go-delve/delve/cmd/dlv@latest
WORKDIR /go/src/github.com/arangodb/go-driver
ADD . /go/src/github.com/arangodb/go-driver/
RUN cd $TESTS_ROOT_PATH && go test -gcflags "all=-N -l" -c -o /test_debug.test $TESTS_DIRECTORY