grafana/scripts/build/ci-e2e/Dockerfile
Arve Knudsen f158e4f526
ci-e2e: Add Git (#28410)
* ci-e2e: Add Git

Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>

* Drone: Update e2e image

Signed-off-by: Arve Knudsen <arve.knudsen@gmail.com>
2020-10-20 19:32:22 +02:00

12 lines
539 B
Docker

FROM node:12.19.0-buster-slim
WORKDIR /root
RUN apt-get update && apt-get install -yq gnupg netcat curl git
RUN curl -fsSL https://dl.google.com/linux/linux_signing_key.pub | apt-key add - && \
echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list && \
# Cypress dependencies
apt-get update && apt-get install -yq libgtk2.0-0 libgtk-3-0 libnotify-dev libgconf-2-4 libnss3 libxss1 \
libasound2 libxtst6 xauth xvfb google-chrome-stable && \
apt-get autoremove -y && rm -rf /var/lib/apt/lists/*