Spaces:
Sleeping
Sleeping
Create Dockerfile
Browse files- Dockerfile +8 -0
Dockerfile
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Use the base image from your Docker container
|
| 2 |
+
FROM trcoot/cpu-casuallm:latest
|
| 3 |
+
|
| 4 |
+
# Install any additional dependencies or files needed
|
| 5 |
+
# RUN pip install -r requirements.txt
|
| 6 |
+
|
| 7 |
+
# Start the application (modify this based on your app's entry point)
|
| 8 |
+
CMD ["python", "app.py"]
|