Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions dev.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ ARG BASE_IMAGE_VERSION=v0.19.3-beta

FROM golang:${GO_VERSION}-alpine as builder

# Allow defining the CGO_ENABLED variable so we can build binaries
# that will work in a different type of container.
ARG CGO_ENABLED=1

# Force Go to use the cgo based DNS resolver. This is required to ensure DNS
# queries required to connect to linked containers succeed.
ENV GODEBUG netdns=cgo
Expand Down