kamkol commited on
Commit
4c5f25d
·
1 Parent(s): 3a22ec2

Move data inside app directory

Browse files
Files changed (4) hide show
  1. .DS_Store +0 -0
  2. Dockerfile +2 -2
  3. app.py → app/app.py +0 -0
  4. debug.py → app/debug.py +0 -0
.DS_Store CHANGED
Binary files a/.DS_Store and b/.DS_Store differ
 
Dockerfile CHANGED
@@ -19,7 +19,7 @@ RUN pip install --no-cache-dir -r requirements.txt
19
  RUN mkdir -p /data/processed_data && chmod -R 777 /data
20
 
21
  # Copy application
22
- COPY app/ .
23
 
24
  # Copy data files to just ONE location - the app's path finding logic will handle it
25
  COPY data/processed_data/chunks.pkl /data/processed_data/
@@ -39,4 +39,4 @@ RUN python check_dependencies.py
39
  ENV PYTHONUNBUFFERED=1
40
 
41
  EXPOSE 8501
42
- CMD ["streamlit", "run", "app.py", "--server.address=0.0.0.0", "--server.port=8501", "--logger.level=debug"]
 
19
  RUN mkdir -p /data/processed_data && chmod -R 777 /data
20
 
21
  # Copy application
22
+ COPY app/ ./app/
23
 
24
  # Copy data files to just ONE location - the app's path finding logic will handle it
25
  COPY data/processed_data/chunks.pkl /data/processed_data/
 
39
  ENV PYTHONUNBUFFERED=1
40
 
41
  EXPOSE 8501
42
+ CMD ["streamlit", "run", "app/app.py", "--server.address=0.0.0.0", "--server.port=8501", "--logger.level=debug"]
app.py → app/app.py RENAMED
File without changes
debug.py → app/debug.py RENAMED
File without changes