mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
c41c07e4d0
Summary: Adds a small missing script now used in core docker container to create a python3 gvisor checkpoint on startup. Test Plan: manual Reviewers: georgegevoian Reviewed By: georgegevoian Subscribers: georgegevoian Differential Revision: https://phab.getgrist.com/D3340
11 lines
196 B
Bash
Executable File
11 lines
196 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
if [[ "$GRIST_SANDBOX_FLAVOR" = "gvisor" ]]; then
|
|
./sandbox/gvisor/update_engine_checkpoint.sh
|
|
source ./sandbox/gvisor/get_checkpoint_path.sh
|
|
fi
|
|
|
|
exec yarn run start:prod
|