summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 1257ed195420829aa825cb6a7e688d1cbec56071 (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 ffmpeg-dev

RUN go install github.com/mutschler/mt@latest

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

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