Upload 2 files
Browse files- Dockerfile +6 -0
Dockerfile
CHANGED
|
@@ -21,6 +21,12 @@ RUN pip install --upgrade pip
|
|
| 21 |
# Install Python packages
|
| 22 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 23 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 24 |
# Expose Streamlit port
|
| 25 |
EXPOSE 8501
|
| 26 |
|
|
|
|
| 21 |
# Install Python packages
|
| 22 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 23 |
|
| 24 |
+
#install
|
| 25 |
+
RUN pip install torch==1.11.0 torchvision==0.12.0
|
| 26 |
+
RUN pip install fastopic
|
| 27 |
+
|
| 28 |
+
|
| 29 |
+
|
| 30 |
# Expose Streamlit port
|
| 31 |
EXPOSE 8501
|
| 32 |
|