11 lines
262 B
Makefile
11 lines
262 B
Makefile
include .env
|
|
DOCKER_BUILD_COMMAND=docker build --file Dockerfile --no-cache --platform linux/amd64 --tag $(APP_DOCKER_TAG)
|
|
|
|
run:
|
|
$(PWD)/bin/rr -c .rr.dev.yaml serve
|
|
|
|
up:
|
|
$(DOCKER_BUILD_COMMAND) --build-arg APP_ENV=dev .
|
|
docker compose --env-file .env up -d
|
|
|