1
0
mirror of https://github.com/taigrr/wtf synced 2026-03-20 13:42:17 -07:00
Files
wtf/Dockerfile
2019-11-10 14:57:39 -05:00

18 lines
288 B
Docker

FROM golang:1.13-alpine
RUN apk add --no-cache make ncurses
COPY . $GOPATH/src/github.com/wtfutil/wtf
ENV GOPROXY=https://proxy.golang.org,direct
ENV GO111MODULE=on
ENV GOSUMDB=off
WORKDIR $GOPATH/src/github.com/wtfutil/wtf
ENV PATH=$PATH:./bin
RUN make build
ENTRYPOINT "wtfutil"