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