🐳 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
1 changed files with 1 additions and 1 deletions

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