Skip to content

Commit f02a7e1

Browse files
authored
chore: fix /dev/shm permissions on docker init script
1 parent 90c2720 commit f02a7e1

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

docker/scripts/app-init.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ echo "Fixing volumes ownership..."
99
sudo chown -R dev:dev "$WORKSPACEDIR/.parcel-cache"
1010
sudo chown -R dev:dev "$WORKSPACEDIR/__pycache__"
1111

12+
echo "Fix chromedriver /dev/shm permissions..."
13+
sudo chmod 1777 /dev/shm
14+
1215
# Build node packages that requrie native compilation
1316
echo "Compiling native node packages..."
1417
yarn rebuild

0 commit comments

Comments
 (0)