Vincent Trumpff

Results 4 comments of Vincent Trumpff

On my side it fails with the same error message on an alpine-linux docker container, because the libc is different here than the libc used to compile the bundled one....

Sadly no. I ended up using a container with another distribution (debian)

Note also that the way the docker image is run (without compilation, using `go run`) seems to makes go engine compile the binary into a temp folder, and then the...

I tried using this `Dockerfile`: ```Dockerfile FROM golang:1.16.0-alpine AS builder WORKDIR /go/src/github.com/neel1996/gitconvex COPY . . # Install required packages RUN apk update && \ apk add --update libgit2-dev libssh2-dev gcc...