Spaces:
Runtime error
Runtime error
# 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 | |