Update Dockerfile
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -8,9 +8,9 @@ WORKDIR /app
|
|
8 |
|
9 |
COPY scripts /app/scripts/
|
10 |
|
11 |
-
COPY
|
12 |
|
13 |
-
COPY requirements.txt /app/
|
14 |
|
15 |
RUN apt-get update && \
|
16 |
apt-get install -y python3-pip python3-venv
|
@@ -22,7 +22,7 @@ ENV PATH="/app/venv/bin:$PATH"
|
|
22 |
RUN pip install --upgrade pip && \
|
23 |
pip install --no-cache-dir --upgrade -r /app/requirements.txt
|
24 |
|
25 |
-
CMD streamlit run
|
26 |
--server.headless true \
|
27 |
--server.enableCORS false \
|
28 |
--server.enableXsrfProtection false \
|
|
|
8 |
|
9 |
COPY scripts /app/scripts/
|
10 |
|
11 |
+
COPY app.py /app/app.py
|
12 |
|
13 |
+
COPY requirements.txt /app/requirements.txt
|
14 |
|
15 |
RUN apt-get update && \
|
16 |
apt-get install -y python3-pip python3-venv
|
|
|
22 |
RUN pip install --upgrade pip && \
|
23 |
pip install --no-cache-dir --upgrade -r /app/requirements.txt
|
24 |
|
25 |
+
CMD streamlit run app.py \
|
26 |
--server.headless true \
|
27 |
--server.enableCORS false \
|
28 |
--server.enableXsrfProtection false \
|