Files
devops-directive-docker-course/04-building-container-images/sample-app/api-node/Makefile
2023-01-25 17:55:51 -05:00

13 lines
242 B
Makefile

.PHONY: run-local
run-local:
PGUSER=postgres \
PGHOST=localhost \
PGPASSWORD=foobarbaz \
PGDATABASE=postgres \
PGPORT=5432 \
node ./src/index.js
.PHONY: build-naive
build-naive:
docker build --file ./Dockerfile.naive .