Update Dockerfile
Browse files- Dockerfile +7 -1
Dockerfile
CHANGED
@@ -3,7 +3,13 @@ WORKDIR /code
|
|
3 |
|
4 |
RUN apt update && apt install -y git
|
5 |
RUN git clone https://github.com/0zl/phr.git .
|
6 |
-
RUN bash scripts/
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
|
8 |
RUN bun install
|
9 |
COPY . .
|
|
|
3 |
|
4 |
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 curl -LO https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
|
9 |
+
RUN apt-get install -y ./google-chrome-stable_current_amd64.deb
|
10 |
+
RUN rm google-chrome-stable_current_amd64.deb
|
11 |
+
|
12 |
+
RUN echo "Chrome: " && google-chrome --version
|
13 |
|
14 |
RUN bun install
|
15 |
COPY . .
|