init
This commit is contained in:
13
Makefile
Normal file
13
Makefile
Normal file
@@ -0,0 +1,13 @@
|
||||
IMAGE_NAME = twimg-frontend
|
||||
CONTAINER_NAME = twimg-frontend
|
||||
|
||||
# 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 \
|
||||
--name $(CONTAINER_NAME) \
|
||||
-p 3000:3000 \
|
||||
$(IMAGE_NAME)
|
||||
Reference in New Issue
Block a user