Change install command to do docker build
This commit is contained in:
parent
13f356c900
commit
b5391bc918
1 changed files with 8 additions and 4 deletions
12
justfile
12
justfile
|
@ -1,13 +1,17 @@
|
|||
set dotenv-load
|
||||
|
||||
DEV_COMPOSE := justfile_directory() + "/docker/dev/docker-compose.yml"
|
||||
|
||||
# Recipes
|
||||
@default:
|
||||
just --list
|
||||
|
||||
install:
|
||||
python -m venv env
|
||||
pip install -r dev-requirements.txt
|
||||
npm ci
|
||||
@build:
|
||||
docker-compose -f {{ DEV_COMPOSE }} pull
|
||||
docker-compose -f {{ DEV_COMPOSE }} build
|
||||
|
||||
@compose +ARGS:
|
||||
docker-compose -f {{ DEV_COMPOSE }} {{ ARGS }}
|
||||
|
||||
@start:
|
||||
honcho start
|
||||
|
|
Loading…
Reference in a new issue