fix: use pip3 instead of pip in Makefile
All checks were successful
Build and Deploy Erika CV / build-and-deploy (push) Successful in 37s

This commit is contained in:
Henrik Jess Nielsen
2026-04-19 17:28:09 +02:00
parent 22e18fcf79
commit 40f9a65f5c

View File

@@ -4,7 +4,7 @@ run: install
FLASK_ENV=development python app.py
install:
pip install -r requirements.txt --quiet
pip3 install -r requirements.txt --quiet
docker-build:
docker build -t web-erika .