summaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 364dbb3d3c9e70dd070ccf6b76ed0484d10f3b18 (plain)
1
2
3
4
5
6
7
8
9
10
# Build
FROM prologic/go-builder:latest AS build

# Runtime
FROM alpine

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

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