From dd3880c72800c7c451d35364045735e8609e2107 Mon Sep 17 00:00:00 2001 From: Magnus <97634880+MagnusS0@users.noreply.github.com> Date: Sat, 23 Sep 2023 16:00:16 +0200 Subject: [PATCH] Update README.md Added information about API_KEY --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 2891063..60ac5a1 100644 --- a/README.md +++ b/README.md @@ -42,12 +42,12 @@ cd movie_rec_system ### Run - with Docker 🐳 ```sh -docker build -t movie_rec_system:latest -f Dockerfile . -docker run -p 8000:8000 movie_rec_system:latest +docker build --build-arg API_KEY=your_api_key -t movie_rec_system:latest -f Dockerfile . +docker run -e API_KEY=your_api_key -p 8000:8000 movie_rec_system:latest ``` ### Run - locally 💻 - +> Remember to add your own API key to .env 1. Make sure you have `Poetry` innstalled in your enviornment ```sh pip install poetry