derek-thomas commited on
Commit
7e4640c
·
verified ·
1 Parent(s): 3ca88e8

Setting NUM_CPUS

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -33,6 +33,9 @@ RUN pip install -r requirements.txt
33
  # Deploy templates and prepare app
34
  RUN reflex init
35
 
 
 
 
36
  # Download all npm dependencies and compile frontend
37
  RUN reflex export --frontend-only --no-zip && mv .web/_static/* /srv/ && rm -rf .web
38
 
 
33
  # Deploy templates and prepare app
34
  RUN reflex init
35
 
36
+ # Setting because lscpu didnt work
37
+ ENV NUM_CPUS=2
38
+
39
  # Download all npm dependencies and compile frontend
40
  RUN reflex export --frontend-only --no-zip && mv .web/_static/* /srv/ && rm -rf .web
41