matthoffner commited on
Commit
f255eb9
·
1 Parent(s): c6eba7e

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -30,7 +30,7 @@ RUN python ggml/examples/starcoder/convert-hf-to-ggml.py ./gpt_bigcode-santacode
30
  RUN cd ggml/build && make -j4 starcoder starcoder-quantize
31
 
32
  RUN ggml/build/bin/starcoder-quantize models/./gpt_bigcode-santacoder/-ggml.bin ggml-model-q4_0.bin 2
33
- RUN emcc -I../../include -I../../include/ggml -I../../examples ../../src/ggml.c main.cpp -o web/santacoder.js -s EXPORTED_FUNCTIONS='["_wasm_eval","_wasm_random_digit","_malloc","_free"]' -s EXPORTED_RUNTIME_METHODS='["ccall"]' -s ALLOW_MEMORY_GROWTH=1 --preload-file ggml-model-q4_0.bin
34
 
35
  COPY . .
36
 
 
30
  RUN cd ggml/build && make -j4 starcoder starcoder-quantize
31
 
32
  RUN ggml/build/bin/starcoder-quantize models/./gpt_bigcode-santacoder/-ggml.bin ggml-model-q4_0.bin 2
33
+ RUN emsdk -I../../include -I../../include/ggml -I../../examples ../../src/ggml.c main.cpp -o web/santacoder.js -s EXPORTED_FUNCTIONS='["_wasm_eval","_wasm_random_digit","_malloc","_free"]' -s EXPORTED_RUNTIME_METHODS='["ccall"]' -s ALLOW_MEMORY_GROWTH=1 --preload-file ggml-model-q4_0.bin
34
 
35
  COPY . .
36