diff --git a/README.md b/README.md index 5b3b658..bd6aa6c 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ Just an example of a way to deploy Python app to Azure using Terraform. cp example.env .env # Start local dev +just dependencies just run # Provision infrastructure diff --git a/justfile b/justfile index 1a75c15..8ff6b81 100644 --- a/justfile +++ b/justfile @@ -12,10 +12,6 @@ run: devbox services start postgresql python src/app.py -run-docker: - docker build -t local/${APP_NAME}:${GIT_SHA} . - docker run -it --rm -p 8080:8080 local/${APP_NAME}:${GIT_SHA} - dependencies: pip install -r src/requirements.txt