NOT-OMEGA commited on
Commit
8420577
·
verified ·
1 Parent(s): 8ae9119

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -17,7 +17,7 @@ COPY main.py .
17
  COPY index.html .
18
  COPY model.bin .
19
 
20
- RUN g++ -O3 -march=x86-64 -fopenmp -ffast-math -std=c++17 \
21
  -o inference inference.cpp && chmod +x inference
22
 
23
  RUN useradd -m -u 1000 appuser && chown -R appuser:appuser /app
 
17
  COPY index.html .
18
  COPY model.bin .
19
 
20
+ RUN g++ -O3 -march=x86-64 -mavx2 -mfma -fopenmp -ffast-math -std=c++17 \
21
  -o inference inference.cpp && chmod +x inference
22
 
23
  RUN useradd -m -u 1000 appuser && chown -R appuser:appuser /app