ddbd0db137
They clutter up the image and cause Twistlock to false positive
188 lines
5.6 KiB
Docker
188 lines
5.6 KiB
Docker
# vim:ft=dockerfile
|
|
|
|
FROM phusion/baseimage:0.9.19
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
ENV HOME /root
|
|
|
|
# This is so we don't break http golang/go#17066
|
|
# When Ubuntu has nginx >= 1.11.0 we can switch back.
|
|
RUN add-apt-repository ppa:nginx/development
|
|
|
|
# Install system packages
|
|
RUN apt-get update && apt-get upgrade -y # 22FEB2017
|
|
RUN apt-get install -y \
|
|
dnsmasq \
|
|
g++ \
|
|
gdb \
|
|
gdebi-core \
|
|
git \
|
|
jpegoptim \
|
|
libevent-2.0.5 \
|
|
libevent-dev \
|
|
libffi-dev \
|
|
libfreetype6-dev \
|
|
libgpgme11 \
|
|
libgpgme11-dev \
|
|
libjpeg62 \
|
|
libjpeg62-dev \
|
|
libjpeg8 \
|
|
libldap-2.4-2 \
|
|
libldap2-dev \
|
|
libmagic1 \
|
|
libpq-dev \
|
|
libpq5 \
|
|
libsasl2-dev \
|
|
libsasl2-modules \
|
|
monit \
|
|
nginx \
|
|
nodejs \
|
|
npm \
|
|
optipng \
|
|
python-dbg \
|
|
python-dev \
|
|
python-pip \
|
|
python-virtualenv
|
|
|
|
# Install python dependencies
|
|
ADD requirements.txt requirements.txt
|
|
RUN virtualenv --distribute venv
|
|
RUN venv/bin/pip install -r requirements.txt # 07SEP2016
|
|
RUN venv/bin/pip freeze
|
|
|
|
# Check python dependencies for the GPL
|
|
# Due to the following bug, pip results must be piped to a file before grepping:
|
|
# https://github.com/pypa/pip/pull/3304
|
|
RUN cat requirements.txt | grep -v "^-e" | awk -F'==' '{print $1}' | xargs venv/bin/pip --disable-pip-version-check show > pipinfo.txt && \
|
|
test -z $(cat pipinfo.txt | grep GPL | grep -v LGPL) && \
|
|
rm pipinfo.txt
|
|
|
|
# Install cfssl
|
|
RUN mkdir /gocode
|
|
ENV GOPATH /gocode
|
|
RUN curl -O https://storage.googleapis.com/golang/go1.6.linux-amd64.tar.gz && \
|
|
tar -xvf go1.6.linux-amd64.tar.gz && \
|
|
mv go /usr/local && \
|
|
rm -rf go1.6.linux-amd64.tar.gz && \
|
|
/usr/local/go/bin/go get -u github.com/cloudflare/cfssl/cmd/cfssl && \
|
|
/usr/local/go/bin/go get -u github.com/cloudflare/cfssl/cmd/cfssljson && \
|
|
cp /gocode/bin/cfssljson /bin/cfssljson && \
|
|
cp /gocode/bin/cfssl /bin/cfssl && \
|
|
rm -rf /gocode && rm -rf /usr/local/go
|
|
|
|
# Install jwtproxy
|
|
RUN curl -L -o /usr/local/bin/jwtproxy https://github.com/coreos/jwtproxy/releases/download/v0.0.1/jwtproxy-linux-x64
|
|
RUN chmod +x /usr/local/bin/jwtproxy
|
|
|
|
# Install prometheus-aggregator
|
|
RUN curl -L -o /usr/local/bin/prometheus-aggregator https://github.com/coreos/prometheus-aggregator/releases/download/v0.0.1-alpha/prometheus-aggregator
|
|
RUN chmod +x /usr/local/bin/prometheus-aggregator
|
|
|
|
# Install Webpack, Typescript
|
|
RUN ln -s /usr/bin/nodejs /usr/bin/node
|
|
ADD package.json package.json
|
|
ADD tsconfig.json tsconfig.json
|
|
ADD webpack.config.js webpack.config.js
|
|
ADD typings.json typings.json
|
|
RUN npm install
|
|
RUN npm link typescript
|
|
|
|
# Add static files
|
|
ADD static static
|
|
|
|
# Run Webpack
|
|
RUN node_modules/.bin/webpack --progress
|
|
|
|
# Run front-end tests
|
|
ARG RUN_TESTS=true
|
|
ENV RUN_TESTS ${RUN_TESTS}
|
|
|
|
ADD karma.conf.js karma.conf.js
|
|
RUN if [ "$RUN_TESTS" = true ]; then \
|
|
npm test; \
|
|
fi
|
|
|
|
# Install Grunt
|
|
RUN npm install -g grunt-cli
|
|
|
|
# Install Grunt depenencies
|
|
ADD grunt grunt
|
|
RUN cd grunt && npm install
|
|
|
|
# Run grunt
|
|
RUN cd grunt && grunt
|
|
|
|
# Optimize our images
|
|
ADD static/img static/img
|
|
RUN jpegoptim static/img/**/*.jpg
|
|
RUN optipng -clobber -quiet static/img/**/*.png
|
|
|
|
RUN apt-get remove -y --auto-remove python-dev g++ libjpeg62-dev libevent-dev libldap2-dev libsasl2-dev libpq-dev libffi-dev libgpgme11-dev nodejs npm jpegoptim optipng
|
|
RUN apt-get autoremove -y
|
|
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
# Set up the init system
|
|
ADD conf/init/copy_config_files.sh /etc/my_init.d/
|
|
ADD conf/init/doupdatelimits.sh /etc/my_init.d/
|
|
ADD conf/init/copy_syslog_config.sh /etc/my_init.d/
|
|
ADD conf/init/certs_create.sh /etc/my_init.d/
|
|
ADD conf/init/certs_install.sh /etc/my_init.d/
|
|
ADD conf/init/nginx_conf_create.sh /etc/my_init.d/
|
|
ADD conf/init/runmigration.sh /etc/my_init.d/
|
|
ADD conf/init/syslog-ng.conf /etc/syslog-ng/
|
|
ADD conf/init/zz_boot.sh /etc/my_init.d/
|
|
ADD conf/init/service/ /etc/service/
|
|
RUN rm -rf /etc/service/syslog-forwarder
|
|
|
|
ADD conf/kill-buildmanager.sh /usr/local/bin/kill-buildmanager.sh
|
|
ADD conf/monitrc /etc/monit/monitrc
|
|
RUN chmod 0600 /etc/monit/monitrc
|
|
|
|
# remove after phusion/baseimage-docker#338 is fixed
|
|
ADD conf/init/logrotate.conf /etc/logrotate.conf
|
|
|
|
# Download any external libs.
|
|
RUN mkdir static/fonts static/ldn
|
|
ADD external_libraries.py external_libraries.py
|
|
RUN venv/bin/python -m external_libraries
|
|
RUN mkdir -p /usr/local/nginx/logs/
|
|
|
|
# TODO(ssewell): only works on a detached head, make work with ref
|
|
ADD .git/HEAD GIT_HEAD
|
|
|
|
# Add all of the files!
|
|
ADD . .
|
|
RUN pyclean .
|
|
|
|
# Cleanup any NPM-related stuff.
|
|
RUN rm -rf /root/.npm
|
|
RUN rm -rf /.npm
|
|
RUN rm -rf /usr/local/lib/node_modules
|
|
RUN rm -rf /root/node_modules
|
|
RUN rm -rf /node_modules
|
|
RUN rm -rf /grunt
|
|
|
|
# Run the tests
|
|
ENV RUN_ACI_TESTS False
|
|
ADD requirements-tests.txt requirements-tests.txt
|
|
|
|
RUN if [ "$RUN_TESTS" = true ]; then \
|
|
venv/bin/pip install -r requirements-tests.txt ;\
|
|
fi
|
|
|
|
|
|
RUN if [ "$RUN_TESTS" = true ]; then \
|
|
TEST=true PYTHONPATH="." venv/bin/py.test --timeout=7200 --verbose \
|
|
--show-count -x --color=no ./; \
|
|
fi
|
|
|
|
RUN if [ "$RUN_TESTS" = true ]; then \
|
|
TEST=true PYTHONPATH="." venv/bin/py.test --timeout=7200 --verbose \
|
|
--show-count -x --color=no test/registry_tests.py ; \
|
|
fi
|
|
|
|
RUN PYTHONPATH=. venv/bin/alembic heads | grep -E '^[0-9a-f]+ \(head\)$' > ALEMBIC_HEAD
|
|
|
|
VOLUME ["/conf/stack", "/var/log", "/datastorage", "/tmp", "/conf/etcd"]
|
|
|
|
EXPOSE 443 8443 80
|