From 78371a2b338c54ad8be1e6ecdb035a8e4fefa5b4 Mon Sep 17 00:00:00 2001 From: Tine Date: Sat, 2 Mar 2024 10:35:31 +0100 Subject: [PATCH] docs: dependencies --- README.md | 1 + justfile | 4 ---- 2 files changed, 1 insertion(+), 4 deletions(-) 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