2025-02-05 16:39:11 +01:00

11 lines
227 B
Makefile

run: clean build
podman run --replace -dt -p 3333:3333 --name=e2ee e2ee-messaging-service:latest
build:
podman build -t e2ee-messaging-service .
test:
curl http://localhost:3333
podman logs e2ee
clean:
podman rm -f e2ee