summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 4a291af81a7ae54842a11b14aecc8da77eb3cbe7 (plain)
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-dev

RUN go get github.com/mutschler/mt

COPY --from=build /src/tube /tube

ENTRYPOINT ["/tube"]
CMD [""]