2021-08-25 09:31:47 +08:00
|
|
|
#!/usr/bin/env bash
|
2020-10-08 22:27:19 +08:00
|
|
|
|
2021-08-25 10:00:20 +08:00
|
|
|
# This file contains the steps that should be run when building a "cache" image with contents that should be
|
|
|
|
# layered directly **on top of the source tree** once a dev container is created. This avoids having to run long
|
|
|
|
# running commands like "yarn install" from the ground up. Developers (and should) still run these commands
|
|
|
|
# after the actual dev container is created, but only differences will be processed.
|
2020-10-08 22:27:19 +08:00
|
|
|
|
2023-01-23 16:17:49 +08:00
|
|
|
yarn install --network-timeout 180000
|
2020-10-08 22:27:19 +08:00
|
|
|
yarn electron
|