mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
14 lines
394 B
Bash
14 lines
394 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -e
|
||
|
|
||
|
# build an Emscripten SDK Docker image with Hunspell's build dependencies installed
|
||
|
docker build --pull --tag overleaf/emsdk .
|
||
|
|
||
|
# compile Hunspell to WASM and copy the output files from the Docker container
|
||
|
docker run --rm \
|
||
|
--workdir /opt \
|
||
|
--volume "$(pwd)/wasm":/wasm \
|
||
|
--volume "$(pwd)/compile.sh":/opt/compile.sh:ro \
|
||
|
overleaf/emsdk \
|
||
|
bash compile.sh
|