update fixperms command for dev and prod containers; modify check_deps to use Node.js

This commit is contained in:
Luis Eduardo
2025-09-27 16:13:31 +00:00
parent 684dbaa1dd
commit de952d0edf
2 changed files with 4 additions and 2 deletions
+3 -1
View File
@@ -140,4 +140,6 @@ tasks:
fixperms:
desc: Fixes the permissions of the files in the project
cmd: chmod -R 777 ./
cmds:
- chmod -f -R 777 /workspaces # For dev container
- chmod -f -R 777 /app # For prod container
+1 -1
View File
@@ -15,7 +15,7 @@ check_command() {
# Check software from docker images
check_command "go version" "Golang"
check_command "deno --version" "Deno"
check_command "node --version" "Node.js"
# Check software installed from apt install
check_command "wget --version" "wget"