13 lines
284 B
Makefile
13 lines
284 B
Makefile
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)
|