Add Minimal Dockerfile

This commit is contained in:
2022-07-14 15:04:09 -07:00
parent 5002ca093e
commit a871562a47
12 changed files with 227 additions and 68 deletions

View File

@@ -27,6 +27,12 @@ db-downgrade :
lint :
poetry run flake8
requirements.txt : poetry.lock
poetry export -f requirements.txt --without-hashes -o requirements.txt
requirements-dev.txt : poetry.lock
poetry export --dev -f requirements.txt --without-hashes -o requirements-dev.txt
serve :
poetry run python -m sigl
@@ -42,6 +48,8 @@ test-x :
test-wip :
poetry run python -m pytest tests -m wip
.PHONY : db-init db-migrate db-upgrad db-downgrade \
.PHONY : css \
db-init db-migrate db-upgrad db-downgrade \
lint shell serve \
test test-wip test-x
requirements.txt requirements-dev.txt \
test test-wip test-x