mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 12:49:37 +03:00
9 lines
257 B
Text
9 lines
257 B
Text
|
FROM golang:alpine
|
||
|
EXPOSE 8080 1935
|
||
|
RUN mkdir /app
|
||
|
ADD . /app
|
||
|
WORKDIR /app
|
||
|
RUN apk add --no-cache ffmpeg ffmpeg-libs
|
||
|
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags '-extldflags "-static"' -o owncast .
|
||
|
WORKDIR /app
|
||
|
CMD ["/app/owncast"]
|