Skip to content

Commit 758e817

Browse files
committed
Add make bundle command
Add a `make bundle` command. Like our other projects, it uses a `BUNDLE_ARGS` environment variable so sub-commands like `update`, `list`, etc. can be used.
1 parent 9f40cfe commit 758e817

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,9 @@ test: image
1010

1111
citest:
1212
docker run --rm $(IMAGE_NAME) bundle exec rake
13+
14+
bundle:
15+
docker run --rm \
16+
--entrypoint /bin/sh \
17+
--volume $(PWD):/usr/src/app \
18+
$(IMAGE_NAME) -c "bundle $(BUNDLE_ARGS)"

0 commit comments

Comments
 (0)