Created
June 1, 2022 06:24
-
-
Save twyle/9baf9cd94c7f425fc7dc211bd736ffba to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
update: | |
@pip install --upgrade pip | |
install: | |
@pip install -r requirements.txt | |
install-dev: requirements-dev.txt | |
@pip install -r requirements-dev.txt | |
run: | |
@python main.py | |
test: | |
@python -m pytest | |
build: | |
@sudo docker build -t ${imagename}:latest . | |
run-docker: | |
@sudo docker run --env FLASK_ENV=development -p 5000:5000 ${imagename}:latest |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment