djtm
djtm
Isn't that a security issue if you know that the last bytes will be (padded with) zero bytes? Maybe better random bytes?
Yes the easiest way is to just use an image from docker's i386 repository, e.g. i386/alpine. Multiarach is more flexible. So far all Dockerfiles worked just the same when replacing...
@achanda: there are always ugly hacks. E.g. expose all (relevant) ports in the Dockerfile.
It should work by default with the http_proxy variable, but it seems it doesn't. https://golang.org/src/net/http/transport.go#L35 e.g. it does not resolve IPs via socks: ```bash [ERROR] banner-grab: Could not connect to...
The fix should be as easy as this: https://godoc.org/golang.org/x/net/proxy#FromEnvironment
Hi, as a hotfix I've tried: * using /golang as gopath with a symlink (`ENV GOPATH=/golang`) * using /lang as gopath with a symlink (`ENV GOPATH=/lang`) * adding the path...
@ralfthewise: Thanks a lot! Did you get it to work with minimal images? ``` FROM golang:1.9-alpine AS builder ... FROM alpine COPY --from=builder /gopath/...backend/ /gopath/...backend/ COPY --from=builder /usr/local/go/ /go/ RUN...
Here's a hotfix: Throw an exception. It was already suggested in the code. [error_exit.patch.txt](https://github.com/abusenius/insaned/files/5468793/error_exit.patch.txt)
For reference: I needed `override.nfs.functional = false` along with the other overrides in my Vagrantfile for this combination to work.