Emil25 commited on
Commit
f57a458
·
verified ·
1 Parent(s): 2a46d77

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -3
Dockerfile CHANGED
@@ -8,9 +8,9 @@ WORKDIR /app
8
 
9
  COPY scripts /app/scripts/
10
 
11
- COPY main.py /app/
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 main.py \
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 \