1
0
mirror of https://gitlab.crans.org/nounous/ghostream.git synced 2024-12-22 09:12:19 +00:00

🐳 Use Alpine edge repo version in Dockerfile since libsrt is not packaged in v3.12 yet

This commit is contained in:
Yohann D'ANELLO 2020-10-01 09:40:37 +02:00
parent 0a95aae42b
commit cb14434091

View File

@ -1,6 +1,6 @@
# Install dependencies then build ghostream
FROM golang:1.15-alpine AS build_base
RUN apk add --no-cache gcc libsrt-dev musl-dev
RUN apk add --no-cache -X https://dl-cdn.alpinelinux.org/alpine/edge/community/ gcc libsrt-dev musl-dev
WORKDIR /code
COPY go.* ./
RUN go mod download && go get github.com/markbates/pkger/cmd/pkger