history008 commited on
Commit
9fc52b8
·
verified ·
1 Parent(s): a261838

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -3
Dockerfile CHANGED
@@ -1,7 +1,8 @@
1
- # Use the recommended, compatible Playwright image
2
- FROM mcr.microsoft.com/playwright/python:v1.55.0-beta-1756314050000-jammy
3
 
4
- # Install Node.js and npm (this is still needed)
 
5
  RUN apt-get update && apt-get install -y nodejs npm
6
 
7
  # Set the working directory inside the container
 
1
+ # Use a stable, production-ready Playwright image
2
+ FROM mcr.microsoft.com/playwright/python:v1.44.0
3
 
4
+ # Install Node.js and npm
5
+ # This step is required because the base image doesn't include them
6
  RUN apt-get update && apt-get install -y nodejs npm
7
 
8
  # Set the working directory inside the container