Spaces:
Runtime error
Runtime error
Create Dockerfile
Browse files- Dockerfile +10 -0
Dockerfile
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Base image
|
2 |
+
FROM selenium/standalone-chrome
|
3 |
+
|
4 |
+
# Access to the project within the Docker container
|
5 |
+
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
|