update
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
FROM python:3.
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
|
|
@@ -7,7 +7,6 @@ COPY ./packages.txt /app/packages.txt
|
|
| 7 |
|
| 8 |
RUN apt-get update && xargs -r -a /app/packages.txt apt-get install -y && rm -rf /var/lib/apt/lists/*
|
| 9 |
RUN pip3 install --no-cache-dir -r /app/requirements.txt
|
| 10 |
-
RUN pip install -U crawl4ai
|
| 11 |
|
| 12 |
# Run post-installation setup
|
| 13 |
RUN crawl4ai-setup
|
|
|
|
| 1 |
+
FROM python:3.10
|
| 2 |
|
| 3 |
WORKDIR /app
|
| 4 |
|
|
|
|
| 7 |
|
| 8 |
RUN apt-get update && xargs -r -a /app/packages.txt apt-get install -y && rm -rf /var/lib/apt/lists/*
|
| 9 |
RUN pip3 install --no-cache-dir -r /app/requirements.txt
|
|
|
|
| 10 |
|
| 11 |
# Run post-installation setup
|
| 12 |
RUN crawl4ai-setup
|