zwv9 commited on
Commit
5a128c6
1 Parent(s): 2282f83

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -6
Dockerfile CHANGED
@@ -5,13 +5,13 @@ RUN apt update && apt install -y git
5
  RUN git clone https://github.com/0zl/phr.git .
6
  RUN bash scripts/dependencies_no_browser.sh
7
 
8
- RUN apt install -y curl
9
- RUN curl -LO https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
10
- RUN apt-get install -y ./google-chrome-stable_current_amd64.deb
11
- RUN rm google-chrome-stable_current_amd64.deb
12
-
13
- RUN echo "Chrome: " && google-chrome --version
14
 
 
15
  RUN bun install
16
  COPY . .
17
 
 
5
  RUN git clone https://github.com/0zl/phr.git .
6
  RUN bash scripts/dependencies_no_browser.sh
7
 
8
+ #RUN apt install -y curl
9
+ #RUN curl -LO https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
10
+ #RUN apt-get install -y ./google-chrome-stable_current_amd64.deb
11
+ #RUN rm google-chrome-stable_current_amd64.deb
12
+ #RUN echo "Chrome: " && google-chrome --version
 
13
 
14
+ RUN bunx puppeteer browsers install chrome
15
  RUN bun install
16
  COPY . .
17