typescript-express-mongoose-starter
Version:
TypeScript + Express + Mongoose + MongoDB
30 lines (23 loc) • 666 B
Plain Text
# app name should be overridden.
# ex) production-stage: make build APP_NAME=<APP_NAME>
# ex) development-stage: make build-dev APP_NAME=<APP_NAME>
APP_NAME = typescript-express
APP_NAME := $(APP_NAME)
# Build the container image - Dvelopment
build-dev:
docker build -t ${APP_NAME}\
--target development-build-stage\
-f Dockerfile .
# Build the container image - Production
build:
docker build -t ${APP_NAME}\
--target production-build-stage\
-f Dockerfile .
# Clean the container image
clean:
docker rmi -f ${APP_NAME}
# Run the container image
run:
docker run -d -it -p 3000:3000 ${APP_NAME}
all: build