Init
This commit is contained in:
14
Makefile
Normal file
14
Makefile
Normal file
@@ -0,0 +1,14 @@
|
||||
IMAGE_NAME = twimg-app
|
||||
CONTAINER_NAME = twimg-app
|
||||
|
||||
# Target to build the Docker image for sdr-node
|
||||
build:
|
||||
docker build -t $(IMAGE_NAME) .
|
||||
|
||||
# Target to run the sdr-node container
|
||||
run: build
|
||||
docker run --rm -it \
|
||||
-v "S:\TWIMG-Eligible":/app \
|
||||
--name $(CONTAINER_NAME) \
|
||||
-p 8000:8000 \
|
||||
$(IMAGE_NAME)
|
||||
Reference in New Issue
Block a user