Tutorial: Integrating Gauge with Docker
Gauge can be easily installed on
Docker
container.
Prerequisites
Docker
Docker image for Gauge
Create a
Dockerfile
file in your project root.
Add these lines in
Dockerfile
according to the platform on which
you want to build.
DockerFile
FROM ubuntu
# Install Java.
RUN apt-get update && apt-get install -q -y \
curl \
zip \
openjdk-11-jdk \
apt-transport-https \
gnupg2 \
ca-certificates
RUN curl -SsL https://downloads.gauge.org/stable | sh
# Install gauge plugins
RUN gauge install java && \
gauge install screenshot
ENV PATH=$HOME/.gauge:$PATH