Call pkger in docker build

This commit is contained in:
Alexandre Iooss 2020-09-28 17:47:33 +02:00
parent 7716898713
commit c64506dc7c
No known key found for this signature in database
GPG Key ID: 6C79278F3FCDCC02
1 changed files with 2 additions and 2 deletions

View File

@ -5,9 +5,9 @@ RUN git clone --depth 1 --branch v1.4.2 https://github.com/Haivision/srt && \
cd srt && ./configure --enable-apps=OFF && make install && cd .. && rm -rf srt
WORKDIR /code
COPY go.* ./
RUN go mod download
RUN go mod download && go get github.com/markbates/pkger/cmd/pkger
COPY . .
RUN go build -o ./out/ghostream .
RUN go generate && go build -o ./out/ghostream .
# Production image
FROM alpine:3.12