Files
devops-directive-docker-course/05-example-web-application/api-node/Makefile
2023-01-27 12:37:06 -05:00

9 lines
199 B
Makefile

.PHONY: run-local
run-local:
DATABASE_URL=postgres://postgres:foobarbaz@localhost:5432/postgres \
node ./src/index.js
.PHONY: build-naive
build-naive:
docker build --file ./Dockerfile.naive .