servicepoint-tanks/Makefile

11 lines
219 B
Makefile
Raw Permalink Normal View History

2024-04-13 14:14:50 +02:00
TAG=cccb-tanks-cs
build:
2024-04-21 14:34:45 +02:00
podman build tanks-backend --tag=$(TAG)-backend
podman build tank-frontend --tag=$(TAG)-frontend
2024-04-13 14:14:50 +02:00
podman build . --tag=$(TAG)
run: build
2024-05-02 21:27:56 +02:00
podman run -i -p 3000:3000 localhost/$(TAG):latest
2024-04-21 14:34:45 +02:00