13 lines
235 B
Docker
13 lines
235 B
Docker
ARG VERSION
|
|
FROM selenoid/dev_firefox:$VERSION
|
|
|
|
COPY geckodriver /usr/bin/
|
|
COPY selenoid /usr/bin/
|
|
COPY --chown=selenium:root browsers.json /home/selenium/
|
|
COPY entrypoint.sh /
|
|
|
|
USER selenium
|
|
|
|
EXPOSE 4444
|
|
ENTRYPOINT ["/entrypoint.sh"]
|