Rahul-Samedavar commited on
Commit
7a49d2a
·
1 Parent(s): d39a9d7

fixing docker 2

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -1,6 +1,6 @@
1
  FROM python:3.11
2
 
3
- # Install system dependencies
4
  RUN apt-get update && apt-get install -y \
5
  wget \
6
  gnupg \
@@ -17,7 +17,7 @@ RUN wget -q -O /usr/share/keyrings/google-chrome.gpg https://dl.google.com/linux
17
  && apt-get install -y google-chrome-stable \
18
  && rm -rf /var/lib/apt/lists/*
19
 
20
- # Verify versions (optional but useful for debugging)
21
  RUN google-chrome --version && chromedriver --version || true
22
 
23
  # Set up the working directory
 
1
  FROM python:3.11
2
 
3
+ # Install system dependencies + Chromium driver (Debian package)
4
  RUN apt-get update && apt-get install -y \
5
  wget \
6
  gnupg \
 
17
  && apt-get install -y google-chrome-stable \
18
  && rm -rf /var/lib/apt/lists/*
19
 
20
+ # (Optional) Check versions in build logs
21
  RUN google-chrome --version && chromedriver --version || true
22
 
23
  # Set up the working directory