You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
Docker
34 lines
1.0 KiB
Docker
FROM cvat/server
|
|
|
|
ENV DJANGO_CONFIGURATION=testing
|
|
USER root
|
|
|
|
RUN curl https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add - && \
|
|
echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' | tee /etc/apt/sources.list.d/google-chrome.list && \
|
|
curl https://deb.nodesource.com/setup_9.x | bash - && \
|
|
apt-get update && \
|
|
DEBIAN_FRONTEND=noninteractive apt-get --no-install-recommends install -yq \
|
|
apt-utils \
|
|
build-essential \
|
|
google-chrome-stable \
|
|
nodejs \
|
|
python3-dev \
|
|
ruby \
|
|
xvfb \
|
|
&& \
|
|
rm -rf /var/lib/apt/lists/*;
|
|
|
|
RUN python3 -m pip install --no-cache-dir -r /tmp/requirements/${DJANGO_CONFIGURATION}.txt && \
|
|
python3 -m pip install --no-cache-dir coveralls
|
|
RUN gem install coveralls-lcov
|
|
|
|
COPY .coveragerc .
|
|
|
|
# RUN all commands below as 'django' user
|
|
USER ${USER}
|
|
|
|
RUN mkdir -p tests && cd tests && CI=true npm install cypress; \
|
|
echo "export PATH=~/tests/node_modules/.bin:${PATH}" >> ~/.bashrc;
|
|
|
|
ENTRYPOINT []
|