diff --git a/src/crawlee/project_template/{{cookiecutter.project_name}}/Dockerfile b/src/crawlee/project_template/{{cookiecutter.project_name}}/Dockerfile index dda254f8f0..be18393cce 100644 --- a/src/crawlee/project_template/{{cookiecutter.project_name}}/Dockerfile +++ b/src/crawlee/project_template/{{cookiecutter.project_name}}/Dockerfile @@ -2,10 +2,10 @@ # You can see the Docker images from Apify at https://hub.docker.com/r/apify/. # You can also use any other image from Docker Hub. # % if cookiecutter.crawler_type == 'playwright' -FROM apify/actor-python-playwright:3.13 +FROM apify/actor-python-playwright:3.14 # % elif cookiecutter.crawler_type == 'playwright-camoufox' # Currently camoufox has issues installing on Python 3.13 -FROM apify/actor-python-playwright:3.12 +FROM apify/actor-python-playwright:3.14 # % else FROM apify/actor-python:3.13 # % endif