mirror of
git://git.yoctoproject.org/layerindex-web.git
synced 2025-07-19 20:59:01 +02:00
docker: trim down container size
* Use plain debian instead of buildpack-deps as a base (and install just the additional packages we need on top) * Purge the development packages after we're done with them (they aren't used at runtime) * Run apt-get clean to drop package cache files Thanks to Konrad Scherer <konrad.scherer@windriver.com> for this idea. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
This commit is contained in:
parent
16c25c9800
commit
eafd78de1e
19
Dockerfile
19
Dockerfile
|
@ -1,4 +1,4 @@
|
||||||
FROM buildpack-deps:latest
|
FROM debian:stretch
|
||||||
LABEL maintainer="Michael Halstead <mhalstead@linuxfoundation.org>"
|
LABEL maintainer="Michael Halstead <mhalstead@linuxfoundation.org>"
|
||||||
|
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
|
@ -10,9 +10,15 @@ ENV PYTHONUNBUFFERED=1 \
|
||||||
#ENV http_proxy http://your.proxy.server:port
|
#ENV http_proxy http://your.proxy.server:port
|
||||||
#ENV https_proxy https://your.proxy.server:port
|
#ENV https_proxy https://your.proxy.server:port
|
||||||
|
|
||||||
|
# NOTE: we don't purge gcc below as we have some places in the OE metadata that look for it
|
||||||
|
|
||||||
COPY requirements.txt /
|
COPY requirements.txt /
|
||||||
RUN apt-get update
|
RUN apt-get update
|
||||||
RUN apt-get install -y --no-install-recommends \
|
RUN apt-get install -y --no-install-recommends \
|
||||||
|
autoconf \
|
||||||
|
g++ \
|
||||||
|
gcc \
|
||||||
|
make \
|
||||||
python-pip \
|
python-pip \
|
||||||
python-mysqldb \
|
python-mysqldb \
|
||||||
python-dev \
|
python-dev \
|
||||||
|
@ -21,11 +27,14 @@ RUN apt-get install -y --no-install-recommends \
|
||||||
python3-mysqldb \
|
python3-mysqldb \
|
||||||
python3-dev \
|
python3-dev \
|
||||||
python3-pil \
|
python3-pil \
|
||||||
|
libjpeg-dev \
|
||||||
|
libmariadbclient-dev \
|
||||||
locales \
|
locales \
|
||||||
rabbitmq-server \
|
rabbitmq-server \
|
||||||
netcat-openbsd \
|
netcat-openbsd \
|
||||||
vim \
|
curl \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
git-core \
|
||||||
|
vim
|
||||||
RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen \
|
RUN echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen \
|
||||||
&& locale-gen en_US.UTF-8 \
|
&& locale-gen en_US.UTF-8 \
|
||||||
&& update-locale
|
&& update-locale
|
||||||
|
@ -36,6 +45,10 @@ RUN pip3 install setuptools
|
||||||
RUN pip install -r /requirements.txt
|
RUN pip install -r /requirements.txt
|
||||||
RUN pip3 install -r /requirements.txt
|
RUN pip3 install -r /requirements.txt
|
||||||
RUN mkdir /opt/workdir
|
RUN mkdir /opt/workdir
|
||||||
|
RUN apt-get purge -y autoconf g++ make python3-dev libjpeg-dev libmariadbclient-dev \
|
||||||
|
&& apt-get autoremove -y \
|
||||||
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
|
&& apt-get clean
|
||||||
COPY . /opt/layerindex
|
COPY . /opt/layerindex
|
||||||
COPY settings.py /opt/layerindex/settings.py
|
COPY settings.py /opt/layerindex/settings.py
|
||||||
COPY docker/updatelayers.sh /opt/updatelayers.sh
|
COPY docker/updatelayers.sh /opt/updatelayers.sh
|
||||||
|
|
Loading…
Reference in New Issue
Block a user