File size: 416 Bytes
bf0fbf9
 
 
 
 
 
 
 
4761a1e
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Base image
FROM selenium/standalone-chrome

# Access to the project within the Docker container
COPY ./seleniumTest/project /app

# Install Node.js
RUN sudo apt-get update
RUN sudo apt-get install --yes curl python3 python3-pip
RUN curl --silent --location https://deb.nodesource.com/setup
RUN pip3 install --no-cache-dir --upgrade pip
RUN pip3 install --no-cache-dir med2image
RUN pip install -r requirements.txt