docker build -t c-wasm-env .
docker run -b c-wasm-envemcc process_image.c -o process_image.js \
-s WASM=1 \
-s EXPORTED_FUNCTIONS='["_processImage", "_malloc", "_free"]' \
-s EXPORTED_RUNTIME_METHODS='["HEAPU8"]' \
-s ALLOW_MEMORY_GROWTH=1 \
-O3 # 최적화 플래그 추가
python3 -m http.server 9000https://velog.io/@mahwin/WASM-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0

