mirror of
https://github.com/cmusphinx/pocketsphinx.git
synced 2026-05-17 12:20:35 +00:00
20 lines
648 B
Docker
20 lines
648 B
Docker
FROM alpine:latest AS runtime
|
|
RUN apk add --no-cache python3 py3-pip sox portaudio alsa-utils alsaconf
|
|
|
|
FROM runtime AS build
|
|
RUN apk add --no-cache cmake ninja gcc musl-dev python3-dev pkgconfig
|
|
|
|
COPY . /pocketsphinx
|
|
WORKDIR /pocketsphinx
|
|
RUN cmake -S . -B build -DBUILD_SHARED_LIBS=ON -G Ninja && cmake --build build --target install
|
|
# Cannot use --build-option because pip sucks
|
|
RUN CMAKE_ARGS="-DUSE_INSTALLED_POCKETSPHINX=ON" pip wheel -v .
|
|
|
|
FROM runtime
|
|
COPY --from=build /usr/local/ /usr/local/
|
|
COPY --from=build /pocketsphinx/*.whl /
|
|
RUN pip install --break-system-packages /*.whl && rm /*.whl
|
|
|
|
COPY examples/ /work/examples/
|
|
WORKDIR /work
|