8 lines
255 B
Docker
8 lines
255 B
Docker
FROM selenium/standalone-chrome
|
|
LABEL authors=w3c@naver.com
|
|
|
|
RUN apt-get update
|
|
RUN apt-get install -y curl nginx
|
|
RUN curl -sL https://deb.nodesource.com/setup_12.x -o nodesource_setup.sh && bash nodesource_setup.sh
|
|
RUN apt-get install -y nodejs
|