Commit ·
277bfb8
1
Parent(s): 37bed39
Update requirements and dockerfile
Browse files- Dockerfile +1 -0
- requirements.txt +0 -2
Dockerfile
CHANGED
|
@@ -19,6 +19,7 @@ COPY src/ ./src/
|
|
| 19 |
|
| 20 |
# Create environment and install dependencies
|
| 21 |
RUN conda create -n appenv python=3.12.9 -y
|
|
|
|
| 22 |
RUN conda run -n appenv conda install --file requirements.txt -y
|
| 23 |
RUN conda run -n appenv pip install scikit-learn opencv-python-headless streamlit-webrtc matplotlib huggingface-hub twilio
|
| 24 |
|
|
|
|
| 19 |
|
| 20 |
# Create environment and install dependencies
|
| 21 |
RUN conda create -n appenv python=3.12.9 -y
|
| 22 |
+
RUN conda run -n appenv conda install tensorflow-gpu keras
|
| 23 |
RUN conda run -n appenv conda install --file requirements.txt -y
|
| 24 |
RUN conda run -n appenv pip install scikit-learn opencv-python-headless streamlit-webrtc matplotlib huggingface-hub twilio
|
| 25 |
|
requirements.txt
CHANGED
|
@@ -1,6 +1,4 @@
|
|
| 1 |
streamlit
|
| 2 |
numpy
|
| 3 |
-
tensorflow
|
| 4 |
-
keras
|
| 5 |
Pillow
|
| 6 |
python-dotenv
|
|
|
|
| 1 |
streamlit
|
| 2 |
numpy
|
|
|
|
|
|
|
| 3 |
Pillow
|
| 4 |
python-dotenv
|