chore: fix /dev/shm permissions on docker init script

This commit is contained in:
Nicolas Giard 2022-05-24 19:52:32 -04:00 committed by GitHub
parent 90c2720031
commit f02a7e1797
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -9,6 +9,9 @@ echo "Fixing volumes ownership..."
sudo chown -R dev:dev "$WORKSPACEDIR/.parcel-cache"
sudo chown -R dev:dev "$WORKSPACEDIR/__pycache__"
echo "Fix chromedriver /dev/shm permissions..."
sudo chmod 1777 /dev/shm
# Build node packages that requrie native compilation
echo "Compiling native node packages..."
yarn rebuild