research-to-production/salary/Makefile
2022-05-26 16:09:07 +00:00

11 lines
136 B
Makefile

run:
./st run app.py
install:
pip install -r requirements.txt
build:
docker build -t streamlit:latest .
.PHONY: run install build