Spaces:
Runtime error
Runtime error
File size: 364 Bytes
24f910c 2a87fbb 24f910c 2a87fbb 24f910c 2a87fbb 965657b 2a87fbb 965657b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
say_hello:
echo "Hello, World!"
run_local:
python src/main.py
build_docker_image:
docker build -t my-gradio-parking . --no-cache
run_docker_image:
docker-compose up
build_and_run_docker_image:
$(MAKE) build_docker_image
$(MAKE) run_docker_image
publish_docker_image:
docker-compose build publish2hub
docker push go2sujeet/my-gradio-parking:latest
|