id
stringlengths 1
8
| Commit Hash
stringlengths 40
32.8k
⌀ | Subject
stringlengths 3
165
⌀ | Message
stringlengths 6
462
⌀ | Old Contents
stringlengths 45
32.8k
⌀ | New Contents
stringlengths 67
32.8k
⌀ | Ground truth
stringclasses 11
values |
---|---|---|---|---|---|---|
377 | f7686f581ba49536f247c87e3bed67eed6959186 | Bumped source to 20200704-4564ae1 | Bumped source to 20200704-4564ae1
| FROM docker.pkg.github.com/dock0/arch/arch:20200704-9afb8c6
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| FROM docker.pkg.github.com/dock0/arch/arch:20200704-4564ae1
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| feature addition |
168 | 470fd4cd049744614ac31ede7531d94a0db8e63b | Bumped source to 20211103-04550ce | Bumped source to 20211103-04550ce
| FROM docker.pkg.github.com/dock0/arch/arch:20211103-74d018e
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| FROM docker.pkg.github.com/dock0/arch/arch:20211103-04550ce
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| bug fix |
2298 | 6d6524eae9219d832d27dc79ee043baec9422d9a | Added gsutil | Added gsutil
| FROM nvidia/cuda:10.1-cudnn7-devel-ubuntu18.04
MAINTAINER nejumi <[email protected]>
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y software-properties-common && \
add-apt-repository ppa:git-core/ppa && \
apt-get update && \
apt-get install -y git build-essential cmake && \
git --version
RUN apt-get update && \
apt-get install -y \
curl \
wget \
bzip2 \
ca-certificates \
libglib2.0-0 \
libxext6 \
libsm6 \
libxrender1 \
git \
vim \
mercurial \
subversion \
cmake \
libboost-dev \
libboost-system-dev \
libboost-filesystem-dev \
gcc \
g++
# Add OpenCL ICD files for LightGBM
RUN mkdir -p /etc/OpenCL/vendors && \
echo "libnvidia-opencl.so.1" > /etc/OpenCL/vendors/nvidia.icd
##############################################################################
# TINI
##############################################################################
# Install tini
ENV TINI_VERSION v0.14.0
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
RUN chmod +x /tini
##############################################################################
# Miniconda python
##############################################################################
RUN apt-get update && \
apt-get install -y wget bzip2 ca-certificates && \
rm -rf /var/lib/apt/lists/*
RUN wget https://repo.anaconda.com/miniconda/Miniconda3-py37_4.8.3-Linux-x86_64.sh && \
/bin/bash Miniconda3-py37_4.8.3-Linux-x86_64.sh -b -p /opt/conda && \
rm Miniconda3-py37_4.8.3-Linux-x86_64.sh
ENV PATH /opt/conda/bin:$PATH
RUN pip install --upgrade pip
RUN apt-get update && \
# Miniconda's build of gcc is way out of date; monkey-patch some linking problems that affect
# packages like xgboost and Shapely
rm /opt/conda/lib/libstdc++* && rm /opt/conda/lib/libgomp.* && \
ln -s /usr/lib/x86_64-linux-gnu/libgomp.so.1 /opt/conda/lib/libgomp.so.1 && \
ln -s /usr/lib/x86_64-linux-gnu/libstdc++.so.6 /opt/conda/lib/libstdc++.so.6
RUN cd /usr/local/src && pip install scikit-learn tables
RUN cd /usr/local/src && conda install lxml h5py hdf5 html5lib beautifulsoup4
##############################################################################
# LightGBM-GPU
##############################################################################
RUN cd /usr/local/src && mkdir lightgbm && cd lightgbm && \
git clone -b v2.3.1 https://github.com/microsoft/LightGBM && \
cd LightGBM && mkdir build && cd build && \
cmake -DUSE_GPU=1 -DOpenCL_LIBRARY=/usr/local/cuda/lib64/libOpenCL.so -DOpenCL_INCLUDE_DIR=/usr/local/cuda/include/ .. && \
make OPENCL_HEADERS=/usr/local/cuda/targets/x86_64-linux/include LIBOPENCL=/usr/local/cuda/targets/x86_64-linux/lib
ENV PATH /usr/local/src/lightgbm/LightGBM:${PATH}
RUN /bin/bash -c "cd /usr/local/src/lightgbm/LightGBM/python-package && python setup.py install --precompile"
##############################################################################
# XGBoost-GPU
##############################################################################
RUN cd /usr/local/src && pip install xgboost
##############################################################################
# tensorflow
##############################################################################
RUN cd /usr/local/src && pip --no-cache-dir install -I -U tensorflow==2.2.0
RUN cd /usr/local/src && pip install keras
##############################################################################
# rapidsai
##############################################################################
RUN cd /usr/local/src && conda install -c rapidsai -c nvidia -c conda-forge -c defaults rapids=0.14 python=3.7 cudatoolkit=10.1
RUN conda install -y -c conda-forge ipywidgets && jupyter nbextension enable --py widgetsnbextension
##############################################################################
# xfeat
##############################################################################
RUN cd /usr/local/src && git clone --recursive https://github.com/pfnet-research/xfeat && \
cd xfeat && python setup.py install
##############################################################################
# other libraries
##############################################################################
RUN cd /usr/local/src && pip install albumentations seaborn pyarrow fastparquet catboost kaggle \
category_encoders optuna opencv-python image-classifiers tsfresh librosa
RUN cd /usr/local/src && conda install pytorch torchvision cudatoolkit=10.1 -c pytorch
RUN cd /usr/local/src && pip install git+https://github.com/hyperopt/hyperopt.git
| null | bug fix |
5 | c708551d2329b5cfc37a6b10455c168e1f3e50db | fix dirs | fix dirs
| FROM ubuntu
LABEL maintainer="[email protected]"
ENV PHP_VERSION=8.0
ENV DEBIAN_FRONTEND=noninteractive
RUN useradd ttrss
# add PHP repository
RUN apt-get update && \
apt-get install -y software-properties-common && \
add-apt-repository ppa:ondrej/php
# install PHP and extensions
RUN apt-get update && apt-get install -y \
git nginx supervisor php${PHP_VERSION}-fpm php${PHP_VERSION}-cli php${PHP_VERSION}-curl php${PHP_VERSION}-gd \
php${PHP_VERSION}-pgsql php${PHP_VERSION}-mysql php${PHP_VERSION}-mbstring php${PHP_VERSION}-xml php${PHP_VERSION}-intl \
&& apt-get clean && rm -rf /var/lib/apt/lists/* && mkdir -p /var/run/php
# enable mbstring modules
RUN phpenmod -v ${PHP_VERSION} mbstring && phpenmod -v ${PHP_VERSION} xml
# add ttrss as the only nginx site
ADD ttrss.nginx.conf /etc/nginx/sites-available/ttrss
RUN sed -i "s/PHP_VERSION/${PHP_VERSION}/" /etc/nginx/sites-available/ttrss
RUN ln -s /etc/nginx/sites-available/ttrss /etc/nginx/sites-enabled/ttrss
RUN rm /etc/nginx/sites-enabled/default
# install ttrss
WORKDIR /var/www
RUN rm -rf *
RUN git clone https://git.tt-rss.org/fox/tt-rss.git .
# expose only nginx HTTP port
EXPOSE 80
# set configuration to look at Docker ENV variables
ADD config.docker.php config.php
# set default settings
ENV TTRSS_SELF_URL_PATH http://localhost
ENV TTRSS_DB_NAME ttrss
ENV TTRSS_DB_USER ttrss
ENV TTRSS_DB_PASS ttrss
ENV TTRSS_SESSION_COOKIE_LIFETIME 86400000
ENV TTRSS_ICONS_DIR feed-icons
ENV TTRSS_LOCK_DIRECTORY lock
ENV TTRSS_PLUGINS auth_internal
ENV TTRSS_CONFIG_VERSION 26
# set permissions on directories
RUN chown www-data:www-data -R /var/www && \
chmod -R 777 images && \
chmod -R 777 upload && \
chmod -R 777 export && \
chmod -R 777 feed-icons && \
chmod -R 777 lock
# always re-configure database with current ENV when RUNning container, then monitor all services
ADD configure-db.php /configure-db.php
ADD supervisord.conf /etc/supervisor/conf.d/supervisord.conf
RUN sed -i "s/PHP_VERSION/${PHP_VERSION}/" /etc/supervisor/conf.d/supervisord.conf
CMD php /configure-db.php && supervisord -c /etc/supervisor/conf.d/supervisord.conf
| FROM ubuntu
LABEL maintainer="[email protected]"
ENV PHP_VERSION=8.0
ENV DEBIAN_FRONTEND=noninteractive
RUN useradd ttrss
# add PHP repository
RUN apt-get update && \
apt-get install -y software-properties-common && \
add-apt-repository ppa:ondrej/php
# install PHP and extensions
RUN apt-get update && apt-get install -y \
git nginx supervisor php${PHP_VERSION}-fpm php${PHP_VERSION}-cli php${PHP_VERSION}-curl php${PHP_VERSION}-gd \
php${PHP_VERSION}-pgsql php${PHP_VERSION}-mysql php${PHP_VERSION}-mbstring php${PHP_VERSION}-xml php${PHP_VERSION}-intl \
&& apt-get clean && rm -rf /var/lib/apt/lists/* && mkdir -p /var/run/php
# enable mbstring modules
RUN phpenmod -v ${PHP_VERSION} mbstring && phpenmod -v ${PHP_VERSION} xml
# add ttrss as the only nginx site
ADD ttrss.nginx.conf /etc/nginx/sites-available/ttrss
RUN sed -i "s/PHP_VERSION/${PHP_VERSION}/" /etc/nginx/sites-available/ttrss
RUN ln -s /etc/nginx/sites-available/ttrss /etc/nginx/sites-enabled/ttrss
RUN rm /etc/nginx/sites-enabled/default
# install ttrss
WORKDIR /var/www
RUN rm -rf *
RUN git clone https://git.tt-rss.org/fox/tt-rss.git .
# expose only nginx HTTP port
EXPOSE 80
# set configuration to look at Docker ENV variables
ADD config.docker.php config.php
# set default settings
ENV TTRSS_SELF_URL_PATH http://localhost
ENV TTRSS_DB_NAME ttrss
ENV TTRSS_DB_USER ttrss
ENV TTRSS_DB_PASS ttrss
ENV TTRSS_SESSION_COOKIE_LIFETIME 86400000
ENV TTRSS_CACHE_DIR cache
ENV TTRSS_ICONS_DIR feed-icons
ENV TTRSS_LOCK_DIRECTORY lock
ENV TTRSS_PLUGINS auth_internal
ENV TTRSS_CONFIG_VERSION 26
# set permissions on directories
RUN chown www-data:www-data -R /var/www && \
chmod -R 777 ${TTRSS_CACHE_DIR}/images && \
chmod -R 777 ${TTRSS_CACHE_DIR}/upload && \
chmod -R 777 ${TTRSS_CACHE_DIR}/export && \
chmod -R 777 feed-icons && \
chmod -R 777 lock
# always re-configure database with current ENV when RUNning container, then monitor all services
ADD configure-db.php /configure-db.php
ADD supervisord.conf /etc/supervisor/conf.d/supervisord.conf
RUN sed -i "s/PHP_VERSION/${PHP_VERSION}/" /etc/supervisor/conf.d/supervisord.conf
CMD php /configure-db.php && supervisord -c /etc/supervisor/conf.d/supervisord.conf
| bug fix |
353 | e9cf413cb44d32b1934826c194d597f02075d48a | Updated Dockerfile. Try to fix error by adding key --unsafe-perm when npm install work. | Updated Dockerfile. Try to fix error by adding key --unsafe-perm when npm install work.
| # Create image based on the official Node 6 image from dockerhub
FROM ubuntu:14.04
# Create a directory where our app will be placed
RUN mkdir -p /usr/src/app/docker
# Change directory so that our commands run inside this new directory
WORKDIR /usr/src/app
# Copy dependency definitions
COPY package.json /usr/src/app
COPY docker/bootstrap.sh /usr/src/app/docker
RUN apt-get update
RUN apt-get install -y curl
RUN apt-get install -y nano
RUN apt-get install -y nodejs
RUN apt-get install -y npm
RUN apt-get install -y git
RUN apt-get install -y g++
RUN apt-get install -y libkrb5-dev
RUN apt-get install -y dos2unix
RUN apt-get install -y nginx
# Install dependecies & nginx
RUN /bin/bash -c "dos2unix ./docker/bootstrap.sh"
RUN /bin/bash -c "source ./docker/bootstrap.sh"
# Get all the code needed to run the app
COPY . /usr/src/app
# Install dependecies
RUN npm install
RUN gulp
# Serve the app
ENTRYPOINT service nginx start && /bin/bash | # Create image based on the official Node 6 image from dockerhub
FROM ubuntu:14.04
# Create a directory where our app will be placed
RUN mkdir -p /usr/src/app/docker
# Change directory so that our commands run inside this new directory
WORKDIR /usr/src/app
# Copy dependency definitions
COPY package.json /usr/src/app
COPY docker/bootstrap.sh /usr/src/app/docker
RUN apt-get update
RUN apt-get install -y curl
RUN apt-get install -y nano
RUN apt-get install -y nodejs
RUN apt-get install -y npm
RUN apt-get install -y git
RUN apt-get install -y g++
RUN apt-get install -y libkrb5-dev
RUN apt-get install -y dos2unix
RUN apt-get install -y nginx
# Install dependecies & nginx
RUN /bin/bash -c "dos2unix ./docker/bootstrap.sh"
RUN /bin/bash -c "source ./docker/bootstrap.sh"
# Get all the code needed to run the app
COPY . /usr/src/app
# Install dependecies
RUN npm install --unsafe-perm
RUN gulp
# Serve the app
ENTRYPOINT service nginx start && /bin/bash | code refactoring |
110 | 98773482dcedb2aefca60cb0bac01a8c01f2f028 | Fix syntax error with single quote | Fix syntax error with single quote
| FROM ubuntu:latest
MAINTAINER Oleg Khryptul <[email protected]>
RUN apt-get update
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get install -y vim git python-pip wget openjdk-7-jre
RUN pip install flake8
RUN useradd dev
RUN echo "ALL ALL = (ALL) NOPASSWD: ALL" >> /etc/sudoers
RUN cp /usr/share/zoneinfo/America/Los_Angeles /etc/localtime
RUN dpkg-reconfigure locales
RUN locale-gen en_US.UTF-8
RUN /usr/sbin/update-locale LANG=en_US.UTF-8
WORKDIR /home/dev
ENV HOME /home/dev
ENV LC_ALL en_US.UTF-8
RUN chown -R dev:dev $HOME/
USER dev
# setup pathogen vim plugin manager
RUN mkdir -p $HOME/.vim/autoload $HOME/.vim/bundle
RUN wget -P $HOME/.vim/autoload https://tpo.pe/pathogen.vim
RUN echo 'execute pathogen#infect()' >> $HOME/.vimrc && \
echo 'syntax on' >> $HOME/.vimrc && \
echo 'filetype plugin indent on' >> $HOME/.vimrc
# Powerline fonts
RUN mkdir -p $HOME/.fonts $HOME/.config/fontconfig/conf.d
RUN wget -P $HOME/.fonts https://github.com/Lokaltog/powerline/raw/develop/font/PowerlineSymbols.otf
RUN wget -P $HOME/.config/fontconfig/conf.d/ https://github.com/Lokaltog/powerline/raw/develop/font/10-powerline-symbols.conf
RUN fc-cache -vf $HOME/.fonts/
# Vim plugins
# Sensible
RUN git clone git://github.com/tpope/vim-sensible.git $HOME/.vim/bundle
# Dockerfile syntax & snippet plugin
RUN git clone https://github.com/ekalinin/Dockerfile.vim.git $HOME/.vim/bundle/Dockerfile
# Vim airline
RUN git clone https://github.com/bling/vim-airline $HOME/.vim/bundle/vim-airline
RUN echo 'set laststatus=2' >> $HOME/.vimrc && \
echo 'let g:airline#extensions#tabline#enabled = 1' >> $HOME/.vimrc && \
echo 'let g:airline#extensions#tabline#left_sep = \' \'' >> $HOME/.vimrc && \
echo 'let g:airline#extensions#tabline#left_alt_sep = \'|\' >> $HOME/.vimrc
# CtrlP
RUN git clone https://github.com/kien/ctrlp.vim.git $HOME/.vim/bundle/ctrlp.vim
#RUN vim -u $HOME/.vim/bundles.vim +PluginInstall +qall
ENTRYPOINT ["vim"]
| FROM ubuntu:latest
MAINTAINER Oleg Khryptul <[email protected]>
RUN apt-get update
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get install -y vim git python-pip wget openjdk-7-jre
RUN pip install flake8
RUN useradd dev
RUN echo "ALL ALL = (ALL) NOPASSWD: ALL" >> /etc/sudoers
RUN cp /usr/share/zoneinfo/America/Los_Angeles /etc/localtime
RUN dpkg-reconfigure locales
RUN locale-gen en_US.UTF-8
RUN /usr/sbin/update-locale LANG=en_US.UTF-8
WORKDIR /home/dev
ENV HOME /home/dev
ENV LC_ALL en_US.UTF-8
RUN chown -R dev:dev $HOME/
USER dev
# setup pathogen vim plugin manager
RUN mkdir -p $HOME/.vim/autoload $HOME/.vim/bundle
RUN wget -P $HOME/.vim/autoload https://tpo.pe/pathogen.vim
RUN echo 'execute pathogen#infect()' >> $HOME/.vimrc && \
echo 'syntax on' >> $HOME/.vimrc && \
echo 'filetype plugin indent on' >> $HOME/.vimrc
# Powerline fonts
RUN mkdir -p $HOME/.fonts $HOME/.config/fontconfig/conf.d
RUN wget -P $HOME/.fonts https://github.com/Lokaltog/powerline/raw/develop/font/PowerlineSymbols.otf
RUN wget -P $HOME/.config/fontconfig/conf.d/ https://github.com/Lokaltog/powerline/raw/develop/font/10-powerline-symbols.conf
RUN fc-cache -vf $HOME/.fonts/
# Vim plugins
# Sensible
RUN git clone git://github.com/tpope/vim-sensible.git $HOME/.vim/bundle
# Dockerfile syntax & snippet plugin
RUN git clone https://github.com/ekalinin/Dockerfile.vim.git $HOME/.vim/bundle/Dockerfile
# Vim airline
RUN git clone https://github.com/bling/vim-airline $HOME/.vim/bundle/vim-airline
RUN echo 'set laststatus=2' >> $HOME/.vimrc && \
echo 'let g:airline#extensions#tabline#enabled = 1' >> $HOME/.vimrc && \
echo 'let g:airline#extensions#tabline#left_sep = \' \'' >> $HOME/.vimrc && \
echo 'let g:airline#extensions#tabline#left_alt_sep = \'|\'' >> $HOME/.vimrc
# CtrlP
RUN git clone https://github.com/kien/ctrlp.vim.git $HOME/.vim/bundle/ctrlp.vim
#RUN vim -u $HOME/.vim/bundles.vim +PluginInstall +qall
ENTRYPOINT ["vim"]
| code refactoring |
2155 | 0f3f46a355170ee64bdba76fcb5fd422afc5ea2d | update to crystal 0.23.1 | update to crystal 0.23.1
| FROM drujensen/crystal:0.23.0
WORKDIR /app/user
ADD . /app/user
RUN crystal deps
CMD ["crystal", "spec"]
| null | bug fix |
314 | 85fd660f031ee1021845bb419fa1a41359d6b984 | Update Dockerfile for launch.sh script | Update Dockerfile for launch.sh script
| FROM gliderlabs/alpine
MAINTAINER Steven Borrelli <[email protected]>
ENV CONSUL_TEMPLATE_VERSION=0.7.0
RUN apk-install haproxy
ADD https://github.com/hashicorp/consul-template/releases/download/v${CONSUL_TEMPLATE_VERSION}/consul-template_${CONSUL_TEMPLATE_VERSION}_linux_amd64.tar.gz /
RUN tar zxvf consul-template_${CONSUL_TEMPLATE_VERSION}_linux_amd64.tar.gz && \
mv consul-template_${CONSUL_TEMPLATE_VERSION}_linux_amd64/consul-template /usr/local/bin/consul-template && \
rm -rf /consul-template_${CONSUL_TEMPLATE_VERSION}_linux_amd64.tar.gz && \
rm -rf /consul-template_${CONSUL_TEMPLATE_VERSION}_linux_amd64
RUN mkdir -p /haproxy /consul-template/config.d /consul-template/template.d
ADD config/ /consul-template/config.d/
ADD template/ /consul-template/template.d/
CMD ["/usr/local/bin/consul-template", "-config", "/consul-template/config.d"]
| FROM gliderlabs/alpine
MAINTAINER Steven Borrelli <[email protected]>
ENV CONSUL_TEMPLATE_VERSION=0.7.0
RUN apk-install bash haproxy
ADD https://github.com/hashicorp/consul-template/releases/download/v${CONSUL_TEMPLATE_VERSION}/consul-template_${CONSUL_TEMPLATE_VERSION}_linux_amd64.tar.gz /
RUN tar zxvf consul-template_${CONSUL_TEMPLATE_VERSION}_linux_amd64.tar.gz && \
mv consul-template_${CONSUL_TEMPLATE_VERSION}_linux_amd64/consul-template /usr/local/bin/consul-template && \
rm -rf /consul-template_${CONSUL_TEMPLATE_VERSION}_linux_amd64.tar.gz && \
rm -rf /consul-template_${CONSUL_TEMPLATE_VERSION}_linux_amd64
RUN mkdir -p /haproxy /consul-template/config.d /consul-template/template.d
ADD config/ /consul-template/config.d/
ADD template/ /consul-template/template.d/
ADD launch.sh /launch.sh
CMD ["/launch.sh"]
| code refactoring |
239 | b055f7b72c69b37e7f5fe29d58b18406f3f9531f | bug: missing ping | bug: missing ping
added to enable icmp checks | # Cabot Dockerfile
#
# https://github.com/shoonoise/cabot-docker
#
# VERSION 1.0
FROM ubuntu:14.04
MAINTAINER Alexander Kushnarev <[email protected]>
# Prepare
RUN apt-get update
RUN apt-get install -y build-essential nodejs libpq-dev python-dev npm nginx git curl libldap2-dev libsasl2-dev
RUN curl -OL https://raw.github.com/pypa/pip/master/contrib/get-pip.py
RUN python get-pip.py
# Deploy cabot
RUN git clone https://github.com/arachnys/cabot.git /cabot
ADD fixture.json /cabot/
ADD run.sh /cabot/
ADD nginx.conf /etc/nginx/nginx.conf
ADD migrate.sh /cabot/
# Install dependencies
RUN pip install -e /cabot/
RUN npm install --no-color -g coffee-script [email protected] --registry http://registry.npmjs.org/
# Set env var
ENV PATH $PATH:/cabot/
ENV PYTHONPATH $PYTHONPATH:/cabot/
# Cabot settings
ENV DJANGO_SETTINGS_MODULE cabot.settings
ENV HIPCHAT_URL https://api.hipchat.com/v1/rooms/message
ENV LOG_FILE /var/log/cabot
ENV PORT 5000
ENV ADMIN_EMAIL [email protected]
ENV CABOT_FROM_EMAIL [email protected]
ENV DEBUG t
# URL of calendar to synchronise rota with
ENV CALENDAR_ICAL_URL http://www.google.com/calendar/ical/example.ics
ENV DJANGO_SECRET_KEY 2FL6ORhHwr5eX34pP9mMugnIOd3jzVuT45f7w430Mt5PnEwbcJgma0q8zUXNZ68A
# Hostname of your Graphite server instance
ENV GRAPHITE_API http://graphite.example.com/
ENV GRAPHITE_USER username
ENV GRAPHITE_PASS password
# Hipchat integration
ENV HIPCHAT_ALERT_ROOM 48052
ENV HIPCHAT_API_KEY your_hipchat_api_key
# Jenkins integration
ENV JENKINS_API https://jenkins.example.com/
ENV JENKINS_USER username
ENV JENKINS_PASS password
# SMTP settings
ENV SES_HOST email-smtp.us-east-1.amazonaws.com
ENV SES_USER username
ENV SES_PASS password
ENV SES_PORT 465
# Twilio integration for SMS and telephone alerts
ENV TWILIO_ACCOUNT_SID your_account_sid
ENV TWILIO_AUTH_TOKEN your_auth_token
ENV TWILIO_OUTGOING_NUMBER +14155551234
# Used for pointing links back in alerts etc.
ENV WWW_HTTP_HOST cabot.example.com
ENV WWW_SCHEME http
RUN ["ln","-s","/usr/bin/nodejs","/usr/bin/node"]
WORKDIR /cabot/
CMD . /cabot/migrate.sh && /cabot/run.sh
| # Cabot Dockerfile
#
# https://github.com/shoonoise/cabot-docker
#
# VERSION 1.0
FROM ubuntu:14.04
MAINTAINER Alexander Kushnarev <[email protected]>
# Prepare
RUN apt-get update
RUN apt-get install -y build-essential nodejs libpq-dev python-dev npm nginx git curl libldap2-dev libsasl2-dev iputils-ping
RUN curl -OL https://raw.github.com/pypa/pip/master/contrib/get-pip.py
RUN python get-pip.py
# Deploy cabot
RUN git clone https://github.com/arachnys/cabot.git /cabot
ADD fixture.json /cabot/
ADD run.sh /cabot/
ADD nginx.conf /etc/nginx/nginx.conf
ADD migrate.sh /cabot/
# Install dependencies
RUN pip install -e /cabot/
RUN npm install --no-color -g coffee-script [email protected] --registry http://registry.npmjs.org/
# Set env var
ENV PATH $PATH:/cabot/
ENV PYTHONPATH $PYTHONPATH:/cabot/
# Cabot settings
ENV DJANGO_SETTINGS_MODULE cabot.settings
ENV HIPCHAT_URL https://api.hipchat.com/v1/rooms/message
ENV LOG_FILE /var/log/cabot
ENV PORT 5000
ENV ADMIN_EMAIL [email protected]
ENV CABOT_FROM_EMAIL [email protected]
ENV DEBUG t
# URL of calendar to synchronise rota with
ENV CALENDAR_ICAL_URL http://www.google.com/calendar/ical/example.ics
ENV DJANGO_SECRET_KEY 2FL6ORhHwr5eX34pP9mMugnIOd3jzVuT45f7w430Mt5PnEwbcJgma0q8zUXNZ68A
# Hostname of your Graphite server instance
ENV GRAPHITE_API http://graphite.example.com/
ENV GRAPHITE_USER username
ENV GRAPHITE_PASS password
# Hipchat integration
ENV HIPCHAT_ALERT_ROOM 48052
ENV HIPCHAT_API_KEY your_hipchat_api_key
# Jenkins integration
ENV JENKINS_API https://jenkins.example.com/
ENV JENKINS_USER username
ENV JENKINS_PASS password
# SMTP settings
ENV SES_HOST email-smtp.us-east-1.amazonaws.com
ENV SES_USER username
ENV SES_PASS password
ENV SES_PORT 465
# Twilio integration for SMS and telephone alerts
ENV TWILIO_ACCOUNT_SID your_account_sid
ENV TWILIO_AUTH_TOKEN your_auth_token
ENV TWILIO_OUTGOING_NUMBER +14155551234
# Used for pointing links back in alerts etc.
ENV WWW_HTTP_HOST cabot.example.com
ENV WWW_SCHEME http
RUN ["ln","-s","/usr/bin/nodejs","/usr/bin/node"]
WORKDIR /cabot/
CMD . /cabot/migrate.sh && /cabot/run.sh
| maintenance/other |
2111 | 565c12a49385e7a2780acb0226b2d06719ed940e | Update certbot and lexicon | Update certbot and lexicon
| FROM python:alpine3.8
LABEL maintainer="Adrien Ferrand <[email protected]>"
# Scripts in /scripts are required to be in the PATH to run properly as certbot's hooks
ENV PATH /scripts:$PATH
# Versioning
ENV LEXICON_VERSION 3.0.8
ENV CERTBOT_VERSION 0.30.0
# Let's Encrypt configuration
ENV LETSENCRYPT_STAGING false
ENV LETSENCRYPT_USER_MAIL [email protected]
ENV LETSENCRYPT_ACME_V1 false
# Lexicon configuration
ENV LEXICON_OPTIONS ""
ENV LEXICON_PROVIDER cloudflare
ENV LEXICON_PROVIDER_OPTIONS ""
# Container specific configuration
ENV PFX_EXPORT false
ENV PFX_EXPORT_PASSPHRASE ""
ENV CERTS_DIRS_MODE 0750
ENV CERTS_FILES_MODE 0640
ENV CERTS_USER_OWNER root
ENV CERTS_GROUP_OWNER root
# Install dependencies, certbot, lexicon, prepare for first start and clean
RUN apk --no-cache --update add rsyslog git libffi libxml2 libxslt libstdc++ openssl docker ethtool \
&& apk --no-cache --update --virtual build-dependencies add libffi-dev libxml2-dev libxslt-dev openssl-dev build-base linux-headers \
&& pip install "certbot==$CERTBOT_VERSION" \
&& pip install "dns-lexicon==$LEXICON_VERSION" \
&& pip install "dns-lexicon[namecheap]==$LEXICON_VERSION" \
&& pip install "dns-lexicon[route53]==$LEXICON_VERSION" \
&& pip install "dns-lexicon[softlayer]==$LEXICON_VERSION" \
&& pip install "dns-lexicon[subreg]==$LEXICON_VERSION" \
&& pip install "dns-lexicon[transip]==$LEXICON_VERSION" \
&& pip install circus \
&& mkdir -p /var/lib/letsencrypt/hooks \
&& mkdir -p /etc/circus.d \
&& apk del build-dependencies
# Copy configuration files
COPY files/run.sh /scripts/run.sh
COPY files/watch-domains.sh /scripts/watch-domains.sh
COPY files/autorestart-containers.sh /scripts/autorestart-containers.sh
COPY files/autocmd-containers.sh /scripts/autocmd-containers.sh
COPY files/crontab /etc/crontab
COPY files/circus.ini /etc/circus.ini
COPY files/letsencrypt-dns.ini /etc/circus.d/letsencrypt-dns.ini
COPY files/authenticator.sh /var/lib/letsencrypt/hooks/authenticator.sh
COPY files/cleanup.sh /var/lib/letsencrypt/hooks/cleanup.sh
COPY files/deploy-hook.sh /scripts/deploy-hook.sh
COPY files/renew.sh /scripts/renew.sh
RUN chmod +x /scripts/*
VOLUME ["/etc/letsencrypt"]
CMD ["/scripts/run.sh"]
| null | feature addition |
2120 | 1542e5110d1c5e27cecc5e5e8522a69690978d08 | Bumped source to 20210810-8833a2b | Bumped source to 20210810-8833a2b
| FROM docker.pkg.github.com/dock0/service/service:20210810-9bb62fc
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm --needed openssh
ENV ADMIN akerl
ENV KEY_URL https://id-ed25519.pub/groups/default.txt
RUN useradd -d /var/lib/ssh -M ssh_key_sync
RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh
RUN echo "$KEY_URL" > /var/lib/ssh/key_url
ADD sshd_config /etc/ssh/sshd_config
ADD run /service/sshd/run
ADD sync /var/lib/ssh/sync
RUN groupadd remote
RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN"
RUN passwd -d "$ADMIN"
| null | bug fix |
14 | 633ebc58e10cb19dcb4bb2d4f9235c68a9eaa750 | Adding RSYNC user. Adding no-install-recommends... | Adding RSYNC user. Adding no-install-recommends...
to apt-get, and moved things around. | FROM phusion/baseimage:0.9.10
MAINTAINER github.com/jasonswindle
# https://github.com/dotcloud/docker/issues/4846 and move SSH to a different port
RUN sed -i 's/session required pam_loginuid.so/#session required pam_loginuid.so/' /etc/pam.d/sshd
# Set root's password
RUN echo "root:changeme" | chpasswd
# Set correct environment variables.
ENV HOME /root
# Update apt's cache
RUN apt-get update
## Install what we need
RUN apt-get install -y \
python-pip \
man \
wget \
sudo \
software-properties-common \
locales \
ntp
# Ensure UTF-8
RUN locale-gen en_US.UTF-8 && update-locale
# Install Salt Master (of Masters)
RUN add-apt-repository ppa:saltstack/salt
# Update the apt database
RUN apt-get update
# Install Salt Master
RUN apt-get install -y salt-master
# Make this Salt Master, Master of Masters
RUN echo "order_masters: True" > /etc/salt/master.d/syndic.conf
# Set the timezone
RUN echo "US/Central" > /etc/timezone; dpkg-reconfigure tzdata
# Add runit scripts
ADD ./files/runit/ /etc/service/
# Correct the perms, so RUNIT can run...
RUN chmod 0755 -Rv /etc/service/
# SSH Config
ADD ./files/ssh/sshd_config /etc/ssh/sshd_config
# Clean up APT when done.
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
# Use baseimage-docker's init system.
CMD ["/sbin/my_init"]
| FROM phusion/baseimage:0.9.10
MAINTAINER github.com/jasonswindle
# Set correct environment variables.
ENV HOME /root
# Set root's password
RUN echo "root:changeme" | chpasswd
# Add the user rsync, touch the authorized_keys file, chown
RUN useradd rsync_user --create-home
RUN touch /home/rsync_user/.ssh/authorized_keys
RUN chown rsync_user:rsync_user -R /home/rsync_user/.ssh \
&& chmod 0700 /home/rsync_user/.ssh \
&& chmod 0644 /home/rsync_user/.ssh/authorized_keys
# Update apt's cache
RUN apt-get update
## Install what we need
RUN apt-get install -y -q --no-install-recommends \
python-pip \
man \
wget \
sudo \
software-properties-common \
locales \
ca-certificates \
ntp
# Ensure UTF-8
RUN locale-gen en_US.UTF-8 && update-locale
# Set the timezone
RUN echo "US/Central" > /etc/timezone && dpkg-reconfigure --frontend noninteractive tzdata
# Install Salt Master (of Masters)
RUN add-apt-repository ppa:saltstack/salt
# Update the apt database
RUN apt-get update
# Install Salt Master
RUN apt-get install -y -q --no-install-recommends \
salt-master
# Make this Salt Master, Master of Masters
RUN echo "order_masters: True" > /etc/salt/master.d/syndic.conf
# Add runit scripts
ADD ./files/runit/ /etc/service/
# Correct the perms, so RUNIT can run...
RUN chmod 0755 -Rv /etc/service/
# SSH Config
ADD ./files/ssh/sshd_config /etc/ssh/
# Use baseimage-docker's init system.
CMD ["/sbin/my_init"]
| code refactoring |
226 | 11781f913e26cae0eb4f714731cc7fed333bdbcb | fix paths | fix paths
| # Use an official Python runtime as a parent image
FROM python:3.6-slim
ENV PYTHONUNBUFFERED 1
ENV NODE_ENV production
# add our user and group first to make sure their IDs get assigned consistently
RUN groupadd -r zeus && useradd -r -m -g zeus zeus
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
RUN set -x \
&& apt-get -qy update \
&& apt-get -qy install -y --no-install-recommends \
gcc git python3-all python3-all-dev python3-pip \
libxml2-dev libxslt1-dev libpq-dev libffi-dev
# grab gosu for easy step-down from root
RUN set -x \
&& export GOSU_VERSION=1.10 \
&& apt-get update && apt-get install -y --no-install-recommends wget && rm -rf /var/lib/apt/lists/* \
&& wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" \
&& wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" \
&& export GNUPGHOME="$(mktemp -d)" \
&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 \
&& gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu \
&& rm -r "$GNUPGHOME" /usr/local/bin/gosu.asc \
&& chmod +x /usr/local/bin/gosu \
&& gosu nobody true \
&& apt-get purge -y --auto-remove wget
# grab tini for signal processing and zombie killing
RUN set -x \
&& export TINI_VERSION=0.14.0 \
&& apt-get update && apt-get install -y --no-install-recommends wget && rm -rf /var/lib/apt/lists/* \
&& wget -O /usr/local/bin/tini "https://github.com/krallin/tini/releases/download/v$TINI_VERSION/tini" \
&& wget -O /usr/local/bin/tini.asc "https://github.com/krallin/tini/releases/download/v$TINI_VERSION/tini.asc" \
&& export GNUPGHOME="$(mktemp -d)" \
&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys 6380DC428747F6C393FEACA59A84159D7001A4E5 \
&& gpg --batch --verify /usr/local/bin/tini.asc /usr/local/bin/tini \
&& rm -r "$GNUPGHOME" /usr/local/bin/tini.asc \
&& chmod +x /usr/local/bin/tini \
&& tini -h \
&& apt-get purge -y --auto-remove wget
RUN set -x \
&& export NODE_VERSION=8.1.4 \
&& export GNUPGHOME="$(mktemp -d)" \
# gpg keys listed at https://github.com/nodejs/node
&& for key in \
9554F04D7259F04124DE6B476D5A82AC7E37093B \
94AE36675C464D64BAFA68DD7434390BDBE9B9C5 \
0034A06D9D9B0064CE8ADF6BF1747F4AD2306D93 \
FD3A5288F042B6850C66B31F09FE44734EB7990E \
71DCFD284A79C3B38668286BC97EC7A07EDE3FC1 \
DD8F2338BAE7501E3DD5AC78C273792F7D83545D \
B9AE9905FFD7803F25714661B63B535A4C206CA9 \
C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 \
; do \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done \
&& apt-get update && apt-get install -y --no-install-recommends wget && rm -rf /var/lib/apt/lists/* \
&& wget "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.gz" \
&& wget "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
&& gpg --verify SHASUMS256.txt.asc \
&& grep " node-v$NODE_VERSION-linux-x64.tar.gz\$" SHASUMS256.txt.asc | sha256sum -c - \
&& tar -xzf "node-v$NODE_VERSION-linux-x64.tar.gz" -C /usr/local --strip-components=1 \
&& rm -r "$GNUPGHOME" "node-v$NODE_VERSION-linux-x64.tar.gz" SHASUMS256.txt.asc \
&& apt-get purge -y --auto-remove wget
RUN npm install -g yarn
COPY yarn.lock /usr/src/app/
COPY package.json /usr/src/app/
RUN yarn install
COPY requirements-base.txt /usr/src/app/
RUN pip install -r requirements-base.txt
COPY requirements-dev.txt /usr/src/app/
RUN pip install -r requirements-dev.txt
COPY requirements-test.txt /usr/src/app/
RUN pip install -r requirements-test.txt
COPY . /usr/src/app
RUN pip install -e .
RUN node_modules/.bin/webpack --config=config/webpack.config.dev.js
ENV REPO_ROOT /workspace/repos
RUN mkdir -p $REPO_ROOT
ENV PATH /usr/src/app/bin:$PATH
# Make port 8080 available to the world outside this container
EXPOSE 5000
VOLUME /workspace
ENTRYPOINT ["/usr/src/app/bin/docker-entrypoint"]
# Run Zeus
CMD ["run", "-p 5000"]
| # Use an official Python runtime as a parent image
FROM python:3.6-slim
ENV PYTHONUNBUFFERED 1
ENV NODE_ENV production
# add our user and group first to make sure their IDs get assigned consistently
RUN groupadd -r zeus && useradd -r -m -g zeus zeus
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
RUN set -x \
&& apt-get -qy update \
&& apt-get -qy install -y --no-install-recommends \
gcc git python3-all python3-all-dev python3-pip \
libxml2-dev libxslt1-dev libpq-dev libffi-dev
# grab gosu for easy step-down from root
RUN set -x \
&& export GOSU_VERSION=1.10 \
&& apt-get update && apt-get install -y --no-install-recommends wget && rm -rf /var/lib/apt/lists/* \
&& wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture)" \
&& wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/$GOSU_VERSION/gosu-$(dpkg --print-architecture).asc" \
&& export GNUPGHOME="$(mktemp -d)" \
&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 \
&& gpg --batch --verify /usr/local/bin/gosu.asc /usr/local/bin/gosu \
&& rm -r "$GNUPGHOME" /usr/local/bin/gosu.asc \
&& chmod +x /usr/local/bin/gosu \
&& gosu nobody true \
&& apt-get purge -y --auto-remove wget
# grab tini for signal processing and zombie killing
RUN set -x \
&& export TINI_VERSION=0.14.0 \
&& apt-get update && apt-get install -y --no-install-recommends wget && rm -rf /var/lib/apt/lists/* \
&& wget -O /usr/local/bin/tini "https://github.com/krallin/tini/releases/download/v$TINI_VERSION/tini" \
&& wget -O /usr/local/bin/tini.asc "https://github.com/krallin/tini/releases/download/v$TINI_VERSION/tini.asc" \
&& export GNUPGHOME="$(mktemp -d)" \
&& gpg --keyserver ha.pool.sks-keyservers.net --recv-keys 6380DC428747F6C393FEACA59A84159D7001A4E5 \
&& gpg --batch --verify /usr/local/bin/tini.asc /usr/local/bin/tini \
&& rm -r "$GNUPGHOME" /usr/local/bin/tini.asc \
&& chmod +x /usr/local/bin/tini \
&& tini -h \
&& apt-get purge -y --auto-remove wget
RUN set -x \
&& export NODE_VERSION=8.1.4 \
&& export GNUPGHOME="$(mktemp -d)" \
# gpg keys listed at https://github.com/nodejs/node
&& for key in \
9554F04D7259F04124DE6B476D5A82AC7E37093B \
94AE36675C464D64BAFA68DD7434390BDBE9B9C5 \
0034A06D9D9B0064CE8ADF6BF1747F4AD2306D93 \
FD3A5288F042B6850C66B31F09FE44734EB7990E \
71DCFD284A79C3B38668286BC97EC7A07EDE3FC1 \
DD8F2338BAE7501E3DD5AC78C273792F7D83545D \
B9AE9905FFD7803F25714661B63B535A4C206CA9 \
C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 \
; do \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done \
&& apt-get update && apt-get install -y --no-install-recommends wget && rm -rf /var/lib/apt/lists/* \
&& wget "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.gz" \
&& wget "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
&& gpg --verify SHASUMS256.txt.asc \
&& grep " node-v$NODE_VERSION-linux-x64.tar.gz\$" SHASUMS256.txt.asc | sha256sum -c - \
&& tar -xzf "node-v$NODE_VERSION-linux-x64.tar.gz" -C /usr/local --strip-components=1 \
&& rm -r "$GNUPGHOME" "node-v$NODE_VERSION-linux-x64.tar.gz" SHASUMS256.txt.asc \
&& apt-get purge -y --auto-remove wget
RUN npm install -g yarn
COPY yarn.lock /usr/src/app/
COPY package.json /usr/src/app/
RUN yarn install
COPY requirements-base.txt /usr/src/app/
RUN pip install -r requirements-base.txt
COPY requirements-dev.txt /usr/src/app/
RUN pip install -r requirements-dev.txt
COPY requirements-test.txt /usr/src/app/
RUN pip install -r requirements-test.txt
COPY . /usr/src/app
RUN pip install -e .
RUN node_modules/.bin/webpack --config=config/webpack.config.dev.js
ENV REPO_ROOT /workspace/repos
RUN mkdir -p $REPO_ROOT
ENV PATH /usr/src/app/bin:$PATH
# Make port 8080 available to the world outside this container
EXPOSE 5000
VOLUME /workspace
ENTRYPOINT ["/usr/src/app/bin/docker-entrypoint"]
# Run Zeus
CMD ["zeus", "run", "-p 5000"]
| maintenance/other |
2124 | 29adf4b74b1dd6194a49756b70ce860bd294c9b2 | [Wen Hao] - update dockerfile. | [Wen Hao] - update dockerfile.
| FROM centos:centos7
MAINTAINER Wen Hao (https://github.com/wenhao)
# Jenkins LTS packages from
# https://pkg.jenkins.io/redhat-stable/
LABEL version=v1.0.0 \
k8s.io.description="Jenkins is a continuous integration server" \
k8s.io.display-name="Jenkins 2.60.2" \
openshift.io.expose-services="8080:http" \
openshift.io.tags="jenkins,jenkins2,ci"
# install java 8
RUN yum install -y git wget zip unzip
ENV JAVA_VERSION=8u144 \
BUILD_VERSION=b01
RUN wget --no-cookies --no-check-certificate --header "Cookie: oraclelicense=accept-securebackup-cookie" "http://download.oracle.com/otn-pub/java/jdk/$JAVA_VERSION-$BUILD_VERSION/090f390dda5b47b9b721c7dfaa008135/jdk-$JAVA_VERSION-linux-x64.rpm" -O /tmp/jdk-8-linux-x64.rpm && \
yum -y install /tmp/jdk-8-linux-x64.rpm && \
alternatives --install /usr/bin/java java /usr/java/latest/bin/java 20000 && \
alternatives --install /usr/bin/jar jar /usr/java/latest/bin/jar 20000 && \
alternatives --install /usr/bin/javaws javaws /usr/java/latest/bin/javaws 20000 && \
alternatives --install /usr/bin/javac javac /usr/java/latest/bin/javac 20000
ENV JAVA_HOME /usr/java/latest
# install jenkins
ARG user=jenkins
ARG group=jenkins
ARG uid=1000
ARG gid=1000
ARG http_port=8080
ARG agent_port=50000
ARG JENKINS_VERSION=2.60.2
ENV HOME=/var/jenkins_home \
JENKINS_HOME=/var/jenkins_home \
JENKINS_ADMIN_USERNAME=admin \
JENKINS_ADMIN_PASSWORD=admin \
JENKINS_SLAVE_AGENT_PORT=${agent_port} \
JENKINS_VERSION=${JENKINS_VERSION:-2.60.2}
# Jenkins is run with user `jenkins`, uid = 1000
# If you bind mount a volume from the host or a data container,
# ensure you use the same uid
RUN groupadd -g ${gid} ${group} \
&& useradd -d "$JENKINS_HOME" -u ${uid} -g ${gid} -m -s /bin/bash ${user}
# Jenkins home directory is a volume, so configuration and build history
# can be persisted and survive image upgrades
VOLUME /var/jenkins_home
# `/usr/share/jenkins/ref/` contains all reference configuration we want
# to set on a fresh new installation. Use it to bundle additional plugins
# or config file with your custom jenkins Docker image.
RUN mkdir -p /usr/share/jenkins/ref/init.groovy.d
ENV TINI_VERSION v0.14.0
ENV TINI_SHA 6c41ec7d33e857d4779f14d9c74924cab0c7973485d2972419a3b7c7620ff5fd
# Use tini as subreaper in Docker container to adopt zombie processes
RUN curl -fsSL https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini-static-amd64 -o /bin/tini && chmod +x /bin/tini \
&& echo "$TINI_SHA /bin/tini" | sha256sum -c -
COPY ./scripts/init.groovy /usr/share/jenkins/ref/init.groovy.d/init.groovy
# jenkins.war checksum, download will be validated using it
ARG JENKINS_SHA=14d0788d89be82958a46965de039a55813f9727bd4d0592dc77905976483ba95
# Can be used to customize where jenkins.war get downloaded from
ARG JENKINS_URL=https://repo.jenkins-ci.org/public/org/jenkins-ci/main/jenkins-war/${JENKINS_VERSION}/jenkins-war-${JENKINS_VERSION}.war
# could use ADD but this one does not check Last-Modified header neither does it allow to control checksum
# see https://github.com/docker/docker/issues/8331
RUN curl -fsSL ${JENKINS_URL} -o /usr/share/jenkins/jenkins.war \
&& echo "${JENKINS_SHA} /usr/share/jenkins/jenkins.war" | sha256sum -c -
ENV JENKINS_UC http://archives.jenkins-ci.org
ENV JENKINS_UC_EXPERIMENTAL=https://updates.jenkins.io/experimental
# for main web interface:
EXPOSE ${http_port}
# will be used by attached slave agents:
EXPOSE ${agent_port}
ENV COPY_REFERENCE_FILE_LOG $JENKINS_HOME/copy_reference_file.log
COPY ./scripts/jenkins-support /usr/local/bin/jenkins-support
# from a derived Dockerfile, can use `RUN plugins.sh active.txt` to setup /usr/share/jenkins/ref/plugins from a support bundle
COPY ./scripts/install-plugins.sh /usr/local/bin/install-plugins.sh
# curl -sSL "http://username:[email protected]:port/pluginManager/api/xml?depth=1&xpath=/*/*/shortName|/*/*/version&wrapper=plugins" | perl -pe 's/.*?<shortName>([\w-]+).*?<version>([^<]+)()(<\/\w+>)+/\1 \2\n/g'|sed 's/ /:/'
COPY ./scripts/plugins.txt /usr/share/jenkins/ref/plugins.txt
# avoid banner
RUN echo -n ${JENKINS_VERSION:-2.60.2} > /usr/share/jenkins/ref/jenkins.install.UpgradeWizard.state && \
echo -n ${JENKINS_VERSION:-2.60.2} > /usr/share/jenkins/ref/jenkins.install.InstallUtil.lastExecVersion
COPY ./scripts/jenkins.sh /usr/local/bin/jenkins.sh
RUN chmod +x /usr/local/bin/install-plugins.sh /usr/local/bin/jenkins.sh && \
/usr/local/bin/install-plugins.sh < /usr/share/jenkins/ref/plugins.txt && \
chown -R ${user} $JENKINS_HOME /usr/share/jenkins/ref /usr/local/bin && \
touch "${COPY_REFERENCE_FILE_LOG}"
# install docker
RUN yum install -y yum-utils device-mapper-persistent-data lvm2 && \
yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo && \
yum makecache fast && \
yum install -y docker-ce && \
systemctl start docker
USER ${user}
ENTRYPOINT ["/bin/tini", "--", "/usr/local/bin/jenkins.sh"]
| null | code refactoring |
79 | 5451996d9263390cbf34ada2c22252d9a0b15594 | Bumped source to 20201201-cae139e | Bumped source to 20201201-cae139e
| FROM docker.pkg.github.com/dock0/arch/arch:20201201-b0a7036
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh
ENV EDITOR vim
WORKDIR /opt/build
CMD ["make", "local"]
| FROM docker.pkg.github.com/dock0/arch/arch:20201201-cae139e
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh
ENV EDITOR vim
WORKDIR /opt/build
CMD ["make", "local"]
| Not enough inforamtion |
105 | e28a824971ee6773d4f9f85a41d0f13e0351e648 | Update Node.js to v18 (#7643) | Update Node.js to v18 (#7643)
Co-authored-by: Renovate Bot <[email protected]> | FROM node:14
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y xorg xvfb libxss-dev libgtk-3-0 gconf2 libnss3 libasound2 libsecret-1-0
ENV CXX="g++-4.9"
ENV CC="gcc-4.9"
ENV DISPLAY=:99.0
WORKDIR /app
ENTRYPOINT ["sh", "-c", "(Xvfb $DISPLAY -screen 0 1024x768x16 &) && npm run test"]
| FROM node:18
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get install -y xorg xvfb libxss-dev libgtk-3-0 gconf2 libnss3 libasound2 libsecret-1-0
ENV CXX="g++-4.9"
ENV CC="gcc-4.9"
ENV DISPLAY=:99.0
WORKDIR /app
ENTRYPOINT ["sh", "-c", "(Xvfb $DISPLAY -screen 0 1024x768x16 &) && npm run test"]
| maintenance/other |
2276 | 272513f0e73daa13231b4b35b1fc270788c2b427 | Update Dockerfile | Update Dockerfile | FROM postgres:11-alpine
RUN apk add --no-cache curl jq
ENV DB_NAME=""
ENV DB_SCHEMA=""
ENV DB_CRUD_USER=""
ENV DB_CRUD_PASS=""
ENV DB_R_USER=""
ENV DB_R_PASS=""
COPY ./users.sql /docker-entrypoint-initdb.d/01.sql
COPY ./database.sql /docker-entrypoint-initdb.d/02.sql
COPY ./functions/row_inserted.sql /docker-entrypoint-initdb.d/03.sql
COPY ./functions/row_updated.sql /docker-entrypoint-initdb.d/04.sql
COPY ./tables/api.taxonomy.sql /docker-entrypoint-initdb.d/05.sql
COPY ./tables/api.statuses.sql /docker-entrypoint-initdb.d/06.sql
COPY ./tables/api.scopes.sql /docker-entrypoint-initdb.d/07.sql
COPY ./tables/api.components.sql /docker-entrypoint-initdb.d/08.sql
COPY ./tables/api.comments.sql /docker-entrypoint-initdb.d/09.sql
COPY ./tables/api.links.sql /docker-entrypoint-initdb.d/10.sql
COPY ./tables/api.usecases.sql /docker-entrypoint-initdb.d/11.sql
COPY ./tables/api.component_taxonomy.sql /docker-entrypoint-initdb.d/12.sql
COPY ./views/api.w_usecases.sql /docker-entrypoint-initdb.d/13.sql
COPY ./views/api.w_components.sql /docker-entrypoint-initdb.d/14.sql
COPY ./views/api.w_taxonomy.sql /docker-entrypoint-initdb.d/15.sql
ENTRYPOINT ["entrypoint.sh"]
| null | bug fix |
407 | 833ac22b7a805cee6e4e11c15a7a61201c26e118 | Bumped source to 20220514-b2fe335 | Bumped source to 20220514-b2fe335
| FROM ghcr.io/dock0/arch:20220514-1763649
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm base-devel vim-minimal tree
ENV EDITOR vim
WORKDIR /opt/build
CMD ["make", "local"]
| FROM ghcr.io/dock0/arch:20220514-b2fe335
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm base-devel vim-minimal tree
ENV EDITOR vim
WORKDIR /opt/build
CMD ["make", "local"]
| maintenance/other |
268 | 9ca96efee277bfc1148f512dcc087636f7cf8ec1 | Debugging. | Debugging.
| # DOCKER-VERSION 0.3.4
# image olafradicke/fedora20-icinga2-check_km
# Install based on Doku http://docs.icinga.org/icinga2/latest/doc/module/icinga2/chapter/getting-started
FROM fedora:20
MAINTAINER Olaf Raicke <[email protected]>
ENV ICINGA2_USER icinga
ENV ICINGA2_GROUP icingacmd
ENV ICINGA2_CONFIG_FILE /etc/icinga2/icinga.cfg
ENV ICINGA2_ERROR_LOG /var/log/icinga2/error.log
ENV BUILD_DIR /tmp
RUN yum -y update
RUN yum -y --setopt=tsflags=nodocs install wget
#tar gzip cmake make bison flex gcc-c++ boost-devel
RUN yum -y --setopt=tsflags=nodocs install httpd gcc glibc glibc-common gd gd-devel
RUN yum -y --setopt=tsflags=nodocs install libjpeg libjpeg-devel libpng libpng-devel
RUN yum -y --setopt=tsflags=nodocs install net-snmp net-snmp-devel net-snmp-utils
RUN yum clean all
RUN wget http://packages.icinga.org/fedora/ICINGA-release.repo -O /etc/yum.repos.d/ICINGA-release.repo
RUN yum makecache
RUN yum -y --setopt=tsflags=nodocs install icinga2 nagios-plugins-all
RUN echo "/usr/sbin/icinga2 -d -e $ICINGA2_ERROR_LOG -u $ICINGA2_USER -g $ICINGA2_GROUP $ICINGA2_CONFIG_FILE && echo icinga is started... > /tmp/icinga.out" > /opt/icinga2_start.sh
# /usr/sbin/icinga2 -d /usr/local/icinga/etc/icinga.cfg
RUN chmod 770 /opt/icinga2_start.sh
RUN mkdir /var/run/icinga2/
RUN chown $ICINGA2_USER.$ICINGA2_GROUP /var/run/icinga2/
#############################
# check_mk
RUN yum -y install --nogpgcheck https://mathias-kettner.de/download/check_mk-agent-1.2.4p5-1.noarch.rpm
###################################################
# for password less logins
VOLUME ["/root/.ssh:/var/docker-container/root-ssh"]
EXPOSE 22
############################################
# ENTRYPOINT ["/opt/icinga2_start.sh"]
ENTRYPOINT ["/usr/sbin/icinga2"]
CMD ["--daemonize","--errorlog","/var/log/icinga2/error.log","--user","icinga","--group","icingacmd","/etc/icinga2/icinga.cfg","&"]
| # DOCKER-VERSION 0.3.4
# image olafradicke/fedora20-icinga2-check_km
# Install based on Doku http://docs.icinga.org/icinga2/latest/doc/module/icinga2/chapter/getting-started
FROM fedora:20
MAINTAINER Olaf Raicke <[email protected]>
ENV ICINGA2_USER icinga
ENV ICINGA2_GROUP icingacmd
ENV ICINGA2_CONFIG_FILE /etc/icinga2/icinga.cfg
ENV ICINGA2_ERROR_LOG /var/log/icinga2/error.log
ENV BUILD_DIR /tmp
RUN yum -y update
RUN yum -y --setopt=tsflags=nodocs install wget
#tar gzip cmake make bison flex gcc-c++ boost-devel
RUN yum -y --setopt=tsflags=nodocs install httpd gcc glibc glibc-common gd gd-devel
RUN yum -y --setopt=tsflags=nodocs install libjpeg libjpeg-devel libpng libpng-devel
RUN yum -y --setopt=tsflags=nodocs install net-snmp net-snmp-devel net-snmp-utils
RUN yum clean all
RUN wget http://packages.icinga.org/fedora/ICINGA-release.repo -O /etc/yum.repos.d/ICINGA-release.repo
RUN yum makecache
RUN yum -y --setopt=tsflags=nodocs install icinga2 nagios-plugins-all
RUN echo "/usr/sbin/icinga2 -d -e $ICINGA2_ERROR_LOG -u $ICINGA2_USER -g $ICINGA2_GROUP $ICINGA2_CONFIG_FILE && echo icinga is started... > /tmp/icinga.out" > /opt/icinga2_start.sh
# /usr/sbin/icinga2 -d /usr/local/icinga/etc/icinga.cfg
RUN chmod 770 /opt/icinga2_start.sh
RUN mkdir /var/run/icinga2/
RUN chown $ICINGA2_USER.$ICINGA2_GROUP /var/run/icinga2/
#############################
# check_mk
RUN yum -y install --nogpgcheck https://mathias-kettner.de/download/check_mk-agent-1.2.4p5-1.noarch.rpm
###################################################
# for password less logins
VOLUME ["/root/.ssh:/var/docker-container/root-ssh"]
EXPOSE 22
############################################
# ENTRYPOINT ["/opt/icinga2_start.sh"]
ENTRYPOINT ["/usr/sbin/icinga2"]
CMD ["--daemonize","--errorlog","/var/log/icinga2/error.log","--user","icinga","--group","icingacmd","/etc/icinga2/icinga.cfg"]
| bug fix |
67 | 47ef33928f5b668a93061406e4d400d6e75f16e6 | Bumped source to 20200328-c42f720 | Bumped source to 20200328-c42f720
| FROM docker.pkg.github.com/dock0/service/service:20200328-ecbb6dc
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm --needed openssh
ENV ADMIN akerl
ENV KEY_URL https://id-ed25519.pub/groups/default.txt
RUN useradd -d /var/lib/ssh -M ssh_key_sync
RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh
RUN echo "$KEY_URL" > /var/lib/ssh/key_url
ADD sshd_config /etc/ssh/sshd_config
ADD run /service/sshd/run
ADD sync /var/lib/ssh/sync
RUN groupadd remote
RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN"
RUN passwd -d "$ADMIN"
| FROM docker.pkg.github.com/dock0/service/service:20200328-c42f720
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm --needed openssh
ENV ADMIN akerl
ENV KEY_URL https://id-ed25519.pub/groups/default.txt
RUN useradd -d /var/lib/ssh -M ssh_key_sync
RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh
RUN echo "$KEY_URL" > /var/lib/ssh/key_url
ADD sshd_config /etc/ssh/sshd_config
ADD run /service/sshd/run
ADD sync /var/lib/ssh/sync
RUN groupadd remote
RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN"
RUN passwd -d "$ADMIN"
| code refactoring |
27 | 8d47ced7d134f032c395c67a61351ba07c999b24 | fix bug in Dockerfile | fix bug in Dockerfile
| # to build the image
#
# sudo docker build -t simonsdave/cloudfeaster .
#
# for testing/debugging
#
# sudo docker run -i -t simonsdave/cloudfeaster /bin/bash
#
# to push to dockerhub
#
# sudo docker push simonsdave/cloudfeaster
#
FROM ubuntu:14.04
MAINTAINER Dave Simons
RUN apt-get update -y
# was getting "chfn: PAM: System error" messages during install
# and advice from following page was to do the "ln -s"
# http://stackoverflow.com/questions/25193161/chfn-pam-system-error-intermittently-in-docker-hub-builds/25267015#25267015
RUN ln -s -f /bin/true /usr/bin/chfn
RUN apt-get install -y curl
RUN curl https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
RUN sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
RUN apt-get update
RUN apt-get install -y google-chrome-stable
RUN apt-get install -y xvfb
RUN apt-get install -y unzip
RUN curl -s --output chromedriver.zip http://chromedriver.storage.googleapis.com/2.19/chromedriver_linux64.zip
RUN unzip chromedriver.zip
RUN rm chromedriver.zip
RUN mv chromedriver /usr/bin/.
RUN chown root.root /usr/bin/chromedriver
RUN chmod a+wrx /usr/bin/chromedriver
RUN apt-get install -y python
RUN apt-get install -y python-pip
RUN pip install pip==1.5.6
RUN mkdir /tmp/clf
ADD bin /tmp/clf/bin
ADD cloudfeaster /tmp/clf/cloudfeaster
COPY setup.py /tmp/clf/setup.py
COPY MANIFEST.in /tmp/clf/MANIFEST.in
RUN cd /tmp/clf; python setup.py sdist --formats=gztar
RUN pip install --process-dependency-links /tmp/clf/dist/cloudfeaster-*.*.*.tar.gz
RUN rm -rf /tmp/clf
| # to build the image
#
# sudo docker build -t simonsdave/cloudfeaster .
#
# for testing/debugging
#
# sudo docker run -i -t simonsdave/cloudfeaster /bin/bash
#
# to push to dockerhub
#
# sudo docker push simonsdave/cloudfeaster
#
FROM ubuntu:14.04
MAINTAINER Dave Simons
RUN apt-get update -y
# was getting "chfn: PAM: System error" messages during install
# and advice from following page was to do the "ln -s"
# http://stackoverflow.com/questions/25193161/chfn-pam-system-error-intermittently-in-docker-hub-builds/25267015#25267015
RUN ln -s -f /bin/true /usr/bin/chfn
RUN apt-get install -y curl
RUN curl https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
RUN sh -c 'echo "deb http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
RUN apt-get update
RUN apt-get install -y google-chrome-stable
RUN apt-get install -y xvfb
RUN apt-get install -y unzip
RUN curl -s --output chromedriver.zip http://chromedriver.storage.googleapis.com/2.19/chromedriver_linux64.zip
RUN unzip chromedriver.zip
RUN rm chromedriver.zip
RUN mv chromedriver /usr/bin/.
RUN chown root.root /usr/bin/chromedriver
RUN chmod a+wrx /usr/bin/chromedriver
RUN apt-get install -y python
RUN apt-get install -y python-pip
RUN pip install pip==1.5.6
COPY cloudfeaster.tar.gz /tmp/cloudfeaster.tar.gz
RUN pip install --process-dependency-links /tmp/cloudfeaster.tar.gz
RUN rm -rf /tmp/cloudfeaster.tar.gz
| code refactoring |
64 | 74065d913dec2ed7603f87e440a05bc207ec2551 | Bump ruby version to 2.2.3 | Bump ruby version to 2.2.3
| FROM ruby:2.2.2-onbuild
MAINTAINER Issei Naruta <[email protected]>
ENV LANG C.UTF-8
ENTRYPOINT ["fav2reblog"]
CMD ["-c", "fav2reblog.yml", "-i", "60"]
| FROM ruby:2.2.3-onbuild
MAINTAINER Issei Naruta <[email protected]>
ENV LANG C.UTF-8
ENTRYPOINT ["fav2reblog"]
CMD ["-c", "fav2reblog.yml", "-i", "60"]
| bug fix |
2234 | 27c2dc317c3ce0f5b4eb02f8a4820afbddd2343f | Upgrade | Upgrade | null | null | maintenance/other |
2317 | 129bf3a6958778ec7da4cb752eb7d2474a9a1074 | bump template | bump template
Should fix the issue with using default allowed groups in combination with the login service | FROM semtech/mu-ruby-template:2.11.0
MAINTAINER Erika Pauwels <[email protected]>
ENV MU_APPLICATION_SALT ''
ENV USERS_GRAPH 'http://mu.semte.ch/application'
ENV SESSIONS_GRAPH 'http://mu.semte.ch/application'
| null | code refactoring |
211 | 587c28716217c0655b0abb9a8e9b417d2e21967f | Bumped source to 20201008-5afda63 | Bumped source to 20201008-5afda63
| FROM docker.pkg.github.com/dock0/service/service:20201008-6d6c2be
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm --needed openssh
ENV ADMIN akerl
ENV KEY_URL https://id-ed25519.pub/groups/default.txt
RUN useradd -d /var/lib/ssh -M ssh_key_sync
RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh
RUN echo "$KEY_URL" > /var/lib/ssh/key_url
ADD sshd_config /etc/ssh/sshd_config
ADD run /service/sshd/run
ADD sync /var/lib/ssh/sync
RUN groupadd remote
RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN"
RUN passwd -d "$ADMIN"
| FROM docker.pkg.github.com/dock0/service/service:20201008-5afda63
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm --needed openssh
ENV ADMIN akerl
ENV KEY_URL https://id-ed25519.pub/groups/default.txt
RUN useradd -d /var/lib/ssh -M ssh_key_sync
RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh
RUN echo "$KEY_URL" > /var/lib/ssh/key_url
ADD sshd_config /etc/ssh/sshd_config
ADD run /service/sshd/run
ADD sync /var/lib/ssh/sync
RUN groupadd remote
RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN"
RUN passwd -d "$ADMIN"
| maintenance/other |
321 | 14cad570ad73905ba73be83fbcaa548b511f2e1d | change ADD to COPY | change ADD to COPY
| FROM python:3.8-slim as app
ENV PYTHONUNBUFFERED 1
RUN pip install --upgrade pipenv gunicorn
WORKDIR /app
COPY Pipfile /app/
RUN pipenv lock
RUN pipenv install --deploy --system
ADD manage.py /app/
ADD api /app/api
ADD babybuddy /app/babybuddy
ADD core /app/core
ADD dashboard /app/dashboard
ADD locale /app/locale
ADD reports /app/reports
ADD static /app/static
ADD etc/gunicorn.py /app/
| FROM python:3.8-slim as app
ENV PYTHONUNBUFFERED 1
RUN pip install --upgrade pipenv gunicorn
WORKDIR /app
COPY Pipfile /app/
RUN pipenv lock
RUN pipenv install --deploy --system
COPY manage.py /app/
COPY api /app/api
COPY babybuddy /app/babybuddy
COPY core /app/core
COPY dashboard /app/dashboard
COPY locale /app/locale
COPY reports /app/reports
COPY static /app/static
COPY etc/gunicorn.py /app/
| bug fix |
139 | 08d7719eb074c3d393a33306e645bb01b2b234c1 | Bumped source to 20200730-62b8ab8 | Bumped source to 20200730-62b8ab8
| FROM docker.pkg.github.com/dock0/arch/arch:20200730-cec5f17
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh
ENV EDITOR vim
WORKDIR /opt/build
CMD ["make", "local"]
| FROM docker.pkg.github.com/dock0/arch/arch:20200730-62b8ab8
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh
ENV EDITOR vim
WORKDIR /opt/build
CMD ["make", "local"]
| maintenance/other |
249 | f849f6690811669d05e64ab623598d788ee39b9f | Add debugging information to Dockerfile | Add debugging information to Dockerfile
| FROM golang:1.9
MAINTAINER The Stripe Observability Team <[email protected]>
RUN mkdir -p /build
ENV GOPATH=/go
RUN apt-get update
RUN apt-get install -y zip
RUN go get -u -v github.com/ChimeraCoder/gojson/gojson
RUN go get -u -v github.com/golang/protobuf/protoc-gen-go
RUN go get -u -v github.com/gogo/protobuf/protoc-gen-gofast
RUN go get -u github.com/golang/dep/cmd/dep
RUN wget https://github.com/google/protobuf/releases/download/v3.1.0/protoc-3.1.0-linux-x86_64.zip
RUN unzip protoc-3.1.0-linux-x86_64.zip
RUN cp bin/protoc /usr/bin/protoc
RUN chmod 777 /usr/bin/protoc
WORKDIR /go/src/github.com/stripe/veneur
ADD . /go/src/github.com/stripe/veneur
# If running locally, ignore any changes since
# the last commit
RUN git reset --hard HEAD && git status
# Unlike the travis build file, we do NOT need to
# ignore changes to protobuf-generated output
# because we are guaranteed only one version of Go
# used to build protoc-gen-go
RUN go generate
RUN dep ensure -v
RUN gofmt -w .
# Stage any changes caused by go generate and gofmt,
# then confirm that there are no staged changes.
#
# If `go generate` or `gofmt` yielded any changes,
# this will fail with an error message like "too many arguments"
# or "M: binary operator expected"
# Due to overlayfs peculiarities, running git diff-index without --cached
# won't work, because it'll compare the mtimes (which have changed), and
# therefore reports that the file may have changed (ie, a series of 0s)
# See https://github.com/stripe/veneur/pull/110#discussion_r92843581
RUN git add .
RUN git diff-index --cached --exit-code HEAD
RUN go test -race -v -timeout 60s ./...
CMD cp -r henson /build/ && env GOBIN=/build go install -a -v -ldflags "-X github.com/stripe/veneur.VERSION=$(git rev-parse HEAD)" ./cmd/...
| FROM golang:1.9
MAINTAINER The Stripe Observability Team <[email protected]>
RUN mkdir -p /build
ENV GOPATH=/go
RUN apt-get update
RUN apt-get install -y zip
RUN go get -u -v github.com/ChimeraCoder/gojson/gojson
RUN go get -u -v github.com/golang/protobuf/protoc-gen-go
RUN go get -u -v github.com/gogo/protobuf/protoc-gen-gofast
RUN go get -u github.com/golang/dep/cmd/dep
RUN wget https://github.com/google/protobuf/releases/download/v3.1.0/protoc-3.1.0-linux-x86_64.zip
RUN unzip protoc-3.1.0-linux-x86_64.zip
RUN cp bin/protoc /usr/bin/protoc
RUN chmod 777 /usr/bin/protoc
WORKDIR /go/src/github.com/stripe/veneur
ADD . /go/src/github.com/stripe/veneur
# If running locally, ignore any changes since
# the last commit
RUN git reset --hard HEAD && git status
# Unlike the travis build file, we do NOT need to
# ignore changes to protobuf-generated output
# because we are guaranteed only one version of Go
# used to build protoc-gen-go
RUN go generate
RUN dep ensure -v
RUN gofmt -w .
# Stage any changes caused by go generate and gofmt,
# then confirm that there are no staged changes.
#
# If `go generate` or `gofmt` yielded any changes,
# this will fail with an error message like "too many arguments"
# or "M: binary operator expected"
# Due to overlayfs peculiarities, running git diff-index without --cached
# won't work, because it'll compare the mtimes (which have changed), and
# therefore reports that the file may have changed (ie, a series of 0s)
# See https://github.com/stripe/veneur/pull/110#discussion_r92843581
RUN git add .
# The output will be empty unless the build fails, in which case this
# information is helpful in debugging
RUN git diff --cached
RUN git diff-index --cached --exit-code HEAD
RUN go test -race -v -timeout 60s ./...
CMD cp -r henson /build/ && env GOBIN=/build go install -a -v -ldflags "-X github.com/stripe/veneur.VERSION=$(git rev-parse HEAD)" ./cmd/...
| maintenance/other |
293 | 77e838bdbfe70624a878d63d207e0c5e7744c2f7 | Bumped source to 20200218-0cb8337 | Bumped source to 20200218-0cb8337
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20200218-b41fa16
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20200218-0cb8337
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| maintenance/other |
171 | 03313769a60a57650d6f037deea10dab730372af | Bumped source to 20200214-c47b88c | Bumped source to 20200214-c47b88c
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20200214-54a8d1a
MAINTAINER akerl <[email protected]>
RUN yes | pacman -Syu --force --needed --nodeps \
curl-amylum \
gmp-amylum \
gnupg-amylum \
gpgme-amylum \
krb5-amylum \
libarchive-amylum \
libassuan-amylum \
libgcrypt-amylum \
libgpg-error-amylum \
libtasn1-amylum \
libunistring-amylum \
musl-amylum \
nettle-amylum \
openssh-amylum \
openssl-amylum \
p11-kit-amylum \
pacman-amylum \
pacman-mirrorlist-amylum \
sqlite-amylum
RUN mv /etc/pacman.conf.pacsave /etc/pacman.conf && \
mv /etc/pacman.d/mirrorlist.pacsave /etc/pacman.d/mirrorlist
RUN cp /usr/bin/xz /usr/local/bin/ && \
cp -a /usr/lib/liblzma* /usr/local/lib && \
echo "/usr/local/lib" > /etc/ld.so.conf.d/local.conf && \
ldconfig && \
yes | pacman -S xz-amylum && \
rm -f /usr/local/bin/xz /usr/local/lib/liblzma* /etc/ld.so.conf.d/local.conf && \
ldconfig
RUN yes | pacman -S --needed \
bash-amylum \
coreutils-amylum \
git-amylum \
gzip-amylum \
iproute2-amylum \
iputils-amylum \
procps-ng-amylum \
shadow-amylum \
tar-amylum \
util-linux-amylum \
which-amylum \
zlib-amylum
RUN pacman -R --noconfirm \
libldap \
e2fsprogs
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20200214-c47b88c
MAINTAINER akerl <[email protected]>
RUN yes | pacman -Syu --force --needed --nodeps \
curl-amylum \
gmp-amylum \
gnupg-amylum \
gpgme-amylum \
krb5-amylum \
libarchive-amylum \
libassuan-amylum \
libgcrypt-amylum \
libgpg-error-amylum \
libtasn1-amylum \
libunistring-amylum \
musl-amylum \
nettle-amylum \
openssh-amylum \
openssl-amylum \
p11-kit-amylum \
pacman-amylum \
pacman-mirrorlist-amylum \
sqlite-amylum
RUN mv /etc/pacman.conf.pacsave /etc/pacman.conf && \
mv /etc/pacman.d/mirrorlist.pacsave /etc/pacman.d/mirrorlist
RUN cp /usr/bin/xz /usr/local/bin/ && \
cp -a /usr/lib/liblzma* /usr/local/lib && \
echo "/usr/local/lib" > /etc/ld.so.conf.d/local.conf && \
ldconfig && \
yes | pacman -S xz-amylum && \
rm -f /usr/local/bin/xz /usr/local/lib/liblzma* /etc/ld.so.conf.d/local.conf && \
ldconfig
RUN yes | pacman -S --needed \
bash-amylum \
coreutils-amylum \
git-amylum \
gzip-amylum \
iproute2-amylum \
iputils-amylum \
procps-ng-amylum \
shadow-amylum \
tar-amylum \
util-linux-amylum \
which-amylum \
zlib-amylum
RUN pacman -R --noconfirm \
libldap \
e2fsprogs
| bug fix |
2263 | 876fe93570b4e03df76f102b028223c4839e5b0d | Bumped source to 20210905-c1ef314 | Bumped source to 20210905-c1ef314
| FROM docker.pkg.github.com/dock0/arch/arch:20210905-f4f3473
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| null | maintenance/other |
2292 | c5408b9b7636958d1156f1939e4079ad683b98df | Fix permissions of `app/cache` dir | Fix permissions of `app/cache` dir
| FROM debian:wheezy
MAINTAINER William Durand <[email protected]>
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update -y
RUN apt-get install -y nginx php5-fpm php5-sqlite php5-cli supervisor curl git-core
# Install composer
RUN curl -sS https://getcomposer.org/installer | php && mv composer.phar /usr/local/bin/composer
# Install NodeJS
RUN curl -sL https://deb.nodesource.com/setup | bash -
RUN apt-get install -y nodejs
# We do two things here. First, configuring php5-fpm and nginx to run in the
# foreground so supervisord can keep track of them later. Then we configure
# php5-fpm to run with the user as the web server, to avoid a few issues with
# file permissions.
RUN sed -e 's/;daemonize = yes/daemonize = no/' -i /etc/php5/fpm/php-fpm.conf
RUN sed -e 's/;listen\.owner/listen.owner/' -i /etc/php5/fpm/pool.d/www.conf
RUN sed -e 's/;listen\.group/listen.group/' -i /etc/php5/fpm/pool.d/www.conf
RUN echo "\ndaemon off;" >> /etc/nginx/nginx.conf
# Install a couple of configuration files.
ADD app/config/docker/vhost.conf /etc/nginx/sites-available/default
ADD app/config/docker/supervisor.conf /etc/supervisor/conf.d/supervisor.conf
# Install Propilex
ADD . /srv/propilex
WORKDIR /srv/propilex
RUN composer install --prefer-dist --no-dev
RUN npm install
RUN ./node_modules/.bin/bower install --allow-root
RUN cp app/config/propel/runtime-conf.xml.dist app/config/propel/runtime-conf.xml
RUN cp app/config/propel/build.properties.dist app/config/propel/build.properties
RUN chmod +x vendor/propel/propel1/generator/bin/phing.php
RUN bin/bootstrap
RUN chown www-data:www-data app/cache/database.db
# Forward request and error logs to docker log collector
RUN ln -sf /dev/stdout /var/log/nginx/access.log
RUN ln -sf /dev/stderr /var/log/nginx/error.log
EXPOSE 80
CMD ["/usr/bin/supervisord"]
| null | maintenance/other |
198 | 10bcb6184ca7779766289104193bb5f567c648e5 | Bumped source to 20211221-3af6661 | Bumped source to 20211221-3af6661
| FROM docker.pkg.github.com/dock0/arch/arch:20211221-b0cfb87
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh
ENV EDITOR vim
WORKDIR /opt/build
CMD ["make", "local"]
| FROM docker.pkg.github.com/dock0/arch/arch:20211221-3af6661
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh
ENV EDITOR vim
WORKDIR /opt/build
CMD ["make", "local"]
| maintenance/other |
134 | ea78adaf6321fce0ddd63f388b49801a4426a881 | Bumped source to 20210803-f1e279c | Bumped source to 20210803-f1e279c
| FROM docker.pkg.github.com/dock0/service/service:20210803-2386ccc
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm --needed openssh
ENV ADMIN akerl
ENV KEY_URL https://id-ed25519.pub/groups/default.txt
RUN useradd -d /var/lib/ssh -M ssh_key_sync
RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh
RUN echo "$KEY_URL" > /var/lib/ssh/key_url
ADD sshd_config /etc/ssh/sshd_config
ADD run /service/sshd/run
ADD sync /var/lib/ssh/sync
RUN groupadd remote
RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN"
RUN passwd -d "$ADMIN"
| FROM docker.pkg.github.com/dock0/service/service:20210803-f1e279c
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm --needed openssh
ENV ADMIN akerl
ENV KEY_URL https://id-ed25519.pub/groups/default.txt
RUN useradd -d /var/lib/ssh -M ssh_key_sync
RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh
RUN echo "$KEY_URL" > /var/lib/ssh/key_url
ADD sshd_config /etc/ssh/sshd_config
ADD run /service/sshd/run
ADD sync /var/lib/ssh/sync
RUN groupadd remote
RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN"
RUN passwd -d "$ADMIN"
| code refactoring |
2258 | cf90b840d3ac7eecee1bdf570aad657b5d939c6c | Bumped source to 20201115-1030562 | Bumped source to 20201115-1030562
| FROM docker.pkg.github.com/dock0/arch/arch:20201115-2d39c60
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh
ENV EDITOR vim
WORKDIR /opt/build
CMD ["make", "local"]
| null | code refactoring |
2199 | 92ff18294d65e48487242b325db2986bed8fdc7f | Updated to 10.1.3-ce.0 | Updated to 10.1.3-ce.0
| FROM gitlab/gitlab-ce:10.1.2-ce.0
RUN \
apt-get update && \
apt-get install cron && \
apt-get clean all
ENV BACKUP_TIME="0 12 * * *"
COPY container-files /
| null | bug fix |
2264 | ab4e14c8f6445ec4d856134d9bbda3387a8a288f | Upgrade node and npm versions in docker image | Upgrade node and npm versions in docker image
Change-Id: I0005623ee10b643bd639a8b674cc1522591f276c
| FROM ubuntu
# Author / Maintainer
MAINTAINER Silkroad Team <[email protected]>
# Update repository
RUN apt-get update
# Install dependencies
RUN apt-get -y install curl
RUN curl -sL https://deb.nodesource.com/setup | sudo bash -
# Install nodejs
RUN apt-get -y install nodejs git git-core
# Copy app source
COPY . /src
# Install dev dependencies
RUN cd /src; npm install
# Expose port
EXPOSE 3000
# Enable corbel-composer
CMD cd /src; npm start | null | maintenance/other |
2197 | a0056b1a88014533e8addc6021e106e2877aa1f8 | should fix build inconsistencies for razor | should fix build inconsistencies for razor
| FROM docker.io/debian:buster-slim
ARG VCS_VER
ARG VCS_REF
ARG DEBIAN_FRONTEND=noninteractive
LABEL org.opencontainers.image.version=${VCS_VER}
LABEL org.opencontainers.image.revision=${VCS_REF}
LABEL org.opencontainers.image.title="docker-mailserver"
LABEL org.opencontainers.image.vendor="The Docker Mailserver Organization"
LABEL org.opencontainers.image.authors="The Docker Mailserver Organization on GitHub"
LABEL org.opencontainers.image.licenses="MIT"
LABEL org.opencontainers.image.description="A fullstack but simple mail server (SMTP, IMAP, LDAP, Antispam, Antivirus, etc.). Only configuration files, no SQL database."
LABEL org.opencontainers.image.url="https://github.com/docker-mailserver"
LABEL org.opencontainers.image.documentation="https://github.com/docker-mailserver/docker-mailserver/blob/master/README.md"
LABEL org.opencontainers.image.source="https://github.com/docker-mailserver/docker-mailserver"
ENV ENABLE_POSTGREY=0
ENV FETCHMAIL_POLL=300
ENV ONE_DIR=0
ENV POSTGREY_AUTO_WHITELIST_CLIENTS=5
ENV POSTGREY_DELAY=300
ENV POSTGREY_MAX_AGE=35
ENV POSTGREY_TEXT="Delayed by Postgrey"
ENV SASLAUTHD_MECHANISMS=pam
ENV SASLAUTHD_MECH_OPTIONS=""
ENV VIRUSMAILS_DELETE_DELAY=7
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
# –––––––––––––––––––––––––––––––––––––––––––––––
# ––– Install Basic Software ––––––––––––––––––––
# –––––––––––––––––––––––––––––––––––––––––––––––
RUN \
apt-get -qq --fix-missing update && \
apt-get -y dist-upgrade >/dev/null && \
apt-get -y install apt-utils &>/dev/null && \
apt-get -y install postfix >/dev/null && \
apt-get -y --no-install-recommends install \
# A - D
altermime amavisd-new apt-transport-https arj binutils bzip2 \
dovecot-core dovecot-imapd dovecot-ldap dovecot-lmtpd \
dovecot-managesieved dovecot-pop3d dovecot-sieve dovecot-solr \
dumb-init ca-certificates cabextract clamav clamav-daemon cpio curl \
# E - O
ed fail2ban fetchmail file gamin gnupg gzip iproute2 iptables \
locales logwatch lhasa libdate-manip-perl liblz4-tool \
libmail-spf-perl libnet-dns-perl libsasl2-modules lrzip lzop \
netcat-openbsd nomarch opendkim opendkim-tools opendmarc \
# P - Z
pax pflogsumm postgrey p7zip-full postfix-ldap postfix-pcre \
postfix-policyd-spf-python postsrsd pyzor \
razor rpm2cpio rsyslog sasl2-bin spamassassin supervisor \
unrar-free unzip whois xz-utils >/dev/null && \
# cleanup
apt-get -qq autoclean && \
apt-get -qq clean && \
rm -rf /var/lib/apt/lists/* && \
c_rehash 2>/dev/null
# –––––––––––––––––––––––––––––––––––––––––––––––
# ––– ClamAV & FeshClam –––––––––––––––––––––––––
# –––––––––––––––––––––––––––––––––––––––––––––––
RUN \
echo '0 */6 * * * clamav /usr/bin/freshclam --quiet' > /etc/cron.d/clamav-freshclam && \
chmod 644 /etc/clamav/freshclam.conf && \
freshclam && \
sed -i 's/Foreground false/Foreground true/g' /etc/clamav/clamd.conf && \
mkdir /var/run/clamav && \
chown -R clamav:root /var/run/clamav && \
rm -rf /var/log/clamav/
# –––––––––––––––––––––––––––––––––––––––––––––––
# ––– Dovecot & MkCert ––––––––––––––––––––––––––
# –––––––––––––––––––––––––––––––––––––––––––––––
COPY target/dovecot/auth-passwdfile.inc target/dovecot/??-*.conf /etc/dovecot/conf.d/
COPY target/dovecot/sieve/ /etc/dovecot/sieve/
COPY target/dovecot/dovecot-purge.cron /etc/cron.d/dovecot-purge.disabled
RUN chmod 0 /etc/cron.d/dovecot-purge.disabled
WORKDIR /usr/share/dovecot
# hadolint ignore=SC2016,SC2086,SC2069
RUN \
sed -i -e 's/include_try \/usr\/share\/dovecot\/protocols\.d/include_try \/etc\/dovecot\/protocols\.d/g' /etc/dovecot/dovecot.conf && \
sed -i -e 's/#mail_plugins = \$mail_plugins/mail_plugins = \$mail_plugins sieve/g' /etc/dovecot/conf.d/15-lda.conf && \
sed -i -e 's/^.*lda_mailbox_autocreate.*/lda_mailbox_autocreate = yes/g' /etc/dovecot/conf.d/15-lda.conf && \
sed -i -e 's/^.*lda_mailbox_autosubscribe.*/lda_mailbox_autosubscribe = yes/g' /etc/dovecot/conf.d/15-lda.conf && \
sed -i -e 's/^.*postmaster_address.*/postmaster_address = '${POSTMASTER_ADDRESS:="[email protected]"}'/g' /etc/dovecot/conf.d/15-lda.conf && \
sed -i 's/#imap_idle_notify_interval = 2 mins/imap_idle_notify_interval = 29 mins/' /etc/dovecot/conf.d/20-imap.conf && \
# adapt mkcert for Dovecot community repo
sed -i 's/CERTDIR=.*/CERTDIR=\/etc\/dovecot\/ssl/g' /usr/share/dovecot/mkcert.sh && \
sed -i 's/KEYDIR=.*/KEYDIR=\/etc\/dovecot\/ssl/g' /usr/share/dovecot/mkcert.sh && \
sed -i 's/KEYFILE=.*/KEYFILE=\$KEYDIR\/dovecot.key/g' /usr/share/dovecot/mkcert.sh && \
sed -i 's/RANDFILE.*//g' /usr/share/dovecot/dovecot-openssl.cnf && \
mkdir /etc/dovecot/ssl && \
chmod 755 /etc/dovecot/ssl && \
./mkcert.sh 2>&1 >/dev/null && \
mkdir -p /usr/lib/dovecot/sieve-pipe /usr/lib/dovecot/sieve-filter /usr/lib/dovecot/sieve-global && \
chmod 755 -R /usr/lib/dovecot/sieve-pipe /usr/lib/dovecot/sieve-filter /usr/lib/dovecot/sieve-global
# –––––––––––––––––––––––––––––––––––––––––––––––
# ––– LDAP & Spamassassin's Cron ––––––––––––––––
# –––––––––––––––––––––––––––––––––––––––––––––––
COPY target/dovecot/dovecot-ldap.conf.ext /etc/dovecot
COPY \
target/postfix/ldap-users.cf \
target/postfix/ldap-groups.cf \
target/postfix/ldap-aliases.cf \
target/postfix/ldap-domains.cf \
/etc/postfix/
# hadolint ignore=SC2016
RUN \
sed -i -r 's/^(CRON)=0/\1=1/g' /etc/default/spamassassin && \
sed -i -r 's/^\$INIT restart/supervisorctl restart amavis/g' /etc/spamassassin/sa-update-hooks.d/amavisd-new
# –––––––––––––––––––––––––––––––––––––––––––––––
# ––– Scripts & Miscellaneous –––––––––––––––––––
# –––––––––––––––––––––––––––––––––––––––––––––––
COPY \
./target/bin/* \
./target/scripts/*.sh \
./target/docker-configomat/configomat.sh \
/usr/local/bin/
RUN \
chmod +x /usr/local/bin/* && \
rm -rf /usr/share/locale/* && \
rm -rf /usr/share/man/* && \
rm -rf /usr/share/doc/* && \
touch /var/log/auth.log && \
update-locale && \
rm /etc/postsrsd.secret && \
rm /etc/cron.daily/00logwatch
# –––––––––––––––––––––––––––––––––––––––––––––––
# ––– PostSRSD, Postgrey & Amavis –––––––––––––––
# –––––––––––––––––––––––––––––––––––––––––––––––
COPY target/postsrsd/postsrsd /etc/default/postsrsd
COPY target/postgrey/postgrey /etc/default/postgrey
COPY target/postgrey/postgrey.init /etc/init.d/postgrey
RUN \
chmod 755 /etc/init.d/postgrey && \
mkdir /var/run/postgrey && \
chown postgrey:postgrey /var/run/postgrey
COPY target/amavis/conf.d/* /etc/amavis/conf.d/
RUN \
sed -i -r 's/#(@| \\%)bypass/\1bypass/g' /etc/amavis/conf.d/15-content_filter_mode && \
adduser clamav amavis >/dev/null && \
adduser amavis clamav >/dev/null && \
# no syslog user in Debian compared to Ubuntu
adduser --system syslog >/dev/null && \
useradd -u 5000 -d /home/docker -s /bin/bash -p "$(echo docker | openssl passwd -1 -stdin)" docker >/dev/null && \
echo "0 4 * * * /usr/local/bin/virus-wiper" | crontab - && \
chmod 644 /etc/amavis/conf.d/*
RUN su - amavis -c "razor-admin -create && sleep 3 && razor-admin -register"
# –––––––––––––––––––––––––––––––––––––––––––––––
# ––– Fail2Ban, DKIM & DMARC ––––––––––––––––––––
# –––––––––––––––––––––––––––––––––––––––––––––––
COPY target/fail2ban/jail.conf /etc/fail2ban/jail.conf
COPY target/fail2ban/filter.d/postfix-sasl.conf /etc/fail2ban/filter.d/postfix-sasl.conf
RUN mkdir /var/run/fail2ban
COPY target/opendkim/opendkim.conf /etc/opendkim.conf
COPY target/opendkim/default-opendkim /etc/default/opendkim
COPY target/opendmarc/opendmarc.conf /etc/opendmarc.conf
COPY target/opendmarc/default-opendmarc /etc/default/opendmarc
COPY target/opendmarc/ignore.hosts /etc/opendmarc/ignore.hosts
RUN \
# switch iptables and ip6tables to legacy for Fail2Ban
update-alternatives --set iptables /usr/sbin/iptables-legacy && \
update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy
# –––––––––––––––––––––––––––––––––––––––––––––––
# ––– Fetchmail, Postfix & Let'sEncrypt –––––––––
# –––––––––––––––––––––––––––––––––––––––––––––––
COPY target/fetchmail/fetchmailrc /etc/fetchmailrc_general
COPY target/postfix/main.cf target/postfix/master.cf /etc/postfix/
COPY target/shared/ffdhe4096.pem /etc/postfix/shared/ffdhe4096.pem
COPY \
target/postfix/header_checks.pcre \
target/postfix/sender_header_filter.pcre \
target/postfix/sender_login_maps.pcre \
/etc/postfix/maps/
RUN \
: >/etc/aliases && \
sed -i 's/START_DAEMON=no/START_DAEMON=yes/g' /etc/default/fetchmail && \
mkdir /var/run/fetchmail && chown fetchmail /var/run/fetchmail && \
curl -s https://letsencrypt.org/certs/lets-encrypt-x3-cross-signed.pem >/etc/ssl/certs/lets-encrypt-x3-cross-signed.pem
# –––––––––––––––––––––––––––––––––––––––––––––––
# ––– Logs ––––––––––––––––––––––––––––––––––––––
# –––––––––––––––––––––––––––––––––––––––––––––––
RUN \
sed -i -r "/^#?compress/c\compress\ncopytruncate" /etc/logrotate.conf && \
mkdir -p /var/log/mail && \
chown syslog:root /var/log/mail && \
touch /var/log/mail/clamav.log && \
chown -R clamav:root /var/log/mail/clamav.log && \
touch /var/log/mail/freshclam.log && \
chown -R clamav:root /var/log/mail/freshclam.log && \
sed -i -r 's|/var/log/mail|/var/log/mail/mail|g' /etc/rsyslog.conf && \
sed -i -r 's|;auth,authpriv.none|;mail.none;mail.error;auth,authpriv.none|g' /etc/rsyslog.conf && \
sed -i -r 's|LogFile /var/log/clamav/|LogFile /var/log/mail/|g' /etc/clamav/clamd.conf && \
sed -i -r 's|UpdateLogFile /var/log/clamav/|UpdateLogFile /var/log/mail/|g' /etc/clamav/freshclam.conf && \
sed -i -r 's|/var/log/clamav|/var/log/mail|g' /etc/logrotate.d/clamav-daemon && \
sed -i -r 's|invoke-rc.d.*|/usr/bin/supervisorctl signal hup clamav >/dev/null \|\| true|g' /etc/logrotate.d/clamav-daemon && \
sed -i -r 's|/var/log/clamav|/var/log/mail|g' /etc/logrotate.d/clamav-freshclam && \
sed -i -r '/postrotate/,/endscript/d' /etc/logrotate.d/clamav-freshclam && \
sed -i -r 's|/var/log/mail|/var/log/mail/mail|g' /etc/logrotate.d/rsyslog && \
sed -i -r '/\/var\/log\/mail\/mail.log/d' /etc/logrotate.d/rsyslog && \
# prevent syslog logrotate warnings
sed -i -e 's/\(printerror "could not determine current runlevel"\)/#\1/' /usr/sbin/invoke-rc.d && \
sed -i -e 's/^\(POLICYHELPER=\).*/\1/' /usr/sbin/invoke-rc.d && \
# prevent syslog warning about imklog permissions
sed -i -e 's/^module(load=\"imklog\")/#module(load=\"imklog\")/' /etc/rsyslog.conf && \
# prevent email when /sbin/init or init system is not existing
sed -i -e 's|invoke-rc.d rsyslog rotate > /dev/null|/usr/bin/supervisorctl signal hup rsyslog >/dev/null|g' /usr/lib/rsyslog/rsyslog-rotate
# –––––––––––––––––––––––––––––––––––––––––––––––
# ––– Supervisord & Start –––––––––––––––––––––––
# –––––––––––––––––––––––––––––––––––––––––––––––
COPY target/supervisor/supervisord.conf /etc/supervisor/supervisord.conf
COPY target/supervisor/conf.d/* /etc/supervisor/conf.d/
WORKDIR /
EXPOSE 25 587 143 465 993 110 995 4190
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
CMD ["supervisord", "-c", "/etc/supervisor/supervisord.conf"]
| null | maintenance/other |
163 | e7850bbe2a7e471c9a7664a31aeba7432e3d9d70 | Bumped source to 20201019-6f8e9bb | Bumped source to 20201019-6f8e9bb
| FROM docker.pkg.github.com/dock0/arch/arch:20201019-9fe28a5
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| FROM docker.pkg.github.com/dock0/arch/arch:20201019-6f8e9bb
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| maintenance/other |
252 | 9843cf6f186dc0c342269592856ac7a117ceb32d | Bumped source to 20200814-ee66659 | Bumped source to 20200814-ee66659
| FROM docker.pkg.github.com/dock0/arch/arch:20200814-af58a04
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh
ENV EDITOR vim
WORKDIR /opt/build
CMD ["make", "local"]
| FROM docker.pkg.github.com/dock0/arch/arch:20200814-ee66659
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh
ENV EDITOR vim
WORKDIR /opt/build
CMD ["make", "local"]
| code refactoring |
131 | a30de46c33d7bb1fbfaacfa3884cf037941ff9e7 | Bumped source to 20201122-db9c881 | Bumped source to 20201122-db9c881
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20201122-4168b6f
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20201122-db9c881
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| maintenance/other |
397 | 78192e9fac3e99bd6b07a745d8b13e428c0d8426 | Update to 2.2.16 | Update to 2.2.16
| FROM node:argon
MAINTAINER Raul Rodriguez <[email protected]>
ENV PARSE_SERVER_VERSION 2.2.15
RUN npm install -g parse-server@${PARSE_SERVER_VERSION}
COPY docker-entrypoint.sh /entrypoint.sh
EXPOSE 1337
ENTRYPOINT ["/entrypoint.sh"]
CMD ["parse-server"] | FROM node:argon
MAINTAINER Raul Rodriguez <[email protected]>
ENV PARSE_SERVER_VERSION 2.2.16
RUN npm install -g parse-server@${PARSE_SERVER_VERSION}
COPY docker-entrypoint.sh /entrypoint.sh
EXPOSE 1337
ENTRYPOINT ["/entrypoint.sh"]
CMD ["parse-server"] | feature addition |
123 | 9a8cef0db85ff70e35a2354bb39ba41178a47853 | Bumped source to 20200319-cc2850c | Bumped source to 20200319-cc2850c
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20200319-f5d16c2
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20200319-cc2850c
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| maintenance/other |
335 | 59a844bde9a7d99d1ae90dc83f85325e562b81bd | added test data | added test data
| FROM kbase/kbase:sdkbase.latest
MAINTAINER Dylan Chivian
# -----------------------------------------
# Insert apt-get instructions here to install
# any required dependencies for your module.
# Update Transform (should go away eventually)
RUN \
. /kb/dev_container/user-env.sh && \
cd /kb/dev_container/modules && \
rm -rf transform && \
git clone https://github.com/kbase/transform -b develop
# setup the transform, but ignore errors because sample data cannot be found!
RUN \
. /kb/dev_container/user-env.sh; \
cd /kb/dev_container/modules/transform/t/demo; \
python setup.py; \
exit 0;
# Install VSEARCH
#
RUN git clone https://github.com/torognes/vsearch
WORKDIR vsearch
RUN ./configure
RUN make
RUN make install
WORKDIR ../
# RUN apt-get update
# -----------------------------------------
COPY ./ /kb/module
RUN mkdir -p /kb/module/work
WORKDIR /kb/module
RUN make
ENTRYPOINT [ "./scripts/entrypoint.sh" ]
CMD [ ]
| FROM kbase/kbase:sdkbase.latest
MAINTAINER Dylan Chivian
# -----------------------------------------
# Insert apt-get instructions here to install
# any required dependencies for your module.
# Update Transform (should go away eventually)
RUN \
. /kb/dev_container/user-env.sh && \
cd /kb/dev_container/modules && \
rm -rf transform && \
git clone https://github.com/kbase/transform -b develop
# setup the transform, but ignore errors because sample data cannot be found!
RUN \
. /kb/dev_container/user-env.sh; \
cd /kb/dev_container/modules/transform/t/demo; \
python setup.py; \
exit 0;
# Install VSEARCH
#
RUN git clone https://github.com/torognes/vsearch
WORKDIR vsearch
RUN ./configure
RUN make
RUN make install
RUN git clone https://github.com/dcchivian/kb_vsearch_test_data
WORKDIR ../
# RUN apt-get update
# -----------------------------------------
COPY ./ /kb/module
RUN mkdir -p /kb/module/work
WORKDIR /kb/module
RUN make
ENTRYPOINT [ "./scripts/entrypoint.sh" ]
CMD [ ]
| maintenance/other |
2282 | 83d6f7cb75d1bedcb34ed9f32027930f62a433d0 | Bumped source to 20201129-a325984 | Bumped source to 20201129-a325984
| FROM docker.pkg.github.com/dock0/ssh/ssh:20201129-4565f3d
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm --needed cpio dnsutils htop lockfile-progs lsof mtr net-tools whois zsh neovim
RUN usermod --shell /usr/bin/zsh $ADMIN
RUN su - $ADMIN -c "git clone git://github.com/akerl/....git /home/$ADMIN/..."
RUN su - $ADMIN -c '.../... conf https://raw.githubusercontent.com/akerl/dotfiles/master/.dotdotdot.conf'
RUN su - $ADMIN -c '.../... supi'
| null | maintenance/other |
2265 | eac773c1d3a14d52159d01f35e4861e042038cfd | Bumped source to 20211013-1e1930d | Bumped source to 20211013-1e1930d
| FROM docker.pkg.github.com/dock0/arch/arch:20211013-301a6d1
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| null | maintenance/other |
183 | 606e10b0fdeec3678306a00214d4fc03346cf783 | Bumped source to 20210824-cfcafd0 | Bumped source to 20210824-cfcafd0
| FROM docker.pkg.github.com/dock0/arch/arch:20210824-7560e8d
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| FROM docker.pkg.github.com/dock0/arch/arch:20210824-cfcafd0
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| feature addition |
2184 | f42f00fac59648b10633dcdf40f8869f9af53f60 | Bumped source to 20200704-ce3cbba | Bumped source to 20200704-ce3cbba
| FROM docker.pkg.github.com/dock0/service/service:20200704-d2525e2
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm --needed openssh
ENV ADMIN akerl
ENV KEY_URL https://id-ed25519.pub/groups/default.txt
RUN useradd -d /var/lib/ssh -M ssh_key_sync
RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh
RUN echo "$KEY_URL" > /var/lib/ssh/key_url
ADD sshd_config /etc/ssh/sshd_config
ADD run /service/sshd/run
ADD sync /var/lib/ssh/sync
RUN groupadd remote
RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN"
RUN passwd -d "$ADMIN"
| null | maintenance/other |
2320 | b7b6b95e1d8aef3d92cf01d97ed1c8bf1def8d93 | Added DEBIAN_FRONTEND=noninteractive before apt-get commands | Added DEBIAN_FRONTEND=noninteractive before apt-get commands | FROM ubuntu
MAINTAINER Justin Plock <[email protected]>
RUN sed 's/main$/main universe/' -i /etc/apt/sources.list
RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get install -y -q wget openjdk-7-jre-headless
RUN mkdir -p /opt/snowizard /var/log/snowizard
RUN wget -q -O /opt/snowizard/snowizard.jar http://repo.maven.apache.org/maven2/com/ge/snowizard/snowizard-service/1.0.1/snowizard-service-1.0.1.jar
ADD ./snowizard-service/snowizard.upstart /etc/init/snowizard.conf
ADD ./snowizard-service/snowizard.yml /etc/snowizard.yml
ADD ./snowizard-service/snowizard.jvm.conf /etc/snowizard.jvm.conf
ENV JAVA_HOME /usr/lib/jvm/default-java
# Snowizard port
EXPOSE 8080
# Administration port
EXPOSE 8180
ENTRYPOINT /usr/bin/java -d64 -server -jar /opt/snowizard/snowizard.jar server /etc/snowizard.yml
| null | code refactoring |
289 | 424572a3e6180208a721fc38fe3161e64e519f95 | Bumped source to 20210109-3d48068 | Bumped source to 20210109-3d48068
| FROM docker.pkg.github.com/dock0/arch/arch:20210109-5485830
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh
ENV EDITOR vim
WORKDIR /opt/build
CMD ["make", "local"]
| FROM docker.pkg.github.com/dock0/arch/arch:20210109-3d48068
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh
ENV EDITOR vim
WORKDIR /opt/build
CMD ["make", "local"]
| maintenance/other |
2077 | 9a1b94a5ca828f79b93db5605a0ee4832344e61c | Update Dockerfile for nightly build 1.6.2-nightly-a633d766d1763f4f4648e423c4e8a8635b183d03 | Update Dockerfile for nightly build 1.6.2-nightly-a633d766d1763f4f4648e423c4e8a8635b183d03 | # latest possible stable go for bootstrapping new go (or just ":latest")
FROM golang:latest
# SHA of commit to build
ENV GOLANG_BUILD_SHA b64c7fc6832902acb8eebc67c887d2ef9114f644
# Last stable version prior this commit
ENV GOLANG_BASE_VERSION 1.6.2
ENV GOLANG_BUILD_VERSION $GOLANG_BASE_VERSION-nightly-$GOLANG_BUILD_SHA
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
&& rm -rf /var/lib/apt/lists/*
ENV GOLANG_DOWNLOAD_URL https://github.com/golang/go/archive/$GOLANG_BUILD_SHA.tar.gz
ENV GOSRC /usr/local/go-$GOLANG_BUILD_SHA
ENV GOROOT $GOSRC
ENV GOPATH /go
ENV GOROOT_BOOTSTRAP /usr/local/go
ENV GOBUILD $GOSRC/src
RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" \
| tar -C /usr/local -xz
RUN echo $GOLANG_BUILD_VERSION > "$GOROOT/VERSION"
WORKDIR $GOBUILD
RUN ./make.bash
# let new built go take precendence over old go used for bootstrapping it
ENV PATH=$GOSRC/bin:$PATH
| null | bug fix |
341 | 3fea5aec737b37c576a1d2ab328e3503c037b60d | Bumped source to 20200911-934b1c5 | Bumped source to 20200911-934b1c5
| FROM docker.pkg.github.com/dock0/arch/arch:20200911-9cb9cec
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| FROM docker.pkg.github.com/dock0/arch/arch:20200911-934b1c5
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| maintenance/other |
2194 | 1a394a2b912aba655014a38a8fc384975c66d395 | bypass '/dev/tty' gpg bug | bypass '/dev/tty' gpg bug
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=913614
| # Use an official Python runtime as a parent image
FROM python:3.7-slim-stretch
# add our user and group first to make sure their IDs get assigned consistently
RUN groupadd -r zeus && useradd -r -m -g zeus zeus
ENV NVM_DIR /usr/local/nvm
ENV NODE_ENV production
ENV PYTHONUNBUFFERED 1
# Sane defaults for pip
ENV PIP_NO_CACHE_DIR off
ENV PIP_DISABLE_PIP_VERSION_CHECK on
RUN mkdir -p /usr/src/zeus
WORKDIR /usr/src/zeus
RUN set -ex \
&& apt-get update && apt-get install -y --no-install-recommends \
build-essential \
ca-certificates \
curl \
gcc \
git \
gosu \
libffi-dev \
libpq-dev \
libxml2-dev \
libxslt-dev \
openssl \
ssh \
wget \
&& rm -rf /var/lib/apt/lists/*
# install nvm, node, and npm
# gpg keys listed at https://github.com/nodejs/node
COPY .nvmrc /usr/src/zeus/
ENV YARN_VERSION 1.7.0
RUN set -x \
&& export NODE_VERSION=$(cat /usr/src/zeus/.nvmrc) \
&& export GNUPGHOME="$(mktemp -d)" \
&& apt-get update && apt-get install -y --no-install-recommends dirmngr gnupg && rm -rf /var/lib/apt/lists/* \
&& for key in \
94AE36675C464D64BAFA68DD7434390BDBE9B9C5 \
B9AE9905FFD7803F25714661B63B535A4C206CA9 \
77984A986EBC2AA786BC0F66B01FBB92821C587A \
71DCFD284A79C3B38668286BC97EC7A07EDE3FC1 \
FD3A5288F042B6850C66B31F09FE44734EB7990E \
8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 \
C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 \
DD8F2338BAE7501E3DD5AC78C273792F7D83545D \
9554F04D7259F04124DE6B476D5A82AC7E37093B \
93C7E9E91B49E432C2F75674B0A78B0A6C481CF6 \
56730D5401028683275BD23C23EFEFE93C4CFFFE \
114F43EE0176B71C7BC219DD50A3051F888C628D \
7937DFD2AB06298B2293C3187D33FF9D0246406D \
; do \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \
done \
&& wget --no-verbose "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.gz" \
&& wget --no-verbose "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \
&& gpg --verify SHASUMS256.txt.asc \
&& grep " node-v$NODE_VERSION-linux-x64.tar.gz\$" SHASUMS256.txt.asc | sha256sum -c - \
&& tar -xzf "node-v$NODE_VERSION-linux-x64.tar.gz" -C /usr/local --strip-components=1 \
&& rm -rf "$GNUPGHOME" "node-v$NODE_VERSION-linux-x64.tar.gz" SHASUMS256.txt.asc \
&& apt-get purge -y --auto-remove dirmngr gnupg \
&& npm install -g yarn@$YARN_VERSION \
&& npm cache clear --force
COPY requirements-base.txt /usr/src/zeus/
RUN pip install -r requirements-base.txt
COPY requirements-dev.txt /usr/src/zeus/
RUN pip install -r requirements-dev.txt
COPY requirements-test.txt /usr/src/zeus/
RUN pip install -r requirements-test.txt
RUN pip install -e git+https://github.com/pallets/werkzeug.git@8eb665a94aea9d9b56371663075818ca2546e152#egg=werkzeug
COPY yarn.lock /usr/src/zeus/
COPY package.json /usr/src/zeus/
RUN yarn install --production --pure-lockfile --ignore-optional \
&& yarn cache clean
COPY . /usr/src/zeus
RUN pip install -e .
RUN node_modules/.bin/webpack -p
ENV WORKSPACE_ROOT /workspace
ENV REPO_ROOT /workspace/repos
RUN mkdir -p $WORKSPACE_ROOT $REPO_ROOT
ENV PATH /usr/src/zeus/bin:$PATH
# Make port 8080 available to the world outside this container
EXPOSE 8080
EXPOSE 8090
VOLUME /workspace
ENTRYPOINT ["docker-entrypoint"]
# Run Zeus
CMD ["zeus", "run", "--host=0.0.0.0", "--port=8080"]
| null | bug fix |
2226 | 86f2da0f15af77c5922bfa652a35a160b64eee54 | Bumped source to 20200906-d943f6a | Bumped source to 20200906-d943f6a
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20200906-52d850a
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| null | feature addition |
307 | d66233e2a0aecb6e80a4f802b0dc6a5cd2fa9041 | fix: change to static base container (#791) | fix: change to static base container (#791)
In addition, this commits ensures we compile a static binary by
disabling CGO.
Fix #762. | # Copyright 2019 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Use the latest stable golang 1.x to compile to a binary
FROM golang:1 as build
WORKDIR /go/src/cloudsql-proxy
COPY . .
RUN go get ./...
RUN go build -ldflags "-X main.metadataString=container" -o cloud_sql_proxy ./cmd/cloud_sql_proxy
# Final Stage
FROM gcr.io/distroless/base-debian10:nonroot
COPY --from=build --chown=nonroot /go/src/cloudsql-proxy/cloud_sql_proxy /cloud_sql_proxy
# set the uid as an integer for compatibility with runAsNonRoot in Kubernetes
USER 65532
| # Copyright 2019 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Use the latest stable golang 1.x to compile to a binary
FROM golang:1 as build
WORKDIR /go/src/cloudsql-proxy
COPY . .
RUN go get ./...
RUN CGO_ENABLED=0 go build -ldflags "-X main.metadataString=container" -o cloud_sql_proxy ./cmd/cloud_sql_proxy
# Final Stage
FROM gcr.io/distroless/static:nonroot
COPY --from=build --chown=nonroot /go/src/cloudsql-proxy/cloud_sql_proxy /cloud_sql_proxy
# set the uid as an integer for compatibility with runAsNonRoot in Kubernetes
USER 65532
| maintenance/other |
54 | 4bc9702a755389ec9ed253aea8c8403b565c587a | chore(dockerfile): Add aws cli to container build (#1099) | chore(dockerfile): Add aws cli to container build (#1099)
Per discussion in spinnaker/spinnaker#2394, adding awscli to container
such that the features added in spinnaker/spinnaker#2941 to enable
an external passwordCommand for a docker registry can be utilized by
AWS users wishing to add their ECR-based docker registries.
Signed-off-by: Joe Hohertz <[email protected]> | FROM openjdk:8
MAINTAINER [email protected]
ENV KUBECTL_RELEASE=1.10.3
ENV HEPTIO_BINARY_RELEASE_DATE=2018-06-05
COPY . workdir/
WORKDIR workdir
RUN GRADLE_USER_HOME=cache ./gradlew installDist -x test -Prelease.useLastTag=true && \
cp -r ./halyard-web/build/install/halyard /opt && \
cd .. && \
rm -rf workdir
RUN echo '#!/usr/bin/env bash' | tee /usr/local/bin/hal > /dev/null && \
echo '/opt/halyard/bin/hal "$@"' | tee /usr/local/bin/hal > /dev/null
RUN chmod +x /usr/local/bin/hal
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_RELEASE}/bin/linux/amd64/kubectl && \
chmod +x ./kubectl && \
mv ./kubectl /usr/local/bin/kubectl
RUN curl -o heptio-authenticator-aws https://amazon-eks.s3-us-west-2.amazonaws.com/${KUBECTL_RELEASE}/${HEPTIO_BINARY_RELEASE_DATE}/bin/linux/amd64/heptio-authenticator-aws && \
chmod +x ./heptio-authenticator-aws && \
mv ./heptio-authenticator-aws /usr/local/bin/heptio-authenticator-aws
ENV PATH "$PATH:/usr/local/bin/heptio-authenticator-aws"
RUN useradd -m spinnaker
USER spinnaker
CMD "/opt/halyard/bin/halyard"
| FROM openjdk:8
MAINTAINER [email protected]
ENV KUBECTL_RELEASE=1.10.3
ENV HEPTIO_BINARY_RELEASE_DATE=2018-06-05
COPY . workdir/
WORKDIR workdir
RUN GRADLE_USER_HOME=cache ./gradlew installDist -x test -Prelease.useLastTag=true && \
cp -r ./halyard-web/build/install/halyard /opt && \
cd .. && \
rm -rf workdir
RUN echo '#!/usr/bin/env bash' | tee /usr/local/bin/hal > /dev/null && \
echo '/opt/halyard/bin/hal "$@"' | tee /usr/local/bin/hal > /dev/null
RUN chmod +x /usr/local/bin/hal
RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_RELEASE}/bin/linux/amd64/kubectl && \
chmod +x ./kubectl && \
mv ./kubectl /usr/local/bin/kubectl
RUN curl -o heptio-authenticator-aws https://amazon-eks.s3-us-west-2.amazonaws.com/${KUBECTL_RELEASE}/${HEPTIO_BINARY_RELEASE_DATE}/bin/linux/amd64/heptio-authenticator-aws && \
chmod +x ./heptio-authenticator-aws && \
mv ./heptio-authenticator-aws /usr/local/bin/heptio-authenticator-aws
ENV PATH "$PATH:/usr/local/bin/heptio-authenticator-aws"
RUN wget -O /tmp/get-pip.py https://bootstrap.pypa.io/get-pip.py && \
python /tmp/get-pip.py && \
pip install awscli --upgrade
RUN useradd -m spinnaker
USER spinnaker
CMD "/opt/halyard/bin/halyard"
| Not enough inforamtion |
8 | a7f9a5fb4a7081a6633aab094445e84ad24d1283 | Bumped source to 20210724-cbc37fa | Bumped source to 20210724-cbc37fa
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20210724-44e8f14
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20210724-cbc37fa
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| maintenance/other |
257 | c9f8f307b5ae03dfdde13dbeac8b1c31ab0f0ba3 | Updated Dockerfile | Updated Dockerfile
| FROM ubuntu:trusty
MAINTAINER Werner Maisl <[email protected]>
# Install packages
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && \
apt-get -y install supervisor git apache2 libapache2-mod-php5 mysql-server php5-mysql pwgen php-apc php5-mcrypt curl && \
echo "ServerName localhost" >> /etc/apache2/apache2.conf
# Add image configuration and scripts
ADD start-apache2.sh /start-apache2.sh
ADD start-mysqld.sh /start-mysqld.sh
ADD run.sh /run.sh
RUN chmod 755 /*.sh
ADD my.cnf /etc/mysql/conf.d/my.cnf
ADD supervisord-apache2.conf /etc/supervisor/conf.d/supervisord-apache2.conf
ADD supervisord-mysqld.conf /etc/supervisor/conf.d/supervisord-mysqld.
ADD .env /.env
# Remove pre-installed database
RUN rm -rf /var/lib/mysql/*
# Add MySQL utils
ADD create_mysql_admin_user.sh /create_mysql_admin_user.sh
ADD create_mysql_database.sh /create_mysql_database.sh
RUN chmod 755 /*.sh
# config to enable .htaccess
ADD apache_default /etc/apache2/sites-available/000-default.conf
RUN a2enmod rewrite
# Configure /app folder with sample app
RUN git clone https://github.com/SourceMod-Store/WebPanel-Core.git /app
# Download composer
RUN curl -sS https://getcomposer.org/installer (link is external) | php
RUN mv composer.phar /usr/local/bin/composer
# Link the app to /var/www/html
RUN mkdir -p /app && rm -fr /var/www/html && ln -s /app /var/www/html
# Link .env to /var/www/html
RUN ln -s .env /var/www/html/.env
# Compoer install the WebPanel-Core
RUN cd /app && composer install
#Enviornment variables to configure php
ENV PHP_UPLOAD_MAX_FILESIZE 10M
ENV PHP_POST_MAX_SIZE 10M
# Add volumes for MySQL
VOLUME ["/etc/mysql", "/var/lib/mysql" ]
EXPOSE 80 3306
CMD ["/run.sh"]
| FROM ubuntu:trusty
MAINTAINER Werner Maisl <[email protected]>
# Install packages
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && \
apt-get -y install supervisor git apache2 libapache2-mod-php5 mysql-server php5-mysql pwgen php-apc php5-mcrypt curl && \
echo "ServerName localhost" >> /etc/apache2/apache2.conf
# Add image configuration and scripts
ADD start-apache2.sh /start-apache2.sh
ADD start-mysqld.sh /start-mysqld.sh
ADD run.sh /run.sh
RUN chmod 755 /*.sh
ADD my.cnf /etc/mysql/conf.d/my.cnf
ADD supervisord-apache2.conf /etc/supervisor/conf.d/supervisord-apache2.conf
ADD supervisord-mysqld.conf /etc/supervisor/conf.d/supervisord-mysqld.
ADD .env /.env
# Remove pre-installed database
RUN rm -rf /var/lib/mysql/*
# Add MySQL utils
ADD create_mysql_admin_user.sh /create_mysql_admin_user.sh
ADD create_mysql_database.sh /create_mysql_database.sh
RUN chmod 755 /*.sh
# config to enable .htaccess
ADD apache_default /etc/apache2/sites-available/000-default.conf
RUN a2enmod rewrite
# Configure /app folder with sample app
RUN git clone https://github.com/SourceMod-Store/WebPanel-Core.git /app
# Download composer
RUN curl -sS https://getcomposer.org/installer | php
RUN mv composer.phar /usr/local/bin/composer
# Link the app to /var/www/html
RUN mkdir -p /app && rm -fr /var/www/html && ln -s /app /var/www/html
# Link .env to /var/www/html
RUN ln -s .env /var/www/html/.env
# Compoer install the WebPanel-Core
RUN cd /app && composer install
#Enviornment variables to configure php
ENV PHP_UPLOAD_MAX_FILESIZE 10M
ENV PHP_POST_MAX_SIZE 10M
# Add volumes for MySQL
VOLUME ["/etc/mysql", "/var/lib/mysql" ]
EXPOSE 80 3306
CMD ["/run.sh"]
| bug fix |
2220 | 1e66b4b34b80cb26ae59106cf32cb12250ccf4f6 | Bumped source to 20200523-57dd44e | Bumped source to 20200523-57dd44e
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20200523-bcffc57
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| null | maintenance/other |
2211 | aeb2f6b956f3600ed748270881cee6bd1d83cc1d | Fix sqlite3 benchmark (#1289) | Fix sqlite3 benchmark (#1289)
| # Copyright 2016 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
################################################################################
FROM gcr.io/oss-fuzz-base/base-builder@sha256:1b6a6993690fa947df74ceabbf6a1f89a46d7e4277492addcd45a8525e34be5a
RUN apt-get update && apt-get install -y make autoconf automake libtool curl tcl zlib1g-dev
RUN mkdir $SRC/sqlite3 && \
cd $SRC/sqlite3 && \
curl 'https://sqlite.org/src/tarball/sqlite.tar.gz?r=c78cbf2e86850cc6' -o sqlite3.tar.gz && \
tar xzf sqlite3.tar.gz --strip-components 1
RUN find $SRC/sqlite3 -name "*.test" | xargs zip $SRC/ossfuzz_seed_corpus.zip
WORKDIR sqlite3
COPY build.sh *.dict $SRC/
| null | code refactoring |
372 | 624c0ce52b90ca9ce61a97185908b605c3f8535b | Bumped source to 20220430-92b305d | Bumped source to 20220430-92b305d
| FROM ghcr.io/dock0/arch:20220430-c44361f
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm base-devel vim-minimal tree
ENV EDITOR vim
WORKDIR /opt/build
CMD ["make", "local"]
| FROM ghcr.io/dock0/arch:20220430-92b305d
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm base-devel vim-minimal tree
ENV EDITOR vim
WORKDIR /opt/build
CMD ["make", "local"]
| feature addition |
74 | 0bec062ec7c124fc378005bffaa94952bf308b3e | Update to v0.5.17 | Update to v0.5.17 | FROM learninglayers/ror
MAINTAINER Jukka Purma <jukka.purma ÄT aalto.fi>
# Doing the bundle install with local files so that its result gets cached.
# If these are not up to date with the github version of achrails, it spells trouble,
# but couldn't get COPY or ADD working with files downloaded from the Dockerfile.
WORKDIR /tmp
COPY Gemfile Gemfile
COPY Gemfile.lock Gemfile.lock
RUN bundle install
RUN mkdir /achrails
RUN curl -SL https://github.com/learning-layers/achrails/archive/v0.5.16.tar.gz \
| tar -zxC /achrails --strip-components=1
RUN echo ls
ADD . /achrails
COPY database.yml /achrails/config/database.yml
WORKDIR /achrails
VOLUME /achrails
COPY start-achrails.sh start-achrails.sh
CMD ["bash", "start-achrails.sh"]
| FROM learninglayers/ror
MAINTAINER Jukka Purma <jukka.purma ÄT aalto.fi>
# Doing the bundle install with local files so that its result gets cached.
# If these are not up to date with the github version of achrails, it spells trouble,
# but couldn't get COPY or ADD working with files downloaded from the Dockerfile.
WORKDIR /tmp
COPY Gemfile Gemfile
COPY Gemfile.lock Gemfile.lock
RUN bundle install
RUN mkdir /achrails
RUN curl -SL https://github.com/learning-layers/achrails/archive/v0.5.17.tar.gz \
| tar -zxC /achrails --strip-components=1
RUN echo ls
ADD . /achrails
COPY database.yml /achrails/config/database.yml
WORKDIR /achrails
VOLUME /achrails
COPY start-achrails.sh start-achrails.sh
CMD ["bash", "start-achrails.sh"]
| maintenance/other |
2096 | eb98c66e7534f34af47180359b67b9403efb5562 | add install-geschichte script | add install-geschichte script
| FROM ubuntu:latest
# Update the APT cache
RUN apt-get update
# Install and setup project dependencies
RUN apt-get install -y curl git wget unzip
# prepare for Java download
RUN apt-get install -y software-properties-common
RUN apt-get -y install openjdk-7-jre-headless
RUN apt-get install -y mongodb-clients
ENV JAVA_HOME /usr/lib/jvm/java-7-openjdk-amd64
# fix wget
RUN export HTTP_CLIENT="wget --no-check-certificate -O"
# grab leiningen
RUN wget https://raw.github.com/technomancy/leiningen/stable/bin/lein -O /usr/local/bin/lein
RUN chmod +x /usr/local/bin/lein
ENV LEIN_ROOT yes
RUN lein
# grab geschichte
# add scripts
ADD ./resources /opt
# grab project
RUN git clone https://github.com/kordano/ceres-geschichte.git /opt/ceres-geschichte
# retrieve dependencies
RUN /opt/retrieve-deps
CMD ["/opt/start-ceres"]
| null | maintenance/other |
143 | 98b63c912d4f07b6ad9f20e41f2dc6214df8a154 | Bumped source to 20200916-9110dd6 | Bumped source to 20200916-9110dd6
| FROM docker.pkg.github.com/dock0/arch/arch:20200916-e08c9f6
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh
ENV EDITOR vim
WORKDIR /opt/build
CMD ["make", "local"]
| FROM docker.pkg.github.com/dock0/arch/arch:20200916-9110dd6
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh
ENV EDITOR vim
WORKDIR /opt/build
CMD ["make", "local"]
| maintenance/other |
35 | 31f8b3a2952edf76d3eb3e2991867309b5ab59ed | Bumped source to 20200309-d3b09fb | Bumped source to 20200309-d3b09fb
| FROM docker.pkg.github.com/dock0/ssh/ssh:20200309-1f429df
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm --needed cpio dnsutils htop lockfile-progs lsof mtr net-tools whois zsh neovim
RUN usermod --shell /usr/bin/zsh $ADMIN
RUN su - $ADMIN -c "git clone git://github.com/akerl/....git /home/$ADMIN/..."
RUN su - $ADMIN -c '.../... conf https://raw.githubusercontent.com/akerl/dotfiles/master/.dotdotdot.conf'
RUN su - $ADMIN -c '.../... supi'
| FROM docker.pkg.github.com/dock0/ssh/ssh:20200309-d3b09fb
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm --needed cpio dnsutils htop lockfile-progs lsof mtr net-tools whois zsh neovim
RUN usermod --shell /usr/bin/zsh $ADMIN
RUN su - $ADMIN -c "git clone git://github.com/akerl/....git /home/$ADMIN/..."
RUN su - $ADMIN -c '.../... conf https://raw.githubusercontent.com/akerl/dotfiles/master/.dotdotdot.conf'
RUN su - $ADMIN -c '.../... supi'
| maintenance/other |
100 | 08326236d2772b8cffa54c1080074993ee6166e6 | Bumped source to 20201011-9ed8a5c | Bumped source to 20201011-9ed8a5c
| FROM docker.pkg.github.com/dock0/service/service:20201011-35fda10
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm --needed openssh
ENV ADMIN akerl
ENV KEY_URL https://id-ed25519.pub/groups/default.txt
RUN useradd -d /var/lib/ssh -M ssh_key_sync
RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh
RUN echo "$KEY_URL" > /var/lib/ssh/key_url
ADD sshd_config /etc/ssh/sshd_config
ADD run /service/sshd/run
ADD sync /var/lib/ssh/sync
RUN groupadd remote
RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN"
RUN passwd -d "$ADMIN"
| FROM docker.pkg.github.com/dock0/service/service:20201011-9ed8a5c
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm --needed openssh
ENV ADMIN akerl
ENV KEY_URL https://id-ed25519.pub/groups/default.txt
RUN useradd -d /var/lib/ssh -M ssh_key_sync
RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh
RUN echo "$KEY_URL" > /var/lib/ssh/key_url
ADD sshd_config /etc/ssh/sshd_config
ADD run /service/sshd/run
ADD sync /var/lib/ssh/sync
RUN groupadd remote
RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN"
RUN passwd -d "$ADMIN"
| maintenance/other |
317 | 0daab36ea584572dd313bc56468e14458f7c6be9 | Bumped source to 20210817-14c11c7 | Bumped source to 20210817-14c11c7
| FROM docker.pkg.github.com/dock0/arch/arch:20210817-e52d23a
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| FROM docker.pkg.github.com/dock0/arch/arch:20210817-14c11c7
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| Not enough inforamtion |
2133 | f9066a76dade410c5f9d873b491bc4bdbf734723 | Bumped source to 20210406-b04420a | Bumped source to 20210406-b04420a
| FROM docker.pkg.github.com/dock0/ssh/ssh:20210406-f4c4501
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm --needed cpio dnsutils htop lockfile-progs lsof mtr net-tools whois zsh neovim
RUN usermod --shell /usr/bin/zsh $ADMIN
RUN su - $ADMIN -c "git clone git://github.com/akerl/....git /home/$ADMIN/..."
RUN su - $ADMIN -c '.../... conf https://raw.githubusercontent.com/akerl/dotfiles/master/.dotdotdot.conf'
RUN su - $ADMIN -c '.../... supi'
| null | feature addition |
66 | aab7d78d3d9fb341a1cab310cce9cfa1a4e76c36 | Update Dockerfile | Update Dockerfile | FROM ubuntu:16.04
RUN apt-get update -y && \
apt-get install -y openjdk-8-jre openjdk-8-jdk lib32stdc++6 lib32z1 wget git
RUN cd && wget https://dl.google.com/android/android-sdk_r24.4.1-linux.tgz && tar -zxvf android-sdk_r24.4.1-linux.tgz && \
/root/android-sdk-linux/tools/android list sdk -a -e && \
echo y | /root/android-sdk-linux/tools/android update sdk -a -u -t build-tools-24.0.0,android-24,extra-android-support,extra-android-m2repository,extra-google-m2repository,extra-google-google_play_services
ENV ANDROID_HOME /root/android-sdk-linux
COPY app-build.sh /root/
COPY netrc /root/.netrc
CMD ["sh", "/root/app-build.sh"]
| FROM ubuntu:16.04
RUN apt-get update -y && \
apt-get install -y openjdk-8-jre openjdk-8-jdk lib32stdc++6 lib32z1 wget git
RUN cd && wget https://dl.google.com/android/android-sdk_r24.4.1-linux.tgz && tar -zxvf android-sdk_r24.4.1-linux.tgz && \
/root/android-sdk-linux/tools/android list sdk -a -e && \
echo y | /root/android-sdk-linux/tools/android update sdk -a -u -t build-tools-24.0.0,android-24,extra-android-support,extra-android-m2repository,extra-google-m2repository,extra-google-google_play_services
RUN echo y | /root/android-sdk-linux/tools/android update sdk -a -u -t 4
ENV ANDROID_HOME /root/android-sdk-linux
COPY app-build.sh /root/
COPY netrc /root/.netrc
CMD ["sh", "/root/app-build.sh"]
| maintenance/other |
78 | 73229c1a57f90c98acf63f66312e836ca1ba546e | added missing packages to Dockerfile, bison and flex | added missing packages to Dockerfile, bison and flex
|
## Use a base ubuntu install
FROM ubuntu:14.04
MAINTAINER vgteam
## Download dependencies for vg, pretty standard fare
#RUN sed 's/main$/main universe/' -i /etc/apt/sources.list
RUN apt-get update && apt-get install -y software-properties-common \
gcc-4.9-base \
g++ \
ncurses-dev \
pkg-config \
build-essential \
libjansson-dev \
automake \
libevent-2.0-5 \
libevent-pthreads-2.0-5 \
libpomp-dev \
libtool \
curl \
unzip \
wget \
libbz2-dev \
gzip \
git \
cmake \
libsnappy-dev \
libgflags-dev \
zlib1g-dev
#python-dev \
#protobuf-compiler \
#libprotoc-dev \
#RUN apt-get update
## Set CXXFLAGS and CFLAGS for gcc to use SSE4.1
#ENV CXXFLAGS "-O2 -g march=corei7 -mavx -fopenmp -std=c++11"
#ENV CXXFLAGS "$CXXFLAGS -march=corei7 -mavx"
## Download VG and its git dependencies
RUN git clone --recursive https://github.com/edawson/vg.git /home/vg
RUN cd /home/vg && . ./source_me.sh && make
#RUN cd /home/vg; make
#RUN cp -r /home/vg/include/* /usr/local/include/
ENV LIBRARY_PATH /home/vg/lib:$LIBRARY_PATH
ENV LD_LIBRARY_PATH /home/vg/lib:$LD_LIBRARY_PATH
ENV LD_INCLUDE_PATH /home/vg/include:$LD_INCLUDE_PATH
ENV C_INCLUDE_PATH /home/vg/include:$C_INCLUDE_PATH
ENV CPLUS_INCLUDE_PATH /home/vg/include:$CPLUS_INCLUDE_PATH
ENV INCLUDE_PATH /home/vg/include:$INCLUDE_PATH
ENV PATH /home/vg/bin:$PATH
#RUN cp -r /home/vg/lib/* /usr/local/lib
#RUN ln -s "/home/vg/bin/vg" "/usr/bin/vg"
#CMD cd /home/vg/ && . ./source_me.sh && vg
#ENTRYPOINT vg
|
## Use a base ubuntu install
FROM ubuntu:14.04
MAINTAINER vgteam
## Download dependencies for vg, pretty standard fare
#RUN sed 's/main$/main universe/' -i /etc/apt/sources.list
RUN apt-get update && apt-get install -y software-properties-common \
gcc-4.9-base \
g++ \
ncurses-dev \
pkg-config \
build-essential \
libjansson-dev \
automake \
libevent-2.0-5 \
libevent-pthreads-2.0-5 \
libpomp-dev \
libtool \
curl \
unzip \
wget \
libbz2-dev \
gzip \
git \
cmake \
libsnappy-dev \
libgflags-dev \
zlib1g-dev \
bison \
flex
#python-dev \
#protobuf-compiler \
#libprotoc-dev \
#RUN apt-get update
## Set CXXFLAGS and CFLAGS for gcc to use SSE4.1
#ENV CXXFLAGS "-O2 -g march=corei7 -mavx -fopenmp -std=c++11"
#ENV CXXFLAGS "$CXXFLAGS -march=corei7 -mavx"
## Download VG and its git dependencies
RUN git clone --recursive https://github.com/edawson/vg.git /home/vg
RUN cd /home/vg && . ./source_me.sh && make
#RUN cd /home/vg; make
#RUN cp -r /home/vg/include/* /usr/local/include/
ENV LIBRARY_PATH /home/vg/lib:$LIBRARY_PATH
ENV LD_LIBRARY_PATH /home/vg/lib:$LD_LIBRARY_PATH
ENV LD_INCLUDE_PATH /home/vg/include:$LD_INCLUDE_PATH
ENV C_INCLUDE_PATH /home/vg/include:$C_INCLUDE_PATH
ENV CPLUS_INCLUDE_PATH /home/vg/include:$CPLUS_INCLUDE_PATH
ENV INCLUDE_PATH /home/vg/include:$INCLUDE_PATH
ENV PATH /home/vg/bin:$PATH
#RUN cp -r /home/vg/lib/* /usr/local/lib
#RUN ln -s "/home/vg/bin/vg" "/usr/bin/vg"
#CMD cd /home/vg/ && . ./source_me.sh && vg
#ENTRYPOINT vg
| feature addition |
192 | a81427bd440186278b2faf5ff6786f2ace99ab3f | Bumped source to 20210806-700d370 | Bumped source to 20210806-700d370
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20210806-757af97
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20210806-700d370
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| maintenance/other |
2110 | 45f1cb3f7c0099d7d952ad22cba2cb0146c66636 | Added a symlink from python3 to python, and added PATH to include iquery | Added a symlink from python3 to python, and added PATH to include iquery
| FROM ubuntu:latest
MAINTAINER Cerbo IO <[email protected]>
ENV DEBIAN_FRONTEND noninteractive
ENV PATH=$PATH:/usr/local/scidb/bin
RUN apt-get update ; \
apt-get -y install python3 python3-pip libopenjpeg-dev python3-grib python3-netcdf4 openssh-server wget screen vim-nox ; \
ln -s /usr/local/bin/python3 /usr/local/bin/python ; \
pip3 install --upgrade pip ;\
pip3 install scidb-py ; \
sed -i 's/PermitRootLogin prohibit-password/PermitRootLogin yes/g' /etc/ssh/sshd_config ; \
echo "root:scidb" | chpasswd ; \
mkdir -p /usr/local/scidb/bin /usr/local/scidb/lib ; \
mkdir -p /opt/scidb/15.12/3rdparty/cityhash/lib/
COPY iquery /usr/local/scidb/bin/
COPY usr-local-scidb-lib/* /usr/local/scidb/lib/
COPY lib-x86_64-linux-gnu/* /lib/x86_64-linux-gnu/
COPY libcityhash.so.0 /opt/scidb/15.12/3rdparty/cityhash/lib/
COPY start-ssh /
EXPOSE 22
CMD ["/bin/bash"]
| null | Not enough inforamtion |
380 | a0e71692f0aedcff1ad2f47538c407cf22e19218 | Dockerfile version bump | Dockerfile version bump
| FROM alpine
MAINTAINER David Personette <[email protected]>
# Install emby
RUN export LANG=C.UTF-8 && \
ff_url='http://johnvansickle.com/ffmpeg/releases' && \
glib_url='https://github.com/sgerrand/alpine-pkg-glibc/releases/download'&&\
glib_version=2.31-r0 && \
glibc_base=glibc-${glib_version}.apk && \
glibc_bin=glibc-bin-${glib_version}.apk && \
glibc_i18n=glibc-i18n-${glib_version}.apk && \
monourl='https://archive.archlinux.org/packages/m/mono' && \
mono_version=6.4.0.198-2 && \
key=/etc/apk/keys/sgerrand.rsa.pub && \
url='https://github.com/MediaBrowser/Emby.Releases/releases/download' && \
version=4.4.2.0 && \
apk --no-cache --no-progress upgrade && \
apk --no-cache --no-progress add bash curl shadow sqlite-libs tini tzdata \
zstd &&\
curl -LSs https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub -o $key && \
curl -LOSs $glib_url/$glib_version/$glibc_base && \
curl -LOSs $glib_url/$glib_version/$glibc_bin && \
curl -LOSs $glib_url/$glib_version/$glibc_i18n && \
apk --no-cache --no-progress add $glibc_base $glibc_bin $glibc_i18n && \
{ /usr/glibc-compat/bin/localedef -c -iPOSIX -fUTF-8 $LANG || :; } && \
ln -s libsqlite3.so.0 /usr/lib/libsqlite3.so && \
curl -LSs $monourl/mono-${mono_version}-x86_64.pkg.tar.zst \
-o mono.tar.zst && \
zstdcat mono.tar.zst | tar xf - && \
addgroup -S emby && \
adduser -S -D -H -h /usr/lib/emby-server -s /sbin/nologin -G emby \
-g 'Emby User' emby && \
echo "Downloading version: $version" && \
curl -LSs $url/$version/embyserver-netframework_$version.zip -o emby.zip &&\
curl -LSs "$ff_url/ffmpeg-release-amd64-static.tar.xz" -o ffmpeg.txz && \
{ tar --strip-components=1 -C /bin -xf ffmpeg.txz "*/ffmpeg" 2>&-||:; } && \
{ tar --strip-components=1 -C /bin -xf ffmpeg.txz "*/ffprobe" 2>&-||:; } &&\
mkdir -p /config /media /usr/lib/emby-server && \
unzip emby.zip -d /usr/lib/emby-server && \
cert-sync /etc/ssl/certs/ca-certificates.crt && \
chown -Rh root. /bin/ff* /usr/lib/emby-server && \
chown -Rh emby. /config /media && \
apk del glibc-i18n zstd && \
rm -rf /tmp/* /var/cache/* emby.zip ffmpeg.txz glibc* $key mono.tar.zst
COPY emby.sh /usr/bin/
EXPOSE 8096 8920 7359/udp 1900/udp
HEALTHCHECK --interval=60s --timeout=15s --start-period=90s \
CMD curl -L http://localhost:8096/
VOLUME ["/config", "/media"]
ENTRYPOINT ["/sbin/tini", "--", "/usr/bin/emby.sh"] | FROM alpine
MAINTAINER David Personette <[email protected]>
# Install emby
RUN export LANG=C.UTF-8 && \
ff_url='http://johnvansickle.com/ffmpeg/releases' && \
glib_url='https://github.com/sgerrand/alpine-pkg-glibc/releases/download'&&\
glib_version=2.31-r0 && \
glibc_base=glibc-${glib_version}.apk && \
glibc_bin=glibc-bin-${glib_version}.apk && \
glibc_i18n=glibc-i18n-${glib_version}.apk && \
monourl='https://archive.archlinux.org/packages/m/mono' && \
mono_version=6.4.0.198-2 && \
key=/etc/apk/keys/sgerrand.rsa.pub && \
url='https://github.com/MediaBrowser/Emby.Releases/releases/download' && \
version=4.4.3.0 && \
apk --no-cache --no-progress upgrade && \
apk --no-cache --no-progress add bash curl shadow sqlite-libs tini tzdata \
zstd &&\
curl -LSs https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub -o $key && \
curl -LOSs $glib_url/$glib_version/$glibc_base && \
curl -LOSs $glib_url/$glib_version/$glibc_bin && \
curl -LOSs $glib_url/$glib_version/$glibc_i18n && \
apk --no-cache --no-progress add $glibc_base $glibc_bin $glibc_i18n && \
{ /usr/glibc-compat/bin/localedef -c -iPOSIX -fUTF-8 $LANG || :; } && \
ln -s libsqlite3.so.0 /usr/lib/libsqlite3.so && \
curl -LSs $monourl/mono-${mono_version}-x86_64.pkg.tar.zst \
-o mono.tar.zst && \
zstdcat mono.tar.zst | tar xf - && \
addgroup -S emby && \
adduser -S -D -H -h /usr/lib/emby-server -s /sbin/nologin -G emby \
-g 'Emby User' emby && \
echo "Downloading version: $version" && \
curl -LSs $url/$version/embyserver-netframework_$version.zip -o emby.zip &&\
curl -LSs "$ff_url/ffmpeg-release-amd64-static.tar.xz" -o ffmpeg.txz && \
{ tar --strip-components=1 -C /bin -xf ffmpeg.txz "*/ffmpeg" 2>&-||:; } && \
{ tar --strip-components=1 -C /bin -xf ffmpeg.txz "*/ffprobe" 2>&-||:; } &&\
mkdir -p /config /media /usr/lib/emby-server && \
unzip emby.zip -d /usr/lib/emby-server && \
cert-sync /etc/ssl/certs/ca-certificates.crt && \
chown -Rh root. /bin/ff* /usr/lib/emby-server && \
chown -Rh emby. /config /media && \
apk del glibc-i18n zstd && \
rm -rf /tmp/* /var/cache/* emby.zip ffmpeg.txz glibc* $key mono.tar.zst
COPY emby.sh /usr/bin/
EXPOSE 8096 8920 7359/udp 1900/udp
HEALTHCHECK --interval=60s --timeout=15s --start-period=90s \
CMD curl -L http://localhost:8096/
VOLUME ["/config", "/media"]
ENTRYPOINT ["/sbin/tini", "--", "/usr/bin/emby.sh"] | Not enough inforamtion |
3 | 0f7a86e1e0209c90dd96d3375d3a8e6183be2336 | really fix dockerfile this time | really fix dockerfile this time
| FROM alpine:3.1
RUN mkdir /etc/gremlinproxy
RUN mkdir /var/log/gremlinproxy
ADD example-config.json /etc/gremlinproxy/
# Define mountable directories.
VOLUME ["/etc/gremlinproxy", "/var/log/gremlinproxy"]
# executable only
ADD gremlinproxy /usr/bin/
# Define working directory.
WORKDIR /etc/gremlinproxy
# Define default cmd
CMD ["gremlinproxy", "-c", "/etc/gremlinproxy/example-config.json"]
# Expose control port.
EXPOSE 9876
## IMPORTANT: expose all proxy ports that you want gremlinproxy to listen on for your application services (from the proxy block in config file)
EXPOSE 7777
| FROM alpine:3.1
ADD example-config.json /opt/gremlinproxy/
ADD gremlinproxy /opt/gremlinproxy/
CMD ["/opt/gremlinproxy/gremlinproxy", "-c", "/opt/gremlinproxy/example-config.json"]
# Expose control port.
EXPOSE 9876
## IMPORTANT: expose all proxy ports that you want gremlinproxy to listen on for your application services (from the proxy block in config file)
EXPOSE 7777
| code refactoring |
205 | 0b9afe6e4ad94dd2b70421742dc8cccfc764853a | Update Dockerfile. Part 3. | Update Dockerfile. Part 3.
| FROM centos:7
MAINTAINER Igor Zubkov <[email protected]>
RUN yum upgrade -y
RUN yum install git gcc make bzip2 openssl-devel readline-devel zlib-devel -y
RUN git clone https://github.com/rbenv/rbenv.git /root/.rbenv
RUN git clone https://github.com/sstephenson/ruby-build.git /root/.rbenv/plugins/ruby-build
ENV PATH /root/.rbenv/bin:$PATH
RUN cd /root/.rbenv && src/configure && make -C src
RUN rbenv install -v 2.4.1
RUN rbenv global 2.4.1
# RUN set -ex && echo 'export PATH="/root/.rbenv/bin:$PATH"' >> /root/.bash_profile
# RUN set -ex && echo 'eval "$(rbenv init -)"' >> /root/.bash_profile
# RUN set -ex && echo 'eval "$(rbenv init -)"' >> /root/.profile
# RUN set -ex && echo 'eval "$(rbenv init -)"' >> /etc/profile
# RUN echo 'eval "$(rbenv init -)"' >> /etc/profile.d/rbenv.sh
# RUN eval "$(rbenv init -)"
# RUN which gem
# RUN gem update --system
# ENV BUNDLER_VERSION 1.15.0.pre.2
# RUN gem install bundler --version "$BUNDLER_VERSION"
# RUN gem i bundler -v 1.15.0.pre.2
# RUN mkdir -p /srv/evemonk
# RUN git clone https://github.com/biow0lf/evemonk.git /srv/evemonk
# ENV RAILS_ENV production
# RUN type rbenv
# RUN ruby -v
# RUN gem -v
# RUN bundle -v
# RUN bundle install --without development test
CMD ["/bin/bash"]
| FROM centos:7
MAINTAINER Igor Zubkov <[email protected]>
RUN yum upgrade -y
RUN yum install git gcc make bzip2 openssl-devel readline-devel zlib-devel -y
RUN git clone https://github.com/rbenv/rbenv.git /root/.rbenv
RUN git clone https://github.com/sstephenson/ruby-build.git /root/.rbenv/plugins/ruby-build
ENV PATH /root/.rbenv/bin:/root/.rbenv/shims:$PATH
RUN cd /root/.rbenv && src/configure && make -C src
RUN rbenv install -v 2.4.1
RUN rbenv global 2.4.1
RUN set -ex && echo 'eval "$(rbenv init -)"' >> /root/.bash_profile
RUN gem update --system
ENV BUNDLER_VERSION 1.15.0.pre.2
RUN gem install bundler --version "$BUNDLER_VERSION"
RUN mkdir -p /srv/evemonk
RUN git clone https://github.com/biow0lf/evemonk.git /srv/evemonk
# ENV RAILS_ENV production
# RUN bundle install --without development test
CMD ["/bin/bash"]
| maintenance/other |
212 | f4c0908c66452f92a7741f7389d851f7526435bc | build(deps): bump golang from 1.16.3 to 1.16.4 (#495) | build(deps): bump golang from 1.16.3 to 1.16.4 (#495)
| # Copyright 2019 Francisco Souza. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
FROM golang:1.16.3 AS builder
WORKDIR /code
ADD go.mod go.sum ./
RUN go mod download
ADD . ./
ENV CGO_ENABLED=0
RUN go build -o fake-gcs-server
FROM alpine:3.13.5
COPY --from=builder /code/fake-gcs-server /bin/fake-gcs-server
RUN /bin/fake-gcs-server -h
EXPOSE 4443
ENTRYPOINT ["/bin/fake-gcs-server", "-data", "/data"]
| # Copyright 2019 Francisco Souza. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
FROM golang:1.16.4 AS builder
WORKDIR /code
ADD go.mod go.sum ./
RUN go mod download
ADD . ./
ENV CGO_ENABLED=0
RUN go build -o fake-gcs-server
FROM alpine:3.13.5
COPY --from=builder /code/fake-gcs-server /bin/fake-gcs-server
RUN /bin/fake-gcs-server -h
EXPOSE 4443
ENTRYPOINT ["/bin/fake-gcs-server", "-data", "/data"]
| maintenance/other |
142 | f6f4be79803a5438e670b437674e3a22253db660 | Bumped source to 20201215-ac1d624 | Bumped source to 20201215-ac1d624
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20201215-9d661ab
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20201215-ac1d624
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| feature addition |
50 | 7c6505b899d7baf5b19ae4c26c55ee392eeff4b0 | Bumped source to 20200506-6192e79 | Bumped source to 20200506-6192e79
| FROM docker.pkg.github.com/dock0/ssh/ssh:20200505-4727542
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm --needed cpio dnsutils htop lockfile-progs lsof mtr net-tools whois zsh neovim
RUN usermod --shell /usr/bin/zsh $ADMIN
RUN su - $ADMIN -c "git clone git://github.com/akerl/....git /home/$ADMIN/..."
RUN su - $ADMIN -c '.../... conf https://raw.githubusercontent.com/akerl/dotfiles/master/.dotdotdot.conf'
RUN su - $ADMIN -c '.../... supi'
| FROM docker.pkg.github.com/dock0/ssh/ssh:20200506-6192e79
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm --needed cpio dnsutils htop lockfile-progs lsof mtr net-tools whois zsh neovim
RUN usermod --shell /usr/bin/zsh $ADMIN
RUN su - $ADMIN -c "git clone git://github.com/akerl/....git /home/$ADMIN/..."
RUN su - $ADMIN -c '.../... conf https://raw.githubusercontent.com/akerl/dotfiles/master/.dotdotdot.conf'
RUN su - $ADMIN -c '.../... supi'
| maintenance/other |
2107 | e85771180a754547114683f6ef989947de63711c | accidentially added bitbucket | accidentially added bitbucket
| FROM debian:jessie
MAINTAINER Shane Starcher <[email protected]>
RUN apt-get update && apt-get install -y wget ca-certificates && apt-get -y clean
RUN wget -q http://repos.sensuapp.org/apt/pubkey.gpg -O- | apt-key add -
RUN echo "deb http://repos.sensuapp.org/apt sensu main" > /etc/apt/sources.list.d/sensu.list
RUN \
apt-get update && \
apt-get install -y sensu && \
apt-get -y clean
ENV PATH /opt/sensu/embedded/bin:$PATH
#Nokogiri is needed by aws plugins
RUN \
apt-get update && \
apt-get install -y libxml2 libxml2-dev libxslt1-dev zlib1g-dev build-essential && \
gem install nokogiri && \
apt-get remove -y libxml2-dev libxslt1-dev zlib1g-dev && \
apt-get autoremove -y && \
apt-get -y clean
RUN wget https://github.com/jwilder/dockerize/releases/download/v0.0.2/dockerize-linux-amd64-v0.0.2.tar.gz
RUN tar -C /usr/local/bin -xzvf dockerize-linux-amd64-v0.0.2.tar.gz
ENV DEFAULT_PLUGINS_REPO sensu-plugins
ADD templates /etc/sensu/templates
ADD bin /bin/
#Plugins needed for handlers
RUN /bin/install hipchat mailer pagerduty
#Plugins needed for checks and maybe handlers
RUN /bin/install docker aws http graphite ftp consul etcd bitbucket redis elasticsearch
EXPOSE 4567
VOLUME ["/etc/sensu/conf.d"]
#Client Config
ENV CLIENT_SUBSCRIPTIONS all,default
#Common Config
ENV RUNTIME_INSTALL ''
ENV LOG_LEVEL warn
ENV EMBEDDED_RUBY true
ENV CONFIG_FILE /etc/sensu/config.json
ENV CONFIG_DIR /etc/sensu/conf.d
ENV EXTENSION_DIR /etc/sensu/extensions
ENV PLUGINS_DIR /etc/sensu/plugins
ENV HANDLERS_DIR /etc/sensu/handlers
ENTRYPOINT ["/bin/start"]
| null | maintenance/other |
2223 | 80c6ef2596786c6ee7fc3a7f0efdec0f55278a16 | Bumped source to 20210826-418f7fd | Bumped source to 20210826-418f7fd
| FROM docker.pkg.github.com/dock0/arch/arch:20210826-d6c3c5f
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh
ENV EDITOR vim
WORKDIR /opt/build
CMD ["make", "local"]
| null | Not enough inforamtion |
2286 | 73da7e633cf1033a4444e9d200fd57c1522eccba | Bumped source to 20200712-af6faf9 | Bumped source to 20200712-af6faf9
| FROM docker.pkg.github.com/dock0/ssh/ssh:20200712-23d091a
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm --needed cpio dnsutils htop lockfile-progs lsof mtr net-tools whois zsh neovim
RUN usermod --shell /usr/bin/zsh $ADMIN
RUN su - $ADMIN -c "git clone git://github.com/akerl/....git /home/$ADMIN/..."
RUN su - $ADMIN -c '.../... conf https://raw.githubusercontent.com/akerl/dotfiles/master/.dotdotdot.conf'
RUN su - $ADMIN -c '.../... supi'
| null | maintenance/other |
53 | 36d43d0249d907c6ec8a6f4a494c771a8b9dfeab | updated docker file | updated docker file
| # nodezoo-npm
FROM node:4
ADD . /
EXPOSE 44003
EXPOSE 43003
CMD ["node","srv/npm-dev.js","--seneca.options.tag=npm","--seneca.log.all"]
# build and run:
# $ docker build -t nodezoo-npm-04 .
# $ docker run -d -p 44003:44003 -p 43003:43003 -e HOST=$(docker-machine ip default) -e REDIS=192.168.99.1 -e BEANSTALK=192.168.99.1 -e STATS=192.168.99.1 --volumes-from nodezoo-level nodezoo-npm-04
# local docker ip:
# $ docker-machine ip default
| # nodezoo-npm
FROM node:4
RUN mkdir /src
ADD package.json /src/
WORKDIR /src
RUN npm install
COPY . /src
CMD ["node", "-r", "toolbag", "srv/npm-dev.js", "--seneca.options.tag=nodezoo-npm", "--seneca-log=type:act"]
| maintenance/other |
2128 | 4abbf3d4f68a0f617182365e002d324be18c0bdd | Bumped source to 20210120-a4273cc | Bumped source to 20210120-a4273cc
| FROM docker.pkg.github.com/dock0/service/service:20210120-66257d1
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm --needed openssh
ENV ADMIN akerl
ENV KEY_URL https://id-ed25519.pub/groups/default.txt
RUN useradd -d /var/lib/ssh -M ssh_key_sync
RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh
RUN echo "$KEY_URL" > /var/lib/ssh/key_url
ADD sshd_config /etc/ssh/sshd_config
ADD run /service/sshd/run
ADD sync /var/lib/ssh/sync
RUN groupadd remote
RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN"
RUN passwd -d "$ADMIN"
| null | code refactoring |
368 | 5619f4daf6eccd888167ed2f6167cc5a7f8b7fd9 | Bumped source to 20210828-6fc00c0 | Bumped source to 20210828-6fc00c0
| FROM docker.pkg.github.com/dock0/arch/arch:20210828-6cf161c
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| FROM docker.pkg.github.com/dock0/arch/arch:20210828-6fc00c0
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| maintenance/other |
2161 | 54b998bb27b573b1b622a7ce858c2f5e29391cd8 | Update Dockerfile | Update Dockerfile | #====================================================================================
FROM continuumio/miniconda3
#====================================================================================
RUN conda create -n env python=3.7
RUN echo "source activate env" > ~/.bashrc
ENV PATH /opt/conda/envs/env/bin:$PATH
#====================================================================================
LABEL maintainer="[email protected]"
LABEL description="This image aims to provide a clean docker base to run pyferret and ferretmagic jupyter ipython extension."
LABEL ref1="http://ferret.pmel.noaa.gov/Ferret/"
LABEL ref2="https://github.com/NOAA-PMEL/PyFerret"
#====================================================================================
ENV NB_USER agentk
ENV NB_UID 1000
ENV HOME /home/${NB_USER}
RUN adduser --disabled-password \
--gecos "Default user" \
--uid ${NB_UID} \
${NB_USER}
#====================================================================================
USER root
RUN conda create -n FERRET -c conda-forge pyferret ferret_datasets --yes
#RUN echo "source activate FERRET" > ~/.bashrc
RUN /bin/bash -c "source activate FERRET"
RUN conda install -c r rpy2
RUN pip install --no-cache-dir notebook==6.*
RUN pip install numpy pandas bokeh
RUN pip install randomcolor
RUN pip install ferretmagic
RUN pip install ipywidgets
RUN jupyter nbextension enable --py widgetsnbextension --sys-prefix
#====================================================================================
# fast installation
USER root
WORKDIR /opt
RUN git clone https://github.com/PBrockmann/fast
ENV FER_DATA=". ${FER_DATA} /opt/fast"
ENV FER_GO=". ${FER_GO} /opt/fast"
ENV FER_PALETTE=". /${FER_PALETTE} /opt/fast"
ENV PATH="${FER_DIR}/bin:/opt/fast:${PATH}"
#====================================================================================
# Make sure the contents of our repo are in ${HOME}
COPY . ${HOME}
USER root
RUN chown -R ${NB_UID} ${HOME}
USER ${NB_USER}
WORKDIR ${HOME}
| null | code refactoring |
251 | a944d37c8096a80471de77f116ad9dcc72770db6 | Bumped source to 20201221-9262366 | Bumped source to 20201221-9262366
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20201220-2813520
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20201221-9262366
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| maintenance/other |
386 | 58fbc98da512270bb6ae7eb956e0973aa60f35ab | Updated Atlassian JIRA Software master branch to latest version 8.19.0 | Updated Atlassian JIRA Software master branch to latest version 8.19.0
| FROM openjdk:8-alpine
# Configuration variables.
ENV JIRA_HOME /var/atlassian/jira
ENV JIRA_INSTALL /opt/atlassian/jira
ENV JIRA_VERSION 8.18.2
# Install Atlassian JIRA and helper tools and setup initial home
# directory structure.
RUN set -x \
&& apk add --no-cache curl xmlstarlet bash ttf-dejavu libc6-compat \
&& mkdir -p "${JIRA_HOME}" \
&& mkdir -p "${JIRA_HOME}/caches/indexes" \
&& chmod -R 700 "${JIRA_HOME}" \
&& chown -R daemon:daemon "${JIRA_HOME}" \
&& mkdir -p "${JIRA_INSTALL}/conf/Catalina" \
&& curl -Ls "https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-8.16.1.tar.gz" | tar -xz --directory "${JIRA_INSTALL}" --strip-components=1 --no-same-owner \
&& curl -Ls "https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.38.tar.gz" | tar -xz --directory "${JIRA_INSTALL}/lib" --strip-components=1 --no-same-owner "mysql-connector-java-5.1.38/mysql-connector-java-5.1.38-bin.jar" \
&& rm -f "${JIRA_INSTALL}/lib/postgresql-9.1-903.jdbc4-atlassian-hosted.jar" \
&& curl -Ls "https://jdbc.postgresql.org/download/postgresql-42.2.1.jar" -o "${JIRA_INSTALL}/lib/postgresql-42.2.1.jar" \
&& chmod -R 700 "${JIRA_INSTALL}/conf" \
&& chmod -R 700 "${JIRA_INSTALL}/logs" \
&& chmod -R 700 "${JIRA_INSTALL}/temp" \
&& chmod -R 700 "${JIRA_INSTALL}/work" \
&& chown -R daemon:daemon "${JIRA_INSTALL}/conf" \
&& chown -R daemon:daemon "${JIRA_INSTALL}/logs" \
&& chown -R daemon:daemon "${JIRA_INSTALL}/temp" \
&& chown -R daemon:daemon "${JIRA_INSTALL}/work" \
&& sed --in-place "s/java version/openjdk version/g" "${JIRA_INSTALL}/bin/check-java.sh" \
&& echo -e "\njira.home=$JIRA_HOME" >> "${JIRA_INSTALL}/atlassian-jira/WEB-INF/classes/jira-application.properties" \
&& touch -d "@0" "${JIRA_INSTALL}/conf/server.xml"
# Use the default unprivileged account. This could be considered bad practice
# on systems where multiple processes end up being executed by 'daemon' but
# here we only ever run one process anyway.
USER daemon:daemon
# Expose default HTTP connector port.
EXPOSE 8080
# Set volume mount points for installation and home directory. Changes to the
# home directory needs to be persisted as well as parts of the installation
# directory due to eg. logs.
VOLUME ["/var/atlassian/jira", "/opt/atlassian/jira/logs"]
# Set the default working directory as the installation directory.
WORKDIR /var/atlassian/jira
COPY "docker-entrypoint.sh" "/"
ENTRYPOINT ["/docker-entrypoint.sh"]
# Run Atlassian JIRA as a foreground process by default.
CMD ["/opt/atlassian/jira/bin/start-jira.sh", "-fg"]
| FROM openjdk:8-alpine
# Configuration variables.
ENV JIRA_HOME /var/atlassian/jira
ENV JIRA_INSTALL /opt/atlassian/jira
ENV JIRA_VERSION 8.19.0
# Install Atlassian JIRA and helper tools and setup initial home
# directory structure.
RUN set -x \
&& apk add --no-cache curl xmlstarlet bash ttf-dejavu libc6-compat \
&& mkdir -p "${JIRA_HOME}" \
&& mkdir -p "${JIRA_HOME}/caches/indexes" \
&& chmod -R 700 "${JIRA_HOME}" \
&& chown -R daemon:daemon "${JIRA_HOME}" \
&& mkdir -p "${JIRA_INSTALL}/conf/Catalina" \
&& curl -Ls "https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-8.16.1.tar.gz" | tar -xz --directory "${JIRA_INSTALL}" --strip-components=1 --no-same-owner \
&& curl -Ls "https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.38.tar.gz" | tar -xz --directory "${JIRA_INSTALL}/lib" --strip-components=1 --no-same-owner "mysql-connector-java-5.1.38/mysql-connector-java-5.1.38-bin.jar" \
&& rm -f "${JIRA_INSTALL}/lib/postgresql-9.1-903.jdbc4-atlassian-hosted.jar" \
&& curl -Ls "https://jdbc.postgresql.org/download/postgresql-42.2.1.jar" -o "${JIRA_INSTALL}/lib/postgresql-42.2.1.jar" \
&& chmod -R 700 "${JIRA_INSTALL}/conf" \
&& chmod -R 700 "${JIRA_INSTALL}/logs" \
&& chmod -R 700 "${JIRA_INSTALL}/temp" \
&& chmod -R 700 "${JIRA_INSTALL}/work" \
&& chown -R daemon:daemon "${JIRA_INSTALL}/conf" \
&& chown -R daemon:daemon "${JIRA_INSTALL}/logs" \
&& chown -R daemon:daemon "${JIRA_INSTALL}/temp" \
&& chown -R daemon:daemon "${JIRA_INSTALL}/work" \
&& sed --in-place "s/java version/openjdk version/g" "${JIRA_INSTALL}/bin/check-java.sh" \
&& echo -e "\njira.home=$JIRA_HOME" >> "${JIRA_INSTALL}/atlassian-jira/WEB-INF/classes/jira-application.properties" \
&& touch -d "@0" "${JIRA_INSTALL}/conf/server.xml"
# Use the default unprivileged account. This could be considered bad practice
# on systems where multiple processes end up being executed by 'daemon' but
# here we only ever run one process anyway.
USER daemon:daemon
# Expose default HTTP connector port.
EXPOSE 8080
# Set volume mount points for installation and home directory. Changes to the
# home directory needs to be persisted as well as parts of the installation
# directory due to eg. logs.
VOLUME ["/var/atlassian/jira", "/opt/atlassian/jira/logs"]
# Set the default working directory as the installation directory.
WORKDIR /var/atlassian/jira
COPY "docker-entrypoint.sh" "/"
ENTRYPOINT ["/docker-entrypoint.sh"]
# Run Atlassian JIRA as a foreground process by default.
CMD ["/opt/atlassian/jira/bin/start-jira.sh", "-fg"]
| code refactoring |
369 | 50ebf3fbf4eb10038b9b6e0d9521ce8e310d8843 | Bumped source to 20200919-ecd47cf | Bumped source to 20200919-ecd47cf
| FROM docker.pkg.github.com/dock0/arch/arch:20200919-49ac157
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| FROM docker.pkg.github.com/dock0/arch/arch:20200919-ecd47cf
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| maintenance/other |
304 | f2b21769f8ec4cbda3862f7cdecd16845b3c7d5b | build(deps): bump cloudposse/packages from 0.34.0 to 0.42.0 (#310) | build(deps): bump cloudposse/packages from 0.34.0 to 0.42.0 (#310)
Bumps cloudposse/packages from 0.34.0 to 0.42.0.
Signed-off-by: dependabot[bot] <[email protected]> | #
# Python Dependencies
#
FROM alpine:3.8 as python
RUN sed -i 's|http://dl-cdn.alpinelinux.org|https://alpine.global.ssl.fastly.net|g' /etc/apk/repositories
RUN apk add python python-dev libffi-dev gcc py-pip py-virtualenv linux-headers musl-dev openssl-dev make
COPY requirements.txt /requirements.txt
RUN pip install -r /requirements.txt --install-option="--prefix=/dist" --no-build-isolation
#
# Google Cloud SDK
#
FROM google/cloud-sdk:223.0.0-alpine as google-cloud-sdk
#
# Cloud Posse Package Distribution
#
FROM cloudposse/packages:0.34.0 as packages
WORKDIR /packages
#
# Install the select packages from the cloudposse package manager image
#
# Repo: <https://github.com/cloudposse/packages>
#
ARG PACKAGES="cfssl cfssljson"
ENV PACKAGES=${PACKAGES}
RUN make dist
#
# Geodesic base image
#
FROM alpine:3.8
ENV BANNER "geodesic"
# Where to store state
ENV CACHE_PATH=/localhost/.geodesic
ENV GEODESIC_PATH=/usr/local/include/toolbox
ENV MOTD_URL=http://geodesic.sh/motd
ENV HOME=/conf
ENV KOPS_CLUSTER_NAME=example.foo.bar
# Install all packages as root
USER root
# Install the cloudposse alpine repository
ADD https://apk.cloudposse.com/[email protected] /etc/apk/keys/
RUN echo "@cloudposse https://apk.cloudposse.com/3.8/vendor" >> /etc/apk/repositories
# Use TLS for alpine default repos
RUN sed -i 's|http://dl-cdn.alpinelinux.org|https://alpine.global.ssl.fastly.net|g' /etc/apk/repositories && \
echo "@testing https://alpine.global.ssl.fastly.net/alpine/edge/testing" >> /etc/apk/repositories && \
echo "@community https://alpine.global.ssl.fastly.net/alpine/edge/community" >> /etc/apk/repositories && \
apk update
# Install alpine package manifest
COPY packages.txt /etc/apk/
RUN apk add $(grep -v '^#' /etc/apk/packages.txt) && \
mkdir -p /etc/bash_completion.d/ /etc/profile.d/ /conf && \
touch /conf/.gitconfig
RUN echo "net.ipv6.conf.all.disable_ipv6=0" > /etc/sysctl.d/00-ipv6.conf
# Disable vim from reading a swapfile (incompatible with goofys)
RUN echo 'set noswapfile' >> /etc/vim/vimrc
WORKDIR /tmp
# Copy python dependencies
COPY --from=python /dist/ /usr/
# Copy installer over to make package upgrades easy
COPY --from=packages /packages/install/ /packages/install/
# Copy select binary packages
COPY --from=packages /dist/ /usr/local/bin/
#
# Install Google Cloud SDK
#
ENV CLOUDSDK_CONFIG=/localhost/.config/gcloud/
COPY --from=google-cloud-sdk /google-cloud-sdk/ /usr/local/google-cloud-sdk/
RUN ln -s /usr/local/google-cloud-sdk/completion.bash.inc /etc/bash_completion.d/gcloud.sh && \
ln -s /usr/local/google-cloud-sdk/bin/gcloud /usr/local/bin/ && \
ln -s /usr/local/google-cloud-sdk/bin/gsutil /usr/local/bin/ && \
ln -s /usr/local/google-cloud-sdk/bin/bq /usr/local/bin/ && \
gcloud config set core/disable_usage_reporting true --installation && \
gcloud config set component_manager/disable_update_check true --installation && \
gcloud config set metrics/environment github_docker_image --installation
#
# Install aws-vault to easily assume roles (not related to HashiCorp Vault)
#
ENV AWS_VAULT_BACKEND file
ENV AWS_VAULT_ASSUME_ROLE_TTL=1h
#ENV AWS_VAULT_FILE_PASSPHRASE=
#
# Install kubectl
#
ENV KUBERNETES_VERSION 1.10.11
ENV KUBECONFIG=${SECRETS_PATH}/kubernetes/kubeconfig
RUN kubectl completion bash > /etc/bash_completion.d/kubectl.sh
#
# Install kops
#
ENV KOPS_STATE_STORE s3://undefined
ENV KOPS_STATE_STORE_REGION us-east-1
ENV KOPS_FEATURE_FLAGS=+DrainAndValidateRollingUpdate
ENV KOPS_MANIFEST=/conf/kops/manifest.yaml
ENV KOPS_TEMPLATE=/templates/kops/default.yaml
# https://github.com/kubernetes/kops/blob/master/channels/stable
# https://github.com/kubernetes/kops/blob/master/docs/images.md
ENV KOPS_BASE_IMAGE=kope.io/k8s-1.10-debian-jessie-amd64-hvm-ebs-2018-08-17
ENV KOPS_BASTION_PUBLIC_NAME="bastion"
ENV KOPS_PRIVATE_SUBNETS="172.20.32.0/19,172.20.64.0/19,172.20.96.0/19,172.20.128.0/19"
ENV KOPS_UTILITY_SUBNETS="172.20.0.0/22,172.20.4.0/22,172.20.8.0/22,172.20.12.0/22"
ENV KOPS_AVAILABILITY_ZONES="us-west-2a,us-west-2b,us-west-2c"
ENV KUBECONFIG=/dev/shm/kubecfg
RUN /usr/bin/kops completion bash > /etc/bash_completion.d/kops.sh
# Instance sizes
ENV BASTION_MACHINE_TYPE "t2.medium"
ENV MASTER_MACHINE_TYPE "t2.medium"
ENV NODE_MACHINE_TYPE "t2.medium"
# Min/Max number of nodes (aka workers)
ENV NODE_MAX_SIZE 2
ENV NODE_MIN_SIZE 2
#
# Install helm
#
ENV HELM_HOME /var/lib/helm
ENV HELM_VALUES_PATH=${SECRETS_PATH}/helm/values
RUN helm completion bash > /etc/bash_completion.d/helm.sh \
&& mkdir -p ${HELM_HOME} \
&& helm init --client-only \
&& mkdir -p ${HELM_HOME}/plugins
#
# Install helm repos
#
RUN helm repo add cloudposse-incubator https://charts.cloudposse.com/incubator/ \
&& helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/ \
&& helm repo add coreos-stable https://s3-eu-west-1.amazonaws.com/coreos-charts/stable/ \
&& helm repo update
#
# Install helm plugins
#
ENV HELM_APPR_VERSION 0.7.0
ENV HELM_DIFF_VERSION 2.11.0+2
ENV HELM_EDIT_VERSION 0.2.0
ENV HELM_GITHUB_VERSION 0.2.0
ENV HELM_SECRETS_VERSION 1.2.9
ENV HELM_S3_VERSION 0.7.0
ENV HELM_PUSH_VERSION 0.7.1
RUN helm plugin install https://github.com/app-registry/appr-helm-plugin --version v${HELM_APPR_VERSION} \
&& helm plugin install https://github.com/databus23/helm-diff --version v${HELM_DIFF_VERSION} \
&& helm plugin install https://github.com/mstrzele/helm-edit --version v${HELM_EDIT_VERSION} \
&& helm plugin install https://github.com/futuresimple/helm-secrets --version ${HELM_SECRETS_VERSION} \
&& helm plugin install https://github.com/sagansystems/helm-github --version ${HELM_GITHUB_VERSION} \
&& helm plugin install https://github.com/hypnoglow/helm-s3 --version v${HELM_S3_VERSION} \
&& helm plugin install https://github.com/chartmuseum/helm-push --version v${HELM_PUSH_VERSION}
#
# Terraform defaults
#
ENV TF_PLUGIN_CACHE_DIR=/localhost/.terraform.d/plugins
#
# AWS
#
ENV AWS_DATA_PATH=/localhost/.aws/
ENV AWS_CONFIG_FILE=${AWS_DATA_PATH}/config
ENV AWS_SHARED_CREDENTIALS_FILE=${AWS_DATA_PATH}/credentials
#
# Shell
#
ENV HISTFILE=${CACHE_PATH}/history
ENV SHELL=/bin/bash
ENV LESS=-Xr
ENV SSH_AGENT_CONFIG=/var/tmp/.ssh-agent
# This is not a "multi-user" system, so we'll use `/etc` as the global configuration dir
# Read more: <https://wiki.archlinux.org/index.php/XDG_Base_Directory>
ENV XDG_CONFIG_HOME=/etc
COPY rootfs/ /
WORKDIR /conf
ENTRYPOINT ["/bin/bash"]
CMD ["-c", "init"]
| #
# Python Dependencies
#
FROM alpine:3.8 as python
RUN sed -i 's|http://dl-cdn.alpinelinux.org|https://alpine.global.ssl.fastly.net|g' /etc/apk/repositories
RUN apk add python python-dev libffi-dev gcc py-pip py-virtualenv linux-headers musl-dev openssl-dev make
COPY requirements.txt /requirements.txt
RUN pip install -r /requirements.txt --install-option="--prefix=/dist" --no-build-isolation
#
# Google Cloud SDK
#
FROM google/cloud-sdk:223.0.0-alpine as google-cloud-sdk
#
# Cloud Posse Package Distribution
#
FROM cloudposse/packages:0.42.0 as packages
WORKDIR /packages
#
# Install the select packages from the cloudposse package manager image
#
# Repo: <https://github.com/cloudposse/packages>
#
ARG PACKAGES="cfssl cfssljson"
ENV PACKAGES=${PACKAGES}
RUN make dist
#
# Geodesic base image
#
FROM alpine:3.8
ENV BANNER "geodesic"
# Where to store state
ENV CACHE_PATH=/localhost/.geodesic
ENV GEODESIC_PATH=/usr/local/include/toolbox
ENV MOTD_URL=http://geodesic.sh/motd
ENV HOME=/conf
ENV KOPS_CLUSTER_NAME=example.foo.bar
# Install all packages as root
USER root
# Install the cloudposse alpine repository
ADD https://apk.cloudposse.com/[email protected] /etc/apk/keys/
RUN echo "@cloudposse https://apk.cloudposse.com/3.8/vendor" >> /etc/apk/repositories
# Use TLS for alpine default repos
RUN sed -i 's|http://dl-cdn.alpinelinux.org|https://alpine.global.ssl.fastly.net|g' /etc/apk/repositories && \
echo "@testing https://alpine.global.ssl.fastly.net/alpine/edge/testing" >> /etc/apk/repositories && \
echo "@community https://alpine.global.ssl.fastly.net/alpine/edge/community" >> /etc/apk/repositories && \
apk update
# Install alpine package manifest
COPY packages.txt /etc/apk/
RUN apk add $(grep -v '^#' /etc/apk/packages.txt) && \
mkdir -p /etc/bash_completion.d/ /etc/profile.d/ /conf && \
touch /conf/.gitconfig
RUN echo "net.ipv6.conf.all.disable_ipv6=0" > /etc/sysctl.d/00-ipv6.conf
# Disable vim from reading a swapfile (incompatible with goofys)
RUN echo 'set noswapfile' >> /etc/vim/vimrc
WORKDIR /tmp
# Copy python dependencies
COPY --from=python /dist/ /usr/
# Copy installer over to make package upgrades easy
COPY --from=packages /packages/install/ /packages/install/
# Copy select binary packages
COPY --from=packages /dist/ /usr/local/bin/
#
# Install Google Cloud SDK
#
ENV CLOUDSDK_CONFIG=/localhost/.config/gcloud/
COPY --from=google-cloud-sdk /google-cloud-sdk/ /usr/local/google-cloud-sdk/
RUN ln -s /usr/local/google-cloud-sdk/completion.bash.inc /etc/bash_completion.d/gcloud.sh && \
ln -s /usr/local/google-cloud-sdk/bin/gcloud /usr/local/bin/ && \
ln -s /usr/local/google-cloud-sdk/bin/gsutil /usr/local/bin/ && \
ln -s /usr/local/google-cloud-sdk/bin/bq /usr/local/bin/ && \
gcloud config set core/disable_usage_reporting true --installation && \
gcloud config set component_manager/disable_update_check true --installation && \
gcloud config set metrics/environment github_docker_image --installation
#
# Install aws-vault to easily assume roles (not related to HashiCorp Vault)
#
ENV AWS_VAULT_BACKEND file
ENV AWS_VAULT_ASSUME_ROLE_TTL=1h
#ENV AWS_VAULT_FILE_PASSPHRASE=
#
# Install kubectl
#
ENV KUBERNETES_VERSION 1.10.11
ENV KUBECONFIG=${SECRETS_PATH}/kubernetes/kubeconfig
RUN kubectl completion bash > /etc/bash_completion.d/kubectl.sh
#
# Install kops
#
ENV KOPS_STATE_STORE s3://undefined
ENV KOPS_STATE_STORE_REGION us-east-1
ENV KOPS_FEATURE_FLAGS=+DrainAndValidateRollingUpdate
ENV KOPS_MANIFEST=/conf/kops/manifest.yaml
ENV KOPS_TEMPLATE=/templates/kops/default.yaml
# https://github.com/kubernetes/kops/blob/master/channels/stable
# https://github.com/kubernetes/kops/blob/master/docs/images.md
ENV KOPS_BASE_IMAGE=kope.io/k8s-1.10-debian-jessie-amd64-hvm-ebs-2018-08-17
ENV KOPS_BASTION_PUBLIC_NAME="bastion"
ENV KOPS_PRIVATE_SUBNETS="172.20.32.0/19,172.20.64.0/19,172.20.96.0/19,172.20.128.0/19"
ENV KOPS_UTILITY_SUBNETS="172.20.0.0/22,172.20.4.0/22,172.20.8.0/22,172.20.12.0/22"
ENV KOPS_AVAILABILITY_ZONES="us-west-2a,us-west-2b,us-west-2c"
ENV KUBECONFIG=/dev/shm/kubecfg
RUN /usr/bin/kops completion bash > /etc/bash_completion.d/kops.sh
# Instance sizes
ENV BASTION_MACHINE_TYPE "t2.medium"
ENV MASTER_MACHINE_TYPE "t2.medium"
ENV NODE_MACHINE_TYPE "t2.medium"
# Min/Max number of nodes (aka workers)
ENV NODE_MAX_SIZE 2
ENV NODE_MIN_SIZE 2
#
# Install helm
#
ENV HELM_HOME /var/lib/helm
ENV HELM_VALUES_PATH=${SECRETS_PATH}/helm/values
RUN helm completion bash > /etc/bash_completion.d/helm.sh \
&& mkdir -p ${HELM_HOME} \
&& helm init --client-only \
&& mkdir -p ${HELM_HOME}/plugins
#
# Install helm repos
#
RUN helm repo add cloudposse-incubator https://charts.cloudposse.com/incubator/ \
&& helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/ \
&& helm repo add coreos-stable https://s3-eu-west-1.amazonaws.com/coreos-charts/stable/ \
&& helm repo update
#
# Install helm plugins
#
ENV HELM_APPR_VERSION 0.7.0
ENV HELM_DIFF_VERSION 2.11.0+2
ENV HELM_EDIT_VERSION 0.2.0
ENV HELM_GITHUB_VERSION 0.2.0
ENV HELM_SECRETS_VERSION 1.2.9
ENV HELM_S3_VERSION 0.7.0
ENV HELM_PUSH_VERSION 0.7.1
RUN helm plugin install https://github.com/app-registry/appr-helm-plugin --version v${HELM_APPR_VERSION} \
&& helm plugin install https://github.com/databus23/helm-diff --version v${HELM_DIFF_VERSION} \
&& helm plugin install https://github.com/mstrzele/helm-edit --version v${HELM_EDIT_VERSION} \
&& helm plugin install https://github.com/futuresimple/helm-secrets --version ${HELM_SECRETS_VERSION} \
&& helm plugin install https://github.com/sagansystems/helm-github --version ${HELM_GITHUB_VERSION} \
&& helm plugin install https://github.com/hypnoglow/helm-s3 --version v${HELM_S3_VERSION} \
&& helm plugin install https://github.com/chartmuseum/helm-push --version v${HELM_PUSH_VERSION}
#
# Terraform defaults
#
ENV TF_PLUGIN_CACHE_DIR=/localhost/.terraform.d/plugins
#
# AWS
#
ENV AWS_DATA_PATH=/localhost/.aws/
ENV AWS_CONFIG_FILE=${AWS_DATA_PATH}/config
ENV AWS_SHARED_CREDENTIALS_FILE=${AWS_DATA_PATH}/credentials
#
# Shell
#
ENV HISTFILE=${CACHE_PATH}/history
ENV SHELL=/bin/bash
ENV LESS=-Xr
ENV SSH_AGENT_CONFIG=/var/tmp/.ssh-agent
# This is not a "multi-user" system, so we'll use `/etc` as the global configuration dir
# Read more: <https://wiki.archlinux.org/index.php/XDG_Base_Directory>
ENV XDG_CONFIG_HOME=/etc
COPY rootfs/ /
WORKDIR /conf
ENTRYPOINT ["/bin/bash"]
CMD ["-c", "init"]
| feature addition |
48 | 1fda44a841170335f0a5449e02c2ea450edbe4ab | Bumped source to 20200516-437b5e4 | Bumped source to 20200516-437b5e4
| FROM docker.pkg.github.com/dock0/arch/arch:20200516-6eef588
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| FROM docker.pkg.github.com/dock0/arch/arch:20200516-437b5e4
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| bug fix |
2150 | b0527c35830d1840fec97b9fdb60cd4e0373a6af | Add vim | Add vim
| FROM aosp-sync
MAINTAINER Leonardo YongUk Kim <[email protected]>
RUN echo "source build/envsetup.sh" >> /home/aosp/.bashrc
VOLUME ["/out"]
CMD /bin/bash
| null | maintenance/other |
108 | 855668bee6917ef202a7b2b6068f8893a886cb6d | fixup! Initial centos image | fixup! Initial centos image
| # Copyright (c) 2012-2017 Red Hat, Inc.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
# Red Hat, Inc.- initial API and implementation
FROM registry.centos.org/che-stacks/centos-stack-base
EXPOSE 4403 8080 8000 9876 22
LABEL che:server:8080:ref=tomcat8 che:server:8080:protocol=http che:server:8000:ref=tomcat8-debug che:server:8000:protocol=http che:server:9876:ref=codeserver che:server:9876:protocol=http
RUN sudo yum -y update && \
sudo yum -y install \
rh-maven35 \
rh-nodejs6 \
gcc-c++ \
gcc \
glibc-devel \
make \
golang \
sudo yum clean all && \
cat /opt/rh/rh-maven35/enable >> /home/user/.bashrc &&\
cat /opt/rh/rh-nodejs6/enable >> /home/user/.bashrc
USER user
ENV TOMCAT_HOME=/home/user/tomcat8 \
TERM=xterm
ENV MAVEN_OPTS=$JAVA_OPTS\
GOPATH=$HOME/go \
PATH=$GOPATH/bin:/usr/local/go/bin:$PATH
RUN mkdir $HOME/.m2 && \
mkdir /home/user/tomcat8 && \
wget -qO- "https://archive.apache.org/dist/tomcat/tomcat-8/v8.5.23/bin/apache-tomcat-8.5.23.tar.gz" | tar -zx --strip-components=1 -C /home/user/tomcat8 && \
rm -rf /home/user/tomcat8/webapps/* && \
echo "export MAVEN_OPTS=\$JAVA_OPTS" >> /home/user/.bashrc
ADD ./contrib/settings.xml $HOME/.m2/settings.xml
WORKDIR /projects/ | # Copyright (c) 2012-2017 Red Hat, Inc.
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Eclipse Public License v1.0
# which accompanies this distribution, and is available at
# http://www.eclipse.org/legal/epl-v10.html
#
# Contributors:
# Red Hat, Inc.- initial API and implementation
FROM registry.centos.org/che-stacks/centos-stack-base
EXPOSE 4403 8080 8000 9876 22
RUN sudo yum -y update && \
sudo yum -y install \
rh-maven35 \
plexus-classworlds \
rh-nodejs6 \
gcc-c++ \
gcc \
glibc-devel \
make \
golang \
sudo yum clean all && \
cat /opt/rh/rh-maven35/enable >> /home/user/.bashrc &&\
cat /opt/rh/rh-nodejs6/enable >> /home/user/.bashrc
USER user
ENV TOMCAT_HOME=/home/user/tomcat8 \
TERM=xterm \
M2_HOME=/opt/rh/rh-maven35/root/usr/share/maven
ENV MAVEN_OPTS=$JAVA_OPTS\
GOPATH=$HOME/go \
PATH=$GOPATH/bin:$M2_HOME/bin:/usr/local/go/bin:$PATH
RUN mkdir $HOME/.m2 && \
mkdir /home/user/tomcat8 && \
wget -qO- "https://archive.apache.org/dist/tomcat/tomcat-8/v8.5.23/bin/apache-tomcat-8.5.23.tar.gz" | tar -zx --strip-components=1 -C /home/user/tomcat8 && \
rm -rf /home/user/tomcat8/webapps/* && \
echo "export MAVEN_OPTS=\$JAVA_OPTS" >> /home/user/.bashrc
ADD ./contrib/settings.xml $HOME/.m2/settings.xml
WORKDIR /projects/ | bug fix |
2179 | 5386c85274b77c81d40fd173292a267b3fd44f6a | Bumped source to 20201029-e6feea5 | Bumped source to 20201029-e6feea5
| FROM docker.pkg.github.com/dock0/arch/arch:20201029-6c7e6fc
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| null | code refactoring |
235 | 26cc1410defca054c7206676260366b8105e38fe | Fix Dockerfile referencing the old .angular-cli.json | Fix Dockerfile referencing the old .angular-cli.json
| # Node 8+ should work
FROM node:8
WORKDIR /usr/src/app
# Get our dependencies ready
COPY package.json yarn.lock .snyk ./
RUN yarn install
# Add all the necessary build-related files
COPY .angular-cli.json .babelrc Gulpfile.ts tsconfig.json ./
# Add all sources
COPY common ./common
COPY client ./client
COPY server ./server
# Build in dev mode
RUN yarn build
# Helium binds to port 3000 by default
EXPOSE 3000
# All compiled files are located in dist/
CMD node dist
| # Node 8+ should work
FROM node:8
WORKDIR /usr/src/app
# Get our dependencies ready
COPY package.json yarn.lock .snyk ./
RUN yarn install
# Add all the necessary build-related files
COPY angular.json .babelrc Gulpfile.ts tsconfig.json ./
# Add all sources
COPY common ./common
COPY client ./client
COPY server ./server
# Build in dev mode
RUN yarn build
# Helium binds to port 3000 by default
EXPOSE 3000
# All compiled files are located in dist/
CMD node dist
| bug fix |
238 | bb90be2c6fcefaa161fe4c826bcfc0480ce49e69 | Updated Atlassian JIRA Service Desk master branch to latest version 3.6.2 | Updated Atlassian JIRA Service Desk master branch to latest version 3.6.2
| FROM java:8
# Configuration variables.
ENV JIRA_HOME /var/atlassian/jira
ENV JIRA_INSTALL /opt/atlassian/jira
ENV APP_VERSION 3.6.1
# Install Atlassian JIRA and helper tools and setup initial home
# directory structure.
RUN set -x \
&& apt-get update --quiet \
&& apt-get install --quiet --yes --no-install-recommends xmlstarlet \
&& apt-get install --quiet --yes --no-install-recommends -t jessie-backports libtcnative-1 \
&& apt-get clean \
&& mkdir -p "${JIRA_HOME}" \
&& mkdir -p "${JIRA_HOME}/caches/indexes" \
&& chmod -R 700 "${JIRA_HOME}" \
&& chown -R daemon:daemon "${JIRA_HOME}" \
&& mkdir -p "${JIRA_INSTALL}/conf/Catalina" \
&& curl -Ls "https://www.atlassian.com/software/jira/downloads/binary/atlassian-servicedesk-3.6.1.tar.gz" | tar -xz --directory "${JIRA_INSTALL}" --strip-components=1 --no-same-owner \
&& curl -Ls "https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.38.tar.gz" | tar -xz --directory "${JIRA_INSTALL}/lib" --strip-components=1 --no-same-owner "mysql-connector-java-5.1.38/mysql-connector-java-5.1.38-bin.jar" \
&& rm -f "${JIRA_INSTALL}/lib/postgresql-9.1-903.jdbc4-atlassian-hosted.jar" \
&& curl -Ls "https://jdbc.postgresql.org/download/postgresql-9.4.1212.jar" -o "${JIRA_INSTALL}/lib/postgresql-9.4.1212.jar" \
&& chmod -R 700 "${JIRA_INSTALL}/conf" \
&& chmod -R 700 "${JIRA_INSTALL}/logs" \
&& chmod -R 700 "${JIRA_INSTALL}/temp" \
&& chmod -R 700 "${JIRA_INSTALL}/work" \
&& chown -R daemon:daemon "${JIRA_INSTALL}/conf" \
&& chown -R daemon:daemon "${JIRA_INSTALL}/logs" \
&& chown -R daemon:daemon "${JIRA_INSTALL}/temp" \
&& chown -R daemon:daemon "${JIRA_INSTALL}/work" \
&& sed --in-place "s/java version/openjdk version/g" "${JIRA_INSTALL}/bin/check-java.sh" \
&& echo -e "\njira.home=$JIRA_HOME" >> "${JIRA_INSTALL}/atlassian-jira/WEB-INF/classes/jira-application.properties" \
&& touch -d "@0" "${JIRA_INSTALL}/conf/server.xml"
# Use the default unprivileged account. This could be considered bad practice
# on systems where multiple processes end up being executed by 'daemon' but
# here we only ever run one process anyway.
USER daemon:daemon
# Expose default HTTP connector port.
EXPOSE 8080
# Set volume mount points for installation and home directory. Changes to the
# home directory needs to be persisted as well as parts of the installation
# directory due to eg. logs.
VOLUME ["/var/atlassian/jira", "/opt/atlassian/jira/logs"]
# Set the default working directory as the installation directory.
WORKDIR /var/atlassian/jira
COPY "docker-entrypoint.sh" "/"
ENTRYPOINT ["/docker-entrypoint.sh"]
# Run Atlassian JIRA as a foreground process by default.
CMD ["/opt/atlassian/jira/bin/catalina.sh", "run"]
| FROM java:8
# Configuration variables.
ENV JIRA_HOME /var/atlassian/jira
ENV JIRA_INSTALL /opt/atlassian/jira
ENV APP_VERSION 3.6.2
# Install Atlassian JIRA and helper tools and setup initial home
# directory structure.
RUN set -x \
&& apt-get update --quiet \
&& apt-get install --quiet --yes --no-install-recommends xmlstarlet \
&& apt-get install --quiet --yes --no-install-recommends -t jessie-backports libtcnative-1 \
&& apt-get clean \
&& mkdir -p "${JIRA_HOME}" \
&& mkdir -p "${JIRA_HOME}/caches/indexes" \
&& chmod -R 700 "${JIRA_HOME}" \
&& chown -R daemon:daemon "${JIRA_HOME}" \
&& mkdir -p "${JIRA_INSTALL}/conf/Catalina" \
&& curl -Ls "https://www.atlassian.com/software/jira/downloads/binary/atlassian-servicedesk-3.6.2.tar.gz" | tar -xz --directory "${JIRA_INSTALL}" --strip-components=1 --no-same-owner \
&& curl -Ls "https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.38.tar.gz" | tar -xz --directory "${JIRA_INSTALL}/lib" --strip-components=1 --no-same-owner "mysql-connector-java-5.1.38/mysql-connector-java-5.1.38-bin.jar" \
&& rm -f "${JIRA_INSTALL}/lib/postgresql-9.1-903.jdbc4-atlassian-hosted.jar" \
&& curl -Ls "https://jdbc.postgresql.org/download/postgresql-9.4.1212.jar" -o "${JIRA_INSTALL}/lib/postgresql-9.4.1212.jar" \
&& chmod -R 700 "${JIRA_INSTALL}/conf" \
&& chmod -R 700 "${JIRA_INSTALL}/logs" \
&& chmod -R 700 "${JIRA_INSTALL}/temp" \
&& chmod -R 700 "${JIRA_INSTALL}/work" \
&& chown -R daemon:daemon "${JIRA_INSTALL}/conf" \
&& chown -R daemon:daemon "${JIRA_INSTALL}/logs" \
&& chown -R daemon:daemon "${JIRA_INSTALL}/temp" \
&& chown -R daemon:daemon "${JIRA_INSTALL}/work" \
&& sed --in-place "s/java version/openjdk version/g" "${JIRA_INSTALL}/bin/check-java.sh" \
&& echo -e "\njira.home=$JIRA_HOME" >> "${JIRA_INSTALL}/atlassian-jira/WEB-INF/classes/jira-application.properties" \
&& touch -d "@0" "${JIRA_INSTALL}/conf/server.xml"
# Use the default unprivileged account. This could be considered bad practice
# on systems where multiple processes end up being executed by 'daemon' but
# here we only ever run one process anyway.
USER daemon:daemon
# Expose default HTTP connector port.
EXPOSE 8080
# Set volume mount points for installation and home directory. Changes to the
# home directory needs to be persisted as well as parts of the installation
# directory due to eg. logs.
VOLUME ["/var/atlassian/jira", "/opt/atlassian/jira/logs"]
# Set the default working directory as the installation directory.
WORKDIR /var/atlassian/jira
COPY "docker-entrypoint.sh" "/"
ENTRYPOINT ["/docker-entrypoint.sh"]
# Run Atlassian JIRA as a foreground process by default.
CMD ["/opt/atlassian/jira/bin/catalina.sh", "run"]
| maintenance/other |
389 | 7c1bac0b66944a9b6f973805507e63f59260572e | fix build process | fix build process
| # build application phase
FROM golang:1.8.3 as builder
WORKDIR /go/src/github.com/vistrcm/statcollector/
COPY ./ .
# handle dependencies
RUN go get -u github.com/kardianos/govendor
RUN govendor sync
# build
RUN go build -a -o statcollector .
# build image phase
FROM alpine:latest as runner
#RUN apk --no-cache add ca-certificates
WORKDIR /root/
COPY --from=builder /go/src/github.com/vistrcm/statcollector/statcollector .
CMD ["./statcollector"]
| # build application phase
FROM golang:1.8.3 as builder
WORKDIR /go/src/github.com/vistrcm/statcollector/
COPY ./ .
# handle dependencies
RUN go get -u github.com/kardianos/govendor
RUN govendor sync
# build with specific params to avoid issues of running in alpine
RUN GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -a -o statcollector .
# build image phase
FROM alpine:latest
WORKDIR /root/
COPY --from=builder /go/src/github.com/vistrcm/statcollector/statcollector /usr/local/bin/
ENTRYPOINT statcollector
| feature addition |
178 | e5224b973cff9a1143e8c1683241097beb5e4877 | Bumped source to 20200624-bab5755 | Bumped source to 20200624-bab5755
| FROM docker.pkg.github.com/dock0/arch/arch:20200624-0bcb67f
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| FROM docker.pkg.github.com/dock0/arch/arch:20200624-bab5755
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm \
strace tcpdump openbsd-netcat socat htop \
nmap dnsutils net-tools iputils openssh \
screen tmux man-db lsof psmisc git tree \
vim-minimal inetutils
| code refactoring |
2065 | 46d25fb87cb3f2dbd6a25befd1d40adbbe79253d | Adding softlink to /tmp filesystem. | Adding softlink to /tmp filesystem.
This should allow writing to /app/tmp directory and fix the current permission denied errors
in EKS.
This is part of non-root container work:
https://trello.com/c/Jef1t4xU/903-fix-app-permission-errors-due-to-nonroot
| # TODO: make this default to govuk-ruby once it's being pushed somewhere public
# (unless we decide to use Bitnami instead)
ARG base_image=ruby:2.7.6
FROM $base_image AS builder
# This image is only intended to be able to run this app in a production RAILS_ENV
ENV RAILS_ENV=production
# TODO: have a separate build image which already contains the build-only deps.
RUN apt-get update -qy && \
apt-get upgrade -y && \
apt-get clean
RUN mkdir /app
WORKDIR /app
COPY Gemfile Gemfile.lock .ruby-version /app/
RUN bundle config set deployment 'true' && \
bundle config set without 'development test' && \
bundle install --jobs 4 --retry=2
COPY . /app
FROM $base_image
ENV GOVUK_PROMETHEUS_EXPORTER=true RAILS_ENV=production GOVUK_APP_NAME=asset-manager GOVUK_ASSET_ROOT=http://assets-origin.dev.gov.uk
# TODO: apt-get upgrade in the base image
RUN apt-get update -qy && \
apt-get upgrade -y && \
# TODO: remove Clamav from container and run it as a seperate container
apt-get install -y clamav
RUN ln -sf /usr/bin/clamscan /usr/bin/govuk_clamscan && \
freshclam && \
sed -i '/UpdateLogFile/d' /etc/clamav/freshclam.conf
WORKDIR /app
COPY --from=builder /usr/local/bundle/ /usr/local/bundle/
COPY --from=builder /app ./
CMD bundle exec puma
| null | bug fix |
2269 | df06ba088c5fe7800d6a63dd7ca94fb497cc6c3f | upgrade the fluent-bit to latest version (#3793) | upgrade the fluent-bit to latest version (#3793)
| FROM golang:1.16.2 as build
COPY . /src/loki
WORKDIR /src/loki
RUN make clean && make BUILD_IN_CONTAINER=false fluent-bit-plugin
FROM fluent/fluent-bit:1.4
COPY --from=build /src/loki/clients/cmd/fluent-bit/out_grafana_loki.so /fluent-bit/bin
COPY clients/cmd/fluent-bit/fluent-bit.conf /fluent-bit/etc/fluent-bit.conf
EXPOSE 2020
CMD ["/fluent-bit/bin/fluent-bit", "-e","/fluent-bit/bin/out_grafana_loki.so", "-c", "/fluent-bit/etc/fluent-bit.conf"]
| null | maintenance/other |
2216 | dfb69d85ae4c7925f80a3cc4845fe71adf77bcb6 | maybe fix 🏔 | maybe fix 🏔
| FROM node:alpine
ENV DOMAIN=example.com
RUN apk add --no-cache git make g++ python \
&& mkdir /opt && cd /opt \
&& git clone https://github.com/samcm/plextogether \
&& cd plextogether \
&& npm install \
&& npm run build \
&& cd server \
&& npm install \
&& apk del git make g++ python \
&& rm -rf /tmp/* /root/*
COPY run.sh /opt/run.sh
RUN chmod a+x /opt/run.sh
EXPOSE 8088 8089
CMD /opt/run.sh
| null | maintenance/other |
Subsets and Splits