Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
|
@@ -1,5 +1,5 @@
|
|
| 1 |
# Use the official Python image as base
|
| 2 |
-
FROM python:3.
|
| 3 |
|
| 4 |
|
| 5 |
# Install OS dependencies for Playwright and Chromium
|
|
@@ -29,7 +29,6 @@ RUN pip install --upgrade pip
|
|
| 29 |
RUN pip install fastapi uvicorn playwright nest_asyncio
|
| 30 |
|
| 31 |
# Install Playwright browsers (Chromium only)
|
| 32 |
-
RUN playwright install
|
| 33 |
RUN playwright install --with-deps chromium
|
| 34 |
|
| 35 |
# Expose the FastAPI port
|
|
|
|
| 1 |
# Use the official Python image as base
|
| 2 |
+
FROM python:3.10
|
| 3 |
|
| 4 |
|
| 5 |
# Install OS dependencies for Playwright and Chromium
|
|
|
|
| 29 |
RUN pip install fastapi uvicorn playwright nest_asyncio
|
| 30 |
|
| 31 |
# Install Playwright browsers (Chromium only)
|
|
|
|
| 32 |
RUN playwright install --with-deps chromium
|
| 33 |
|
| 34 |
# Expose the FastAPI port
|