This commit is contained in:
2018-11-04 15:58:15 +01:00
commit f956bcee28
1178 changed files with 584552 additions and 0 deletions

12
vendor/github.com/rylio/ytdl/Dockerfile generated vendored Normal file
View File

@@ -0,0 +1,12 @@
FROM golang:alpine
COPY . $GOPATH/src/github.com/rylio/ytdl/
RUN apk update && apk upgrade && \
apk add --no-cache git
RUN go get -d github.com/rylio/ytdl/cmd/ytdl/
RUN apk del git
WORKDIR $GOPATH/src/github.com/rylio/ytdl/cmd/ytdl/
RUN go build -o /go/bin/ytdl
WORKDIR /ytdl/
ENTRYPOINT ["/go/bin/ytdl"]