research-to-production/salary/Makefile

11 lines
136 B
Makefile
Raw Permalink Normal View History

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