Skip to content

Commit 879c9db

Browse files
authored
Update Makefile
remove sudo and edit typos
1 parent 52046f3 commit 879c9db

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Makefile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ clean:
6767

6868
lint: activate install
6969
#flake8 or #pylint
70-
# In this scenario it'll only tell as errors found in your code
70+
# In this scenario it'll only tell as errors founxd in your code
7171
# R - refactor
7272
# C - convention
7373
pylint --disable=R,C --errors-only *.py
@@ -106,15 +106,15 @@ docker_run_test: Dockerfile.app Dockerfile.ollama
106106
docker_clean: Dockerfile.ollama Dockerfile.app
107107
# clean docker
108108
# remove docker images
109-
sudo docker rmi tool_calling_api-ollama -f || true
110-
sudo docker rmi tool_calling_api-app -f || true
111-
sudo docker system prune -af --volumes
109+
docker rmi tool_calling_api-ollama -f || true
110+
docker rmi tool_calling_api-app -f || true
111+
docker system prune -af --volumes
112112

113113

114114
docker_run: Dockerfile.ollama Dockerfile.app
115115
# run docker
116116
# this is basically a test to see if a docker image is being created successfully
117-
sudo docker-compose up --build
117+
docker-compose up --build
118118

119119
setup_readme: ## Create a README.md
120120
@if [ ! -f README.md ]; then \

0 commit comments

Comments
 (0)