Skip to content

Instantly share code, notes, and snippets.

@blacksheep--
blacksheep-- / Dockerfile
Created March 11, 2020 12:26
Traefik Catch-All to return HTTP421 for unresolved routes
FROM golang:1.14-alpine
COPY . /go/src/app
WORKDIR /go/src/app
RUN go get -v -d
RUN go install
CMD ["app"]