amaye15
commited on
Commit
·
3b7b184
1
Parent(s):
d7da7b2
test
Browse files- Dockerfile +8 -0
Dockerfile
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Use the official Docker image as the base
|
2 |
+
FROM unclecode/crawl4ai:basic
|
3 |
+
|
4 |
+
# Expose the port your app runs on
|
5 |
+
EXPOSE 11235
|
6 |
+
|
7 |
+
# Command to run your app
|
8 |
+
CMD ["docker", "run", "-p", "11235:11235", "unclecode/crawl4ai:basic"]
|