Upload 6 files
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -3,7 +3,7 @@ FROM python:3.11-slim
|
|
| 3 |
WORKDIR /app
|
| 4 |
COPY requirements.txt .
|
| 5 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 6 |
-
COPY app.py .
|
| 7 |
|
| 8 |
EXPOSE 7860
|
| 9 |
CMD ["python", "app.py"]
|
|
|
|
| 3 |
WORKDIR /app
|
| 4 |
COPY requirements.txt .
|
| 5 |
RUN pip install --no-cache-dir -r requirements.txt
|
| 6 |
+
COPY app.py BTCUSD_1m.parquet models.joblib ./
|
| 7 |
|
| 8 |
EXPOSE 7860
|
| 9 |
CMD ["python", "app.py"]
|