Phani-ISB commited on
Commit
81be6d1
·
1 Parent(s): 8939e52

Initial commit - clean setup for HF Space

Browse files
Files changed (1) hide show
  1. DockerFile.txt +2 -2
DockerFile.txt CHANGED
@@ -1,4 +1,4 @@
1
- # Use full Python 3.11 image
2
  FROM python:3.11
3
 
4
  # Set working directory
@@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y \
12
  apt-utils \
13
  && rm -rf /var/lib/apt/lists/*
14
 
15
- # Copy requirements file and install Python dependencies
16
  COPY requirements.txt .
17
  RUN pip install --no-cache-dir -r requirements.txt
18
 
 
1
+ # Use official Python 3.11 image
2
  FROM python:3.11
3
 
4
  # Set working directory
 
12
  apt-utils \
13
  && rm -rf /var/lib/apt/lists/*
14
 
15
+ # Copy requirements.txt and install Python packages
16
  COPY requirements.txt .
17
  RUN pip install --no-cache-dir -r requirements.txt
18