31 lines
1.2 KiB
Docker
31 lines
1.2 KiB
Docker
FROM alpine:3.12 as builder
|
|
|
|
# Install utilities, libraries, and dev tools.
|
|
RUN apk add --no-cache \
|
|
bash curl \
|
|
bsd-compat-headers linux-headers \
|
|
build-base cmake git ninja python3
|
|
|
|
# Build shaka-packager from the current directory, rather than what has been
|
|
# merged.
|
|
WORKDIR shaka-packager
|
|
COPY . /shaka-packager/
|
|
RUN mkdir build
|
|
RUN cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug -G Ninja
|
|
RUN cmake --build build/ --config Debug --parallel
|
|
|
|
# Copy only result binaries to our final image.
|
|
FROM alpine:3.12
|
|
RUN apk add --no-cache libstdc++ python3
|
|
# TODO(joeyparrish): Copy binaries when build system is complete
|
|
#COPY --from=builder /shaka-packager/build/packager \
|
|
# /shaka-packager/build/mpd_generator \
|
|
# /shaka-packager/build/pssh-box.py \
|
|
# /usr/bin/
|
|
|
|
# Copy pyproto directory, which is needed by pssh-box.py script. This line
|
|
# cannot be combined with the line above as Docker's copy command skips the
|
|
# directory itself. See https://github.com/moby/moby/issues/15858 for details.
|
|
# TODO(joeyparrish): Copy binaries when build system is complete
|
|
#COPY --from=builder /shaka-packager/build/pyproto /usr/bin/pyproto
|