mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-11-11 06:32:23 +08:00
Disable busy waiting in release (#370)
This commit is contained in:
parent
2088a0fc25
commit
8ed2cda808
2 changed files with 4 additions and 0 deletions
|
|
@ -19,6 +19,7 @@ COPY config config
|
||||||
RUN mix do deps.get, deps.compile
|
RUN mix do deps.get, deps.compile
|
||||||
|
|
||||||
# Compile and build the release
|
# Compile and build the release
|
||||||
|
COPY rel rel
|
||||||
COPY priv priv
|
COPY priv priv
|
||||||
COPY lib lib
|
COPY lib lib
|
||||||
# We need README.md during compilation
|
# We need README.md during compilation
|
||||||
|
|
|
||||||
3
rel/vm.args.eex
Normal file
3
rel/vm.args.eex
Normal file
|
|
@ -0,0 +1,3 @@
|
||||||
|
# Disable busy waiting, so that we don't waste
|
||||||
|
# resources when running in the cloud
|
||||||
|
+sbwt none +sbwtdcpu none +sbwtdio none
|
||||||
Loading…
Add table
Reference in a new issue