Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +5 -2
Dockerfile
CHANGED
@@ -6,5 +6,8 @@ COPY ./seleniumTest/project /app
|
|
6 |
|
7 |
# Install Node.js
|
8 |
RUN sudo apt-get update
|
9 |
-
RUN sudo apt-get install --yes curl
|
10 |
-
RUN curl --silent --location https://deb.nodesource.com/setup
|
|
|
|
|
|
|
|
6 |
|
7 |
# Install Node.js
|
8 |
RUN sudo apt-get update
|
9 |
+
RUN sudo apt-get install --yes curl python3 python3-pip
|
10 |
+
RUN curl --silent --location https://deb.nodesource.com/setup
|
11 |
+
RUN pip3 install --no-cache-dir --upgrade pip
|
12 |
+
RUN pip3 install --no-cache-dir med2image
|
13 |
+
RUN pip install -r requirements.txt
|