Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 886 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 886 Bytes

Docker Audiowaveform Alpine Builder

Build side docker container to use in multistage builds for reducing total container size

Usage in multistage builds

Link container and copy binaries from it. Don't forget about required libraries.

FROM genesix/docker-audiowaveform-alpine:latest as audiowaveform-builder

FROM alpine:3.9

RUN apk add --no-cache libmad libsndfile libid3tag gd boost boost-program_options

COPY --from=audiowaveform-builder /bin/audiowaveform /usr/local/bin