This project aims to build a shell prompt with shell commands.
Github Actions:
To use the Docker image for the development environment, you must first build the Docker image. You can do this with the following command:
docker build -t 42_minishell .
This command will build the Docker image according to the instructions in the Dockerfile and will name it '42_minishell'.
After building the image, you can start a container using the following command line:
docker run -it 42_minishell
If you encounter any error while building the Docker image, make sure your Dockerfile is set up correctly.
If the error persists, you may try to clean all Docker containers, images, and volumes on your machine and try again. But be careful, as this will erase all your Docker data:
docker system prune -a --volumes
After that, you can try to build the image again.