mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 12:49:37 +03:00
10 lines
No EOL
323 B
Docker
10 lines
No EOL
323 B
Docker
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 .
|
|
WORKDIR /app
|
|
CMD ["/app/owncast"] |