🐛(project) fix bootstrap target in the Makefile

On a fresh environment, the `make bootstrap` command fails with the
following error : `Couldn't find env file`. The `.env` file must be
generated before building the docker image.
master
Matthieu Huguet 3 years ago committed by Matthieu Huguet
parent 741dfd0872
commit 40c19a3cc7

@ -61,8 +61,8 @@ list-meetings: ## List meetings running on the BBB server
bootstrap: ## Prepare Docker images for the project
bootstrap: \
build \
.env
.env \
build
.PHONY: bootstrap
# -- Build tools

Loading…
Cancel
Save