This repository has been archived on 2024-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
core/vendor/blueimp/jquery-file-upload/test/Dockerfile
Mario 580c3f4ffe another bulk of composer updates
(cherry picked from commit 6685381fd8db507493c3d7c1793f8c05c681bbce)
2019-11-10 14:10:03 +01:00

27 lines
484 B
Docker

FROM blueimp/chromedriver
USER root
RUN export DEBIAN_FRONTEND=noninteractive \
&& apt-get update \
&& apt-get install --no-install-recommends --no-install-suggests -y \
nodejs \
npm \
# Remove obsolete files:
&& npm install -g \
npm@latest \
mocha-chrome \
&& apt-get clean \
&& rm -rf \
/tmp/* \
/usr/share/doc/* \
/var/cache/* \
/var/lib/apt/lists/* \
/var/tmp/*
USER webdriver
WORKDIR /var/www/html
ENTRYPOINT ["mocha-chrome"]