1 2 3 4 5 6 7 8 9 10 11 12 13 14
# Build FROM prologic/go-builder:latest AS build # Runtime FROM golang:alpine RUN apk --no-cache -U add git build-base ffmpeg ffmpeg-dev RUN go get github.com/mutschler/mt COPY --from=build /src/tube /tube ENTRYPOINT ["/tube"] CMD [""]