tube/Dockerfile

11 lines
138 B
Text
Raw Normal View History

# Build
FROM prologic/go-builder:latest AS build
# Runtime
FROM alpine
COPY --from=build /src/tube /tube
ENTRYPOINT ["/tube"]
CMD [""]