Create .bundle and set group when running container (#7684)

If this is not set, `make website` fails due to permission errors in the docker container
Fixes #5589.
This commit is contained in:
Marcos Nils 2019-10-17 22:17:00 +01:00 committed by Becca Petrin
parent 3cc4920e31
commit caaa736f35
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,5 @@
configure-cache:
@mkdir -p tmp/cache
@mkdir -p tmp/cache .bundle
build: configure-cache
@echo "==> Starting build in Docker..."
@ -9,6 +9,7 @@ build: configure-cache
--tty \
--volume "$(shell pwd):/opt/buildhome/repo" \
--volume "$(shell pwd)/tmp/cache:/opt/buildhome/cache" \
--user buildbot:$(shell id -g) \
--env "ENV=production" \
netlify/build \
build "sh bootstrap.sh && middleman build --verbose"
@ -21,6 +22,7 @@ website: configure-cache
--tty \
--volume "$(shell pwd):/opt/buildhome/repo" \
--volume "$(shell pwd)/tmp/cache:/opt/buildhome/cache" \
--user buildbot:$(shell id -g) \
--publish "4567:4567" \
--publish "35729:35729" \
--env "ENV=production" \