Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +4 -1
Dockerfile
CHANGED
@@ -7,7 +7,10 @@ WORKDIR /app
|
|
7 |
# Copy the application files into the container
|
8 |
COPY app.py .
|
9 |
COPY requirements.txt .
|
10 |
-
COPY config.toml
|
|
|
|
|
|
|
11 |
|
12 |
# Install system dependencies required for edge-tts and other libraries
|
13 |
RUN apt-get update && apt-get install -y \
|
|
|
7 |
# Copy the application files into the container
|
8 |
COPY app.py .
|
9 |
COPY requirements.txt .
|
10 |
+
COPY config.toml .
|
11 |
+
|
12 |
+
# Create .streamlit directory and move config.toml to it
|
13 |
+
RUN mkdir -p /root/.streamlit && mv config.toml /root/.streamlit/config.toml
|
14 |
|
15 |
# Install system dependencies required for edge-tts and other libraries
|
16 |
RUN apt-get update && apt-get install -y \
|