Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
FROM python:3.13-slim
WORKDIR /app
COPY . ./sahayak-RAG
WORKDIR /app/sahayak-RAG
RUN pip install --no-cache-dir -r requirements.txt

CMD ["python","app.py"]

33 changes: 31 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ Sahayak is a revolutionary multilingual job portal specifically designed for blu

```
sahayak/
|__ Dockerfile # Build docker image
├── app.py # Main Flask application
├── requirements.txt # Python dependencies
├── data/
Expand Down Expand Up @@ -86,8 +87,8 @@ sahayak/
1. **Clone the repository**

```bash
git clone <repository-url>
cd sahayak
git clone https://github.com/codeIntrovert/sahayak-RAG.git
cd sahayak-RAG
```

2. **Install dependencies**
Expand All @@ -105,6 +106,34 @@ python app.py
4. **Access the platform**
Open your browser and navigate to `http://localhost:5000`


## **Installation steps using docker**

1. **Clone the repository**

```bash
git clone -b dockerize https://github.com/ramimK0bir/sahayak-RAG.git
cd sahayak-RAG
```

2. **Build docker image**
```bash
docker build -t sahayak-rag:0.0.1 .
```

3. **Run docker image**
```bash
docker run -p5000:5000 sahayak-rag:0.0.1
```
or
4. **Run docker image with persistent data folder**
```bash
docker run -v $(pwd)/data:/app/sahayak-RAG/data -p5000:5000 sahayak-rag:0.0.1
```
5. **Access the platform**
Open your browser and navigate to [localhost:5000](http://localhost:5000)


## 🎯 Core Functionality

### Intelligent Job Search
Expand Down
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
register_blueprints(app)

if __name__ == "__main__":
app.run(debug=True)
app.run(host="0.0.0.0")