AdityaAdaki commited on
Commit
f99502b
·
1 Parent(s): f13ccef
Files changed (3) hide show
  1. Dockerfile +3 -0
  2. requirements.txt +3 -2
  3. static/test +0 -0
Dockerfile CHANGED
@@ -2,6 +2,9 @@ FROM python:3.9-slim
2
 
3
  WORKDIR /code
4
 
 
 
 
5
 
6
  COPY ./requirements.txt /code/requirements.txt
7
  COPY ./final_price_data.csv /code/final_price_data.csv
 
2
 
3
  WORKDIR /code
4
 
5
+ # Create audio directory with proper permissions
6
+ RUN mkdir -p /code/static/audio && \
7
+ chmod 777 /code/static/audio
8
 
9
  COPY ./requirements.txt /code/requirements.txt
10
  COPY ./final_price_data.csv /code/final_price_data.csv
requirements.txt CHANGED
@@ -6,5 +6,6 @@ numpy
6
  datetime
7
  plotly
8
  googletrans
9
- google-generativeai
10
- python-dotenv
 
 
6
  datetime
7
  plotly
8
  googletrans
9
+ python-dotenv
10
+ gtts
11
+ pyttsx3
static/test ADDED
File without changes