7 lines
152 B
Bash
Executable File
7 lines
152 B
Bash
Executable File
#!/bin/bash
|
|
# Build a docker image for yocto
|
|
# Made partly with chatgpt & claude
|
|
|
|
docker build -t "yocto-embedded-course" ..
|
|
echo "Docker image built!"
|