Archived
13 lines
201 B
Makefile
13 lines
201 B
Makefile
.PHONY: build run save
|
|
|
|
build:
|
|
podman build . -t localhost/jobpostingparser:latest
|
|
|
|
run:
|
|
podman-compose up -d --build
|
|
|
|
save:
|
|
podman save -o jobpostingparser.tar localhost/jobpostingparser:latest
|
|
|
|
|
|
|