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