Skip to content

Commit

Permalink
Create .bundle and set group when running container (#7684)
Browse files Browse the repository at this point in the history
If this is not set, `make website` fails due to permission errors in the docker container
Fixes #5589.
  • Loading branch information
marcosnils authored and tyrannosaurus-becks committed Oct 17, 2019
1 parent 9bd3a27 commit 8af8c3f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion website/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
configure-cache:
@mkdir -p tmp/cache
@mkdir -p tmp/cache .bundle

build: configure-cache
@echo "==> Starting build in Docker..."
Expand All @@ -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"
Expand All @@ -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" \
Expand Down

0 comments on commit 8af8c3f

Please sign in to comment.