зеркало из https://github.com/mozilla/gecko-dev.git
22 строки
401 B
Docker
22 строки
401 B
Docker
FROM ubuntu:vivid
|
|
|
|
RUN apt-get -q update \
|
|
&& apt-get install --yes -q \
|
|
mercurial \
|
|
python-dev \
|
|
python-pip \
|
|
python-virtualenv \
|
|
libffi-dev \
|
|
libssl-dev \
|
|
libyaml-dev \
|
|
libmysqlclient-dev \
|
|
clamav \
|
|
clamav-freshclam \
|
|
curl \
|
|
wget \
|
|
&& apt-get clean
|
|
|
|
COPY requirements.txt /tmp/
|
|
RUN pip install -r /tmp/requirements.txt
|
|
RUN freshclam --verbose
|