Create Dockerfile
Browse files- Dockerfile +8 -0
Dockerfile
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Use the official OhMyCaptcha image
|
| 2 |
+
FROM shenhaostu/ohmycaptcha:latest
|
| 3 |
+
|
| 4 |
+
# Expose the port OhMyCaptcha uses
|
| 5 |
+
EXPOSE 8000
|
| 6 |
+
|
| 7 |
+
# Start the service
|
| 8 |
+
CMD ["python", "main.py"]
|