mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
2421593d85
GitOrigin-RevId: fefdfa04d9b9496bf6c98b37331fc4a084de065a
11 lines
389 B
Docker
11 lines
389 B
Docker
ARG PROJECT_NAME
|
|
ARG BRANCH_NAME
|
|
ARG BUILD_NUMBER
|
|
|
|
FROM ci/$PROJECT_NAME:$BRANCH_NAME-$BUILD_NUMBER
|
|
|
|
USER root
|
|
|
|
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \
|
|
echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list && \
|
|
apt-get update && apt-get install -y google-chrome-stable
|