diff --git a/Makefile b/Makefile index 2215ce7..7fc23eb 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -DOCKER_COMPOSE = COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 venv/bin/docker-compose +DOCKER_COMPOSE = COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker compose DOCKER_RUN = ${DOCKER_COMPOSE} run -u `id -u` DOCKER_BUILD = DOCKER_BUILDKIT=1 docker build DOCKER_CONTAINER_NAME = backend @@ -14,7 +14,7 @@ setup_venv: rm -rf venv python3.11 -m venv venv; venv/bin/python -m pip install wheel setuptools; - venv/bin/python -m pip install docker-compose pre-commit boto3 pip-tools; + venv/bin/python -m pip install pre-commit boto3 pip-tools; pre_commit_install: venv/bin/pre-commit install