owncast/Dockerfile

10 lines
323 B
Text
Raw Normal View History

2020-06-10 04:28:07 +03:00
FROM golang:alpine
EXPOSE 8080 1935
RUN mkdir /app
ADD . /app
WORKDIR /app
RUN apk add --no-cache ffmpeg ffmpeg-libs
RUN apk update && apk add --no-cache gcc build-base linux-headers
RUN CGO_ENABLED=1 GOOS=linux go build -a -installsuffix cgo -ldflags '-extldflags "-static"' -o owncast .
2020-06-10 04:28:07 +03:00
WORKDIR /app
CMD ["/app/owncast"]