Init push

This commit is contained in:
Logan Cusano
2025-04-27 00:30:23 -04:00
commit 52405e9bd1
7 changed files with 677 additions and 0 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
# Define variables for client image name
CLIENT_IMAGE = websocket-client-app
# Default target: build the server image
all: build
# Target to build the server Docker image
build:
docker build -t $(CLIENT_IMAGE) .
# Target to run the server container using the host network
run: build
docker run -it --rm \
--network=host \
$(CLIENT_IMAGE)