Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -30,7 +30,7 @@ COPY . /app
|
|
30 |
WORKDIR /app
|
31 |
|
32 |
# Install the app dependencies
|
33 |
-
RUN
|
34 |
|
35 |
# Run the app
|
36 |
CMD ["streamlit", "run", "app.py"]
|
|
|
30 |
WORKDIR /app
|
31 |
|
32 |
# Install the app dependencies
|
33 |
+
RUN pip install -r requirements.txt
|
34 |
|
35 |
# Run the app
|
36 |
CMD ["streamlit", "run", "app.py"]
|