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 |
---|---|---|---|---|---|---|
161 | 67ee728371a402091946763782d525ee200ed9a0 | Revert compatibility issue fix | Revert compatibility issue fix
| # Dockerfile for EventStore
# http://geteventstore.com/
FROM debian:jessie
MAINTAINER Wadim Kruse <[email protected]>
# Install curl
RUN apt-get update && apt-get install -y curl
# Create user
RUN addgroup eventstore \
&& adduser --ingroup eventstore --disabled-password --gecos "Database" eventstore \
&& usermod -L eventstore
# Set environment variables
USER eventstore
ENV ES_VERSION 3.0.1
ENV ES_HOME /opt/EventStore-OSS-Linux-v$ES_VERSION
ENV EVENTSTORE_DB /data/db
ENV EVENTSTORE_LOG /data/logs
# Download and extract EventStore
USER root
RUN curl http://download.geteventstore.com/binaries/EventStore-OSS-Linux-v$ES_VERSION.tar.gz | tar xz --directory /opt \
&& chown -R eventstore:eventstore $ES_HOME
# Add volumes
RUN mkdir -p $EVENTSTORE_DB && mkdir -p $EVENTSTORE_LOG \
&& chown -R eventstore:eventstore $EVENTSTORE_DB $EVENTSTORE_LOG
VOLUME /data/db
VOLUME /data/logs
# Change working directory
WORKDIR $ES_HOME
# Fix "exec format error"
RUN sed -i '1 c #!/bin/bash' run-node.sh
# Run
ENTRYPOINT ["./run-node.sh"]
CMD ["--help"]
# Expose the HTTP and TCP ports
EXPOSE 2113 1113
# Clean up.
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | # Dockerfile for EventStore
# http://geteventstore.com/
FROM debian:jessie
MAINTAINER Wadim Kruse <[email protected]>
# Install curl
RUN apt-get update && apt-get install -y curl
# Create user
RUN addgroup eventstore \
&& adduser --ingroup eventstore --disabled-password --gecos "Database" eventstore \
&& usermod -L eventstore
# Set environment variables
USER eventstore
ENV ES_VERSION 3.0.1
ENV ES_HOME /opt/EventStore-OSS-Linux-v$ES_VERSION
ENV EVENTSTORE_DB /data/db
ENV EVENTSTORE_LOG /data/logs
# Download and extract EventStore
USER root
RUN curl http://download.geteventstore.com/binaries/EventStore-OSS-Linux-v$ES_VERSION.tar.gz | tar xz --directory /opt \
&& chown -R eventstore:eventstore $ES_HOME
# Add volumes
RUN mkdir -p $EVENTSTORE_DB && mkdir -p $EVENTSTORE_LOG \
&& chown -R eventstore:eventstore $EVENTSTORE_DB $EVENTSTORE_LOG
VOLUME $EVENTSTORE_DB
VOLUME $EVENTSTORE_LOG
# Change working directory
WORKDIR $ES_HOME
# Fix "exec format error"
RUN sed -i '1 c #!/bin/bash' run-node.sh
# Run
ENTRYPOINT ["./run-node.sh"]
CMD ["--help"]
# Expose the HTTP and TCP ports
EXPOSE 2113 1113
# Clean up.
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* | maintenance/other |
164 | 1882f56f349a0352ad97ee33fbedf6288b0a8e81 | Update dockerfile | Update dockerfile
| FROM ubuntu:14.04
# Time zone
ENV DEBIAN_FRONTEND noninteractive
RUN echo "Europe/Oslo" > /etc/timezone
RUN dpkg-reconfigure tzdata
# Install ca-certificates
RUN apt-get -y update
RUN apt-get -y install ca-certificates
# Add app
RUN mkdir /app
ADD bin/nrk-spotify /app/nrk-spotify
RUN chmod 0755 /app/nrk-spotify
ENTRYPOINT ["/app/nrk-spotify"]
| FROM ubuntu:14.04
# Time zone
ENV DEBIAN_FRONTEND noninteractive
RUN echo "Europe/Oslo" > /etc/timezone
RUN dpkg-reconfigure tzdata
# Install ca-certificates
RUN apt-get -y update
RUN apt-get -y install ca-certificates
# Add app
RUN mkdir /app
ADD nrk-spotify /app/nrk-spotify
RUN chmod 0755 /app/nrk-spotify
ENTRYPOINT ["/app/nrk-spotify"]
| bug fix |
214 | 7bc11468cd9dbcbc17a504269cd437cd450d278d | bump dockerfile to 1.0 | bump dockerfile to 1.0
| FROM ubuntu:12.04
RUN echo deb http://packages.flapjack.io/deb precise main >> /etc/apt/sources.list
RUN apt-get update
RUN apt-get install -y --force-yes flapjack
CMD /etc/init.d/redis-flapjack start && /opt/flapjack/bin/flapjack start --no-daemonize
| FROM ubuntu:12.04
RUN echo deb http://packages.flapjack.io/deb/1.0 precise main >> /etc/apt/sources.list
RUN apt-get update
RUN apt-get install -y --force-yes flapjack
#CMD /etc/init.d/redis-flapjack start && /opt/flapjack/bin/flapjack start --no-daemonize
| code refactoring |
2175 | aaef0d8307db8205c88dce6a9dfa7ffd2bda7d8d | fix version | fix version
| ARG BASEIMAGES=3.15
FROM alpine:${BASEIMAGES} AS builder
LABEL maintainer="chaiyd <[email protected]>"
ARG YEARNING_VER=2.3.5
ARG YEARNING_URL=https://github.com/cookieY/Yearning/releases/download/${YEARNING_VER}/Yearning-${YEARNING_VER}-linux-amd64.zip
RUN wget -cO yearning.zip $YEARNING_URL && \
unzip yearning.zip && \
mv Yearning/* /opt
FROM alpine:${BASEIMAGES}
LABEL maintainer="chaiyd <[email protected]>"
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories \
&& apk update \
&& apk add --no-cache ca-certificates bash tree tzdata libc6-compat dumb-init \
&& cp -rf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
&& echo "Asia/Shanghai" > /etc/timezone
COPY --from=builder /opt/Yearning /opt/Yearning
#COPY --from=builder /opt/Yearning-go/dist /opt/Yearning-go/dist
COPY --from=builder /opt/conf.toml /opt/conf.toml
WORKDIR /opt/
EXPOSE 8000
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
CMD ["/opt/Yearning", "run"]
| null | maintenance/other |
2229 | 1a6d08e527559342e60f3badf0681b7a6d08f47d | Update to 8.4.3 | Update to 8.4.3
| # Kibana 8.4.2
# This image re-bundles the Docker image from the upstream provider, Elastic.
FROM docker.elastic.co/kibana/kibana:8.4.2@sha256:7047f011c3806314f7151b3628d117edf909a2208a8fc65cc77c3d3bf5f48874
# Supported Bashbrew Architectures: amd64 arm64v8
# The upstream image was built by:
# https://github.com/elastic/dockerfiles/tree/v8.4.2/kibana
# The build can be reproduced locally via:
# docker build 'https://github.com/elastic/dockerfiles.git#v8.4.2:kibana'
# For a full list of supported images and tags visit https://www.docker.elastic.co
# For documentation visit https://www.elastic.co/guide/en/kibana/current/docker.html
# See https://github.com/docker-library/official-images/pull/4917 for more details.
| null | code refactoring |
2167 | 050f0205cfc1a50ffa603663ea2518de18933aba | Bumped source to 20201120-d60fc5f | Bumped source to 20201120-d60fc5f
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20201120-dfaed75
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| null | code refactoring |
61 | 66618494e5d528fead7d4194af9ab0e50d315a9e | Bump python version to 3.8 | Bump python version to 3.8
Everything else should be the same, but this version of python should
support the newer numpy some dependencies need
| FROM python:3.7-buster
ENV RNA /rna
WORKDIR $RNA
RUN apt-get update
RUN apt-get upgrade -y
# Install all required packages
RUN apt-get install -y \
bedtools \
ca-certificates \
curl \
default-mysql-client \
devscripts \
freetds-dev \
gawk \
gcc \
git \
gzip \
hmmer \
jq \
lftp \
libsqlite3-dev \
libssl1.1 \
libxml2-utils \
libzip-dev \
moreutils \
mysql-common \
openssl \
pandoc \
patch \
pgloader \
postgresql-11 \
postgresql-client-11 \
procps \
python3 \
python3-dev \
python3-pip \
rsync \
sbcl \
tabix \
tar \
time \
unzip \
wget
# Install Infernal
RUN \
cd $RNA/ && \
curl -OL http://eddylab.org/infernal/infernal-1.1.2.tar.gz && \
tar -xvzf infernal-1.1.2.tar.gz && \
rm infernal-1.1.2.tar.gz && \
cd infernal-1.1.2 && \
./configure --prefix=$RNA/infernal-1.1.2 && \
make && \
make install && \
cd easel && \
make install
# Install blat
RUN \
wget https://users.soe.ucsc.edu/~kent/src/blatSrc35.zip && \
unzip blatSrc35.zip && \
rm blatSrc35.zip && \
cd blatSrc && \
mkdir bin && \
make MACHTYPE=x86_64 BINDIR=$PWD/bin
# Install seqkit
RUN \
mkdir seqkit && \
cd seqkit && \
wget https://github.com/shenwei356/seqkit/releases/download/v0.10.0/seqkit_linux_amd64.tar.gz && \
tar xvf seqkit_linux_amd64.tar.gz && \
rm seqkit_linux_amd64.tar.gz
# Install ribovore
RUN git clone https://github.com/nawrockie/epn-ofile.git && cd epn-ofile && git fetch && git fetch --tags && git checkout ribovore-0.40
RUN git clone https://github.com/nawrockie/epn-options.git && cd epn-options && git fetch && git fetch --tags && git checkout ribovore-0.40
RUN git clone https://github.com/nawrockie/epn-test.git && cd epn-test && git fetch && git fetch --tags && git checkout ribovore-0.40
RUN git clone https://github.com/nawrockie/ribovore.git && cd ribovore && git fetch && git fetch --tags && git checkout ribovore-0.40
# Install useful pip version
RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && python get-pip.py
# Install python requirements
ENV RNACENTRAL_IMPORT_PIPELINE "$RNA/rnacentral-import-pipeline"
ADD requirements.txt $RNACENTRAL_IMPORT_PIPELINE/requirements.txt
RUN pip3 install --upgrade pip
RUN pip3 install -r $RNACENTRAL_IMPORT_PIPELINE/requirements.txt
RUN python3 -m textblob.download_corpora
WORKDIR /
COPY openssl/openssl.cnf /etc/ssl/
WORKDIR $RNA
# Setup environmental variables
ENV PERL5LIB="/usr/bin/env:$PERL5LIB"
ENV RIBOINFERNALDIR="$RNA/infernal-1.1.2/bin"
ENV RIBODIR="$RNA/ribovore"
ENV RIBOEASELDIR="$RNA/infernal-1.1.2/bin"
ENV EPNOPTDIR="$RNA/epn-options"
ENV EPNOFILEDIR="$RNA/epn-ofile"
ENV EPNTESTDIR="$RNA/epn-test"
ENV RIBOTIMEDIR="/usr/bin"
ENV BIOEASELDIR="$RNA/Bio-Easel/blib/lib:$RNA/Bio-Easel/blib/arch:$RNA/Bio-Easel:$RNA/Bio-Easel/lib"
ENV PERL5LIB="$BIOEASELDIR:$RIBODIR:$EPNOPTDIR:$EPNOFILEDIR:$EPNTESTDIR:$PERL5LIB"
ENV PATH="$RNA/infernal-1.1.2/bin:$PATH"
ENV PATH="$RNA/blatSrc/bin:$PATH"
ENV PATH="$RNA/seqkit:$PATH"
ENV PATH="$RNACENTRAL_IMPORT_PIPELINE:$PATH"
ENTRYPOINT ["/bin/bash"]
| FROM python:3.8-buster
ENV RNA /rna
WORKDIR $RNA
RUN apt-get update
RUN apt-get upgrade -y
# Install all required packages
RUN apt-get install -y \
bedtools \
ca-certificates \
curl \
default-mysql-client \
devscripts \
freetds-dev \
gawk \
gcc \
git \
gzip \
hmmer \
jq \
lftp \
libsqlite3-dev \
libssl1.1 \
libxml2-utils \
libzip-dev \
moreutils \
mysql-common \
openssl \
pandoc \
patch \
pgloader \
postgresql-11 \
postgresql-client-11 \
procps \
python3 \
python3-dev \
python3-pip \
rsync \
sbcl \
tabix \
tar \
time \
unzip \
wget
# Install Infernal
RUN \
cd $RNA/ && \
curl -OL http://eddylab.org/infernal/infernal-1.1.2.tar.gz && \
tar -xvzf infernal-1.1.2.tar.gz && \
rm infernal-1.1.2.tar.gz && \
cd infernal-1.1.2 && \
./configure --prefix=$RNA/infernal-1.1.2 && \
make && \
make install && \
cd easel && \
make install
# Install blat
RUN \
wget https://users.soe.ucsc.edu/~kent/src/blatSrc35.zip && \
unzip blatSrc35.zip && \
rm blatSrc35.zip && \
cd blatSrc && \
mkdir bin && \
make MACHTYPE=x86_64 BINDIR=$PWD/bin
# Install seqkit
RUN \
mkdir seqkit && \
cd seqkit && \
wget https://github.com/shenwei356/seqkit/releases/download/v0.10.0/seqkit_linux_amd64.tar.gz && \
tar xvf seqkit_linux_amd64.tar.gz && \
rm seqkit_linux_amd64.tar.gz
# Install ribovore
RUN git clone https://github.com/nawrockie/epn-ofile.git && cd epn-ofile && git fetch && git fetch --tags && git checkout ribovore-0.40
RUN git clone https://github.com/nawrockie/epn-options.git && cd epn-options && git fetch && git fetch --tags && git checkout ribovore-0.40
RUN git clone https://github.com/nawrockie/epn-test.git && cd epn-test && git fetch && git fetch --tags && git checkout ribovore-0.40
RUN git clone https://github.com/nawrockie/ribovore.git && cd ribovore && git fetch && git fetch --tags && git checkout ribovore-0.40
# Install useful pip version
RUN curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py && python get-pip.py
# Install python requirements
ENV RNACENTRAL_IMPORT_PIPELINE "$RNA/rnacentral-import-pipeline"
ADD requirements.txt $RNACENTRAL_IMPORT_PIPELINE/requirements.txt
RUN pip3 install --upgrade pip
RUN pip3 install -r $RNACENTRAL_IMPORT_PIPELINE/requirements.txt
RUN python3 -m textblob.download_corpora
WORKDIR /
COPY openssl/openssl.cnf /etc/ssl/
WORKDIR $RNA
# Setup environmental variables
ENV PERL5LIB="/usr/bin/env:$PERL5LIB"
ENV RIBOINFERNALDIR="$RNA/infernal-1.1.2/bin"
ENV RIBODIR="$RNA/ribovore"
ENV RIBOEASELDIR="$RNA/infernal-1.1.2/bin"
ENV EPNOPTDIR="$RNA/epn-options"
ENV EPNOFILEDIR="$RNA/epn-ofile"
ENV EPNTESTDIR="$RNA/epn-test"
ENV RIBOTIMEDIR="/usr/bin"
ENV BIOEASELDIR="$RNA/Bio-Easel/blib/lib:$RNA/Bio-Easel/blib/arch:$RNA/Bio-Easel:$RNA/Bio-Easel/lib"
ENV PERL5LIB="$BIOEASELDIR:$RIBODIR:$EPNOPTDIR:$EPNOFILEDIR:$EPNTESTDIR:$PERL5LIB"
ENV PATH="$RNA/infernal-1.1.2/bin:$PATH"
ENV PATH="$RNA/blatSrc/bin:$PATH"
ENV PATH="$RNA/seqkit:$PATH"
ENV PATH="$RNACENTRAL_IMPORT_PIPELINE:$PATH"
ENTRYPOINT ["/bin/bash"]
| code refactoring |
2260 | a87d48590185aa81acc5732a6133f37aeef34aae | Updated Dockerfile to cache node_modules | Updated Dockerfile to cache node_modules
| FROM node:8.5.0
# Create app directory
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
# Bundle app source
COPY . /usr/src/app
RUN yarn install
RUN yarn build
ENV PORT=80
EXPOSE 5000
CMD [ "yarn", "start" ]
| null | bug fix |
2138 | 687e9f7367510c03d97ecac5524cddc3af37bb93 | update command on Dockerfile | update command on Dockerfile | FROM scratch
EXPOSE 80
COPY rel/kanban_x86_64_linux /kanban
CMD ["/kanban"]
| null | bug fix |
412 | 44c2d0dbf3781b6398b78c180a834deb7d96e092 | fix Dockerfile | fix Dockerfile
| FROM ubuntu:12.04
MAINTAINER Anton Romanovich <[email protected]>
RUN echo "deb http://archive.ubuntu.com/ubuntu precise universe" > /etc/apt/sources.list.d/universe.list
RUN echo "deb http://get.docker.io/ubuntu docker main" > /etc/apt/sources.list.d/docker.list
RUN apt-get install -y curl
RUN curl -s https://get.docker.io/gpg | apt-key add -
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 6E63A3B44CF61F28A8A477DE5563540C431533D8 # syslog
RUN echo "deb http://ppa.launchpad.net/tmortensen/rsyslogv7/ubuntu precise main" >> /etc/apt/sources.list
RUN apt-get update -qq
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python-apt ca-certificates \
python-pip python-dev libev4 libev-dev libssh-dev libpcre3-dev rsyslog \
cron mysql-server redis-server git lxc-docker-0.10.0
RUN pip install supervisor
RUN useradd -m -d /home/kozmic -G docker -s /bin/bash kozmic
RUN git clone https://github.com/aromanovich/kozmic-ci.git /src/
RUN pip install -r /src/requirements/kozmic.txt
RUN pip install -r /src/requirements/tailer.txt
ADD ./files/rsyslog.conf /etc/rsyslog.d/50-default.conf
ADD ./files/rsyslog-logrotate /etc/logrotate.d/rsyslog
ADD ./files/supervisor.conf /etc/supervisor.conf
ADD ./files/kozmic-uwsgi.ini /etc/kozmic-uwsgi.ini
ADD ./files/tailer-uwsgi.ini /etc/tailer-uwsgi.ini
ADD ./files/wrapped-docker /bin/wrapped-docker
ADD ./files/crontab /etc/crontab
ADD ./files/config.py-docker /config.py-docker
ADD ./files/run.sh /run.sh
RUN chmod +x /bin/wrapped-docker /bin/docker /run.sh && \
chown root /etc/crontab && \
chmod 644 /etc/crontab
VOLUME /var/lib/docker
VOLUME /var/lib/mysql
ENTRYPOINT ["/run.sh"]
| FROM ubuntu:12.04
MAINTAINER Anton Romanovich <[email protected]>
RUN echo "deb http://archive.ubuntu.com/ubuntu precise universe" > /etc/apt/sources.list.d/universe.list
RUN echo "deb http://get.docker.io/ubuntu docker main" > /etc/apt/sources.list.d/docker.list
RUN apt-get install -y curl
RUN curl -s https://get.docker.io/gpg | apt-key add -
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 6E63A3B44CF61F28A8A477DE5563540C431533D8 # syslog
RUN echo "deb http://ppa.launchpad.net/tmortensen/rsyslogv7/ubuntu precise main" >> /etc/apt/sources.list
RUN apt-get update -qq
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y python-apt ca-certificates \
python-pip python-dev libev4 libev-dev libssh-dev libpcre3-dev rsyslog \
cron mysql-server redis-server git lxc-docker-0.10.0
RUN pip install supervisor
RUN useradd -m -d /home/kozmic -G docker -s /bin/bash kozmic
RUN git clone https://github.com/aromanovich/kozmic-ci.git /src/
RUN pip install -r /src/requirements/kozmic.txt
RUN pip install -r /src/requirements/tailer.txt
ADD ./files/rsyslog.conf /etc/rsyslog.d/50-default.conf
ADD ./files/rsyslog-logrotate /etc/logrotate.d/rsyslog
ADD ./files/supervisor.conf /etc/supervisor.conf
ADD ./files/kozmic-uwsgi.ini /etc/kozmic-uwsgi.ini
ADD ./files/tailer-uwsgi.ini /etc/tailer-uwsgi.ini
ADD ./files/wrapped-docker /bin/wrapped-docker
ADD ./files/crontab /etc/crontab
ADD ./files/config.py-docker /config.py-docker
ADD ./files/run.sh /run.sh
RUN chmod +x /bin/wrapped-docker /run.sh && \
chown root /etc/crontab && \
chmod 644 /etc/crontab
VOLUME /var/lib/docker
VOLUME /var/lib/mysql
ENTRYPOINT ["/run.sh"]
| feature addition |
223 | 0330149f2b21567572eeefd8c51bd5cb08dd90d8 | Fix wrong entrypoint in dockerfile | Fix wrong entrypoint in dockerfile
| # Start by building the application.
FROM golang:1.13-buster as build
WORKDIR /opt
ADD . .
RUN make build
# Now copy it into our base image.
FROM gcr.io/distroless/base-debian10
COPY --from=build /opt/app /
COPY --from=busybox /bin/busybox /busybox/busybox
RUN ["/busybox/busybox", "--install", "/bin"]
ENV TZ=Asia/Chongqing
ENTRYPOINT ["/app" "/config.yaml"]
| # Start by building the application.
FROM golang:1.13-buster as build
WORKDIR /opt
ADD . .
RUN make build
# Now copy it into our base image.
FROM gcr.io/distroless/base-debian10
COPY --from=build /opt/app /
COPY --from=busybox /bin/busybox /busybox/busybox
RUN ["/busybox/busybox", "--install", "/bin"]
ENV TZ=Asia/Chongqing
ENTRYPOINT ["/app", "/config.yaml"]
| maintenance/other |
398 | 76d429b63187092ec5fd453ce3c366527639098c | Update Dockerfile | Update Dockerfile
added JAVA_HOME | FROM ubuntu
MAINTAINER Wurstmeister
RUN echo "deb http://archive.ubuntu.com/ubuntu precise universe" >> /etc/apt/sources.list; apt-get update; apt-get install -y unzip openjdk-6-jdk wget supervisor
RUN wget -q -N http://mirror.ox.ac.uk/sites/rsync.apache.org/incubator/storm/apache-storm-0.9.2-incubating/apache-storm-0.9.2-incubating.zip; unzip -o /apache-storm-0.9.2-incubating.zip -d /usr/share/; rm apache-storm-0.9.2-incubating.zip
ENV STORM_HOME /usr/share/apache-storm-0.9.2-incubating
RUN groupadd storm; useradd --gid storm --home-dir /home/storm --create-home --shell /bin/bash storm; chown -R storm:storm $STORM_HOME; mkdir /var/log/storm ; chown -R storm:storm /var/log/storm
RUN ln -s $STORM_HOME/bin/storm /usr/bin/storm
ADD storm.yaml $STORM_HOME/conf/storm.yaml
ADD cluster.xml $STORM_HOME/logback/cluster.xml
ADD config-supervisord.sh /usr/bin/config-supervisord.sh
ADD start-supervisor.sh /usr/bin/start-supervisor.sh
RUN echo [supervisord] | tee -a /etc/supervisor/supervisord.conf ; echo nodaemon=true | tee -a /etc/supervisor/supervisord.conf
| FROM ubuntu
MAINTAINER Wurstmeister
RUN echo "deb http://archive.ubuntu.com/ubuntu precise universe" >> /etc/apt/sources.list; apt-get update; apt-get install -y unzip openjdk-6-jdk wget supervisor
RUN wget -q -N http://mirror.ox.ac.uk/sites/rsync.apache.org/incubator/storm/apache-storm-0.9.2-incubating/apache-storm-0.9.2-incubating.zip; unzip -o /apache-storm-0.9.2-incubating.zip -d /usr/share/; rm apache-storm-0.9.2-incubating.zip
ENV STORM_HOME /usr/share/apache-storm-0.9.2-incubating
ENV JAVA_HOME /usr/lib/jvm/java-6-openjdk-amd64/
RUN groupadd storm; useradd --gid storm --home-dir /home/storm --create-home --shell /bin/bash storm; chown -R storm:storm $STORM_HOME; mkdir /var/log/storm ; chown -R storm:storm /var/log/storm
RUN ln -s $STORM_HOME/bin/storm /usr/bin/storm
ADD storm.yaml $STORM_HOME/conf/storm.yaml
ADD cluster.xml $STORM_HOME/logback/cluster.xml
ADD config-supervisord.sh /usr/bin/config-supervisord.sh
ADD start-supervisor.sh /usr/bin/start-supervisor.sh
RUN echo [supervisord] | tee -a /etc/supervisor/supervisord.conf ; echo nodaemon=true | tee -a /etc/supervisor/supervisord.conf
| code refactoring |
2181 | 10a5357b9ea6ab574c43153e85070566b21c1806 | Dockerfile version bump | Dockerfile version bump
| FROM debian:stretch
MAINTAINER David Personette <[email protected]>
# Install kibana
RUN export DEBIAN_FRONTEND='noninteractive' && \
export url='https://artifacts.elastic.co/downloads/kibana' && \
export version='5.6.2' && \
export shasum='e9ef4f8dee16b1274d4b0399c0df938a5c99d450f8b8f8b1e56b341' && \
groupadd -r kibana && \
useradd -c 'Kibana' -d /opt/kibana -g kibana -r kibana && \
apt-get update -qq && \
apt-get install -qqy --no-install-recommends ca-certificates curl \
procps libfontconfig libfreetype6 \
$(apt-get -s dist-upgrade|awk '/^Inst.*ecurity/ {print $2}') &&\
file="kibana-${version}-linux-x86_64.tar.gz" && \
echo "downloading $file ..." && \
curl -LOSs ${url}/$file && \
sha512sum $file | grep -q "$shasum" || \
{ echo "expected $shasum, got $(sha512sum $file)"; exit 13; } && \
tar -xf $file -C /tmp && \
mv /tmp/kibana-* /opt/kibana && \
chown -Rh kibana. /opt/kibana && \
apt-get purge -qqy ca-certificates curl && \
apt-get autoremove -qqy && apt-get clean -qqy && \
rm -rf /tmp/* /var/lib/apt/lists/* $file
COPY kibana.sh /usr/bin/
EXPOSE 5601
VOLUME ["/opt/kibana"]
ENTRYPOINT ["kibana.sh"] | null | maintenance/other |
2297 | a826f8fb929357c8604e236a11e6556baf7fac99 | Update Liberty to latest version | Update Liberty to latest version
Update liberty to the latest versions: 17.0.0_01 | # (C) Copyright IBM Corporation 2015.
#
# 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 ibmjava:8-jre
MAINTAINER David Currie <[email protected]> (@davidcurrie)
RUN apt-get update \
&& apt-get install -y --no-install-recommends unzip \
&& rm -rf /var/lib/apt/lists/*
# Install WebSphere Liberty
ENV LIBERTY_VERSION 16.0.0_04
ARG LIBERTY_URL
ARG DOWNLOAD_OPTIONS=""
RUN LIBERTY_URL=${LIBERTY_URL:-$(wget -q -O - https://public.dhe.ibm.com/ibmdl/export/pub/software/websphere/wasdev/downloads/wlp/index.yml | grep $LIBERTY_VERSION -A 6 | sed -n 's/\s*kernel:\s//p' | tr -d '\r' )} \
&& wget $DOWNLOAD_OPTIONS $LIBERTY_URL -U UA-IBM-WebSphere-Liberty-Docker -O /tmp/wlp.zip \
&& unzip -q /tmp/wlp.zip -d /opt/ibm \
&& rm /tmp/wlp.zip
ENV PATH=/opt/ibm/wlp/bin:$PATH
# Set Path Shortcuts
ENV LOG_DIR=/logs \
WLP_OUTPUT_DIR=/opt/ibm/wlp/output
RUN mkdir /logs \
&& ln -s $WLP_OUTPUT_DIR/defaultServer /output \
&& ln -s /opt/ibm/wlp/usr/servers/defaultServer /config
# Configure WebSphere Liberty
RUN /opt/ibm/wlp/bin/server create \
&& rm -rf $WLP_OUTPUT_DIR/.classCache /output/workarea
COPY docker-server /opt/ibm/docker/
EXPOSE 9080 9443
CMD ["/opt/ibm/docker/docker-server", "run", "defaultServer"]
| null | maintenance/other |
76 | 6dcbb372d51cf5227f16c387c5658c6db3b73a28 | Bump Dockerfile to 10.1.0-755-e9f0cde8 | Bump Dockerfile to 10.1.0-755-e9f0cde8
| FROM stellar/base:latest
MAINTAINER Mat Schaffer <[email protected]>
ENV STELLAR_CORE_VERSION 10.1.0-754-e412f56f
EXPOSE 11625
EXPOSE 11626
VOLUME /data
VOLUME /postgresql-unix-sockets
VOLUME /heka
ADD install /
RUN /install
ADD heka /heka
ADD confd /etc/confd
ADD utils /utils
ADD start /
CMD ["/start"]
| FROM stellar/base:latest
MAINTAINER Mat Schaffer <[email protected]>
ENV STELLAR_CORE_VERSION 10.1.0-755-e9f0cde8
EXPOSE 11625
EXPOSE 11626
VOLUME /data
VOLUME /postgresql-unix-sockets
VOLUME /heka
ADD install /
RUN /install
ADD heka /heka
ADD confd /etc/confd
ADD utils /utils
ADD start /
CMD ["/start"]
| Not enough inforamtion |
2130 | 8e07169967058da674579ff215453b76376f1e4f | Bumped source to 20200319-e4c1911 | Bumped source to 20200319-e4c1911
| FROM docker.pkg.github.com/dock0/service/service:20200319-be7623a
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 |
172 | 6643296faf98e35dcfff755a4e99df0c646a6f8e | Update docker file to not kill existing | Update docker file to not kill existing
| FROM phusion/baseimage:0.9.11
MAINTAINER Jack Lindamood <[email protected]>
ENV DEBIAN_FRONTEND noninteractive
# Clean/refresh apt-get
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
RUN apt-get update
RUN apt-get -y upgrade
# Install dependencies
RUN apt-get -y install golang git mercurial curl
RUN mkdir -p /opt/sfproxy
# Invalidate cache so "go get" gets the latest code
RUN mkdir -p /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/
ADD config /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/config
ADD core /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/core
ADD forwarder /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/forwarder
ADD listener /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/listener
ADD protocoltypes /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/protocoltypes
ADD signalfxproxy.go /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/
ADD signalfxproxy_test.go /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/
ADD travis_check.sh /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/
ADD lint_all.sh /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/
ADD vet_all.sh /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/
ADD format_all.sh /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/
ENV GOPATH /opt/sfproxy
RUN go get github.com/golang/lint/golint
RUN go get code.google.com/p/go.tools/cmd/vet
RUN go get github.com/stretchr/testify/mock
RUN go get code.google.com/p/go.tools/cmd/cover
RUN go env
RUN go get -u ./...
RUN export PATH=$GOPATH/bin:$PATH
RUN /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/travis_check.sh
# Add run command
VOLUME /var/log/sfproxy
VOLUME /var/config/sfproxy
USER root
CMD ["/opt/sfproxy/bin/signalfxproxy", "-configfile", "/var/config/sfproxy/sfdbproxy.conf", "-signalfxproxypid", "/var/config/sfproxy/sfproxy.pid" ,"-log_dir", "/var/log/sfproxy"]
| FROM phusion/baseimage:0.9.11
MAINTAINER Jack Lindamood <[email protected]>
ENV DEBIAN_FRONTEND noninteractive
# Clean/refresh apt-get
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
RUN apt-get update
RUN apt-get -y upgrade
# Install dependencies
RUN apt-get -y install golang git mercurial curl
RUN mkdir -p /opt/sfproxy
# Invalidate cache so "go get" gets the latest code
RUN mkdir -p /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/
ADD config /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/config
ADD core /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/core
ADD forwarder /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/forwarder
ADD listener /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/listener
ADD protocoltypes /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/protocoltypes
ADD signalfxproxy.go /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/
ADD signalfxproxy_test.go /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/
ADD travis_check.sh /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/
ADD lint_all.sh /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/
ADD vet_all.sh /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/
ADD format_all.sh /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/
ENV GOPATH /opt/sfproxy
RUN go get github.com/golang/lint/golint
RUN go get code.google.com/p/go.tools/cmd/vet
RUN go get github.com/stretchr/testify/mock
RUN go get code.google.com/p/go.tools/cmd/cover
RUN go env
RUN go get ./...
RUN export PATH=$GOPATH/bin:$PATH
RUN /opt/sfproxy/src/github.com/signalfuse/signalfxproxy/travis_check.sh
# Add run command
VOLUME /var/log/sfproxy
VOLUME /var/config/sfproxy
USER root
CMD ["/opt/sfproxy/bin/signalfxproxy", "-configfile", "/var/config/sfproxy/sfdbproxy.conf", "-signalfxproxypid", "/var/config/sfproxy/sfproxy.pid" ,"-log_dir", "/var/log/sfproxy"]
| maintenance/other |
388 | 7447cefec7f34e7af27da38070875a5cec8827d3 | Bumped source to 20210807-b064247 | Bumped source to 20210807-b064247
| FROM docker.pkg.github.com/dock0/arch/arch:20210807-3e34b9c
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:20210807-b064247
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 |
410 | 4d8831a8589a13d580792ec253665ca7b551cc9b | Bumped source to 20210310-d7a680d | Bumped source to 20210310-d7a680d
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20210309-426b957
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:20210310-d7a680d
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| code refactoring |
94 | 085c1654b1c63736384834b6084676ea7b5096be | Bumped source to 20200619-d7233b1 | Bumped source to 20200619-d7233b1
| FROM docker.pkg.github.com/dock0/service/service:20200618-8fb93f0
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:20200619-d7233b1
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 |
51 | f8e66b4e7e386a343fe96ef3336e874cab4dd53b | Update AWS CLI version to 1.14.22 | Update AWS CLI version to 1.14.22
| FROM python:3.6-slim
MAINTAINER Nikolay Rybak <[email protected]>
ARG BUILD_DATE
ARG VCS_REF
LABEL org.label-schema.schema-version="1.0" \
org.label-schema.name="AWS CLI" \
org.label-schema.url="https://aws.amazon.com/cli/" \
org.label-schema.vcs-url="https://github.com/GreyTeardrop/docker-awscli" \
org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.build-date=$BUILD_DATE \
org.label-schema.version="1.14.21"
RUN \
apt-get update && \
apt-get install -y --no-install-recommends groff-base && \
mkdir -p /aws && \
pip install --upgrade awscli==1.14.21 && \
rm -rf /root/.cache && \
rm -rf /var/lib/apt/lists/*
WORKDIR /aws
ENTRYPOINT ["aws"]
| FROM python:3.6-slim
MAINTAINER Nikolay Rybak <[email protected]>
ARG BUILD_DATE
ARG VCS_REF
LABEL org.label-schema.schema-version="1.0" \
org.label-schema.name="AWS CLI" \
org.label-schema.url="https://aws.amazon.com/cli/" \
org.label-schema.vcs-url="https://github.com/GreyTeardrop/docker-awscli" \
org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.build-date=$BUILD_DATE \
org.label-schema.version="1.14.22"
RUN \
apt-get update && \
apt-get install -y --no-install-recommends groff-base && \
mkdir -p /aws && \
pip install --upgrade awscli==1.14.22 && \
rm -rf /root/.cache && \
rm -rf /var/lib/apt/lists/*
WORKDIR /aws
ENTRYPOINT ["aws"]
| code refactoring |
2121 | 933d350409e3e7c04456b12988e9de3879d1b005 | update the ppa to shogun-team nightly in shogun runtime env | update the ppa to shogun-team nightly in shogun runtime env
| FROM ubuntu:14.04
MAINTAINER [email protected]
RUN apt-get update && apt-get install -qq software-properties-common lsb-release
RUN add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) multiverse"
RUN add-apt-repository ppa:shogun-daily/ppa
RUN apt-get update -qq
RUN apt-get upgrade -y
# install shogun
RUN apt-get install -qq --force-yes --no-install-recommends libshogun17
| null | maintenance/other |
12 | 3122ec38c6f8aca32c1e1a64606f07e56224c3a8 | Adapt env variable for postgres version | Adapt env variable for postgres version
| # Adapted from mdillon/postgis:9.5
# and https://github.com/docker-library/postgres/blob/master/9.5/docker-entrypoint.sh
#FROM postgres:9.5
FROM tamboraorg/crepostgres:2011.0
MAINTAINER Michael Kahle <[email protected]>
ENV POSTGIS_MAJOR 2.5
#ENV POSTGIS_MAJOR 2.3
#ENV POSTGIS_VERSION 2.3.2+dfsg-1~exp2.pgdg80+1
#ENV POSTGIS_VERSION 2.3.2+dfsg-1~exp2.pgdg16.04+1
ENV POSTGIS_VERSION 2.5.1
USER root
#RUN add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe restricted multiverse"
RUN add-apt-repository ppa:ubuntugis/ppa
RUN apt-get update
RUN apt-get install -y --no-install-recommends \
postgresql-$PG_VERSION-postgis-$POSTGIS_MAJOR
RUN apt-get install -y --no-install-recommends \
postgresql-$PG_VERSION-postgis-$POSTGIS_MAJOR-scripts
RUN apt-get install -y --no-install-recommends \
postgis
RUN rm -rf /var/lib/apt/lists/*
USER postgres
COPY cre /cre
WORKDIR /cre/
#RUN mkdir -p /docker-entrypoint-initdb.d
#COPY ./initdb-postgis.sh /docker-entrypoint-initdb.d/postgis.sh
#COPY ./update-postgis.sh /usr/local/bin
| # Adapted from mdillon/postgis:9.5
# and https://github.com/docker-library/postgres/blob/master/9.5/docker-entrypoint.sh
#FROM postgres:9.5
FROM tamboraorg/crepostgres:2011.0
MAINTAINER Michael Kahle <[email protected]>
ENV POSTGIS_MAJOR 2.5
#ENV POSTGIS_MAJOR 2.3
#ENV POSTGIS_VERSION 2.3.2+dfsg-1~exp2.pgdg80+1
#ENV POSTGIS_VERSION 2.3.2+dfsg-1~exp2.pgdg16.04+1
ENV POSTGIS_VERSION 2.5.1
USER root
#RUN add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) main universe restricted multiverse"
RUN add-apt-repository ppa:ubuntugis/ppa
RUN apt-get update
RUN apt-get install -y --no-install-recommends \
postgresql-$POSTGRES_VERSION-postgis-$POSTGIS_MAJOR
RUN apt-get install -y --no-install-recommends \
postgresql-$POSTGRES_VERSION-postgis-$POSTGIS_MAJOR-scripts
RUN apt-get install -y --no-install-recommends \
postgis
RUN rm -rf /var/lib/apt/lists/*
USER postgres
COPY cre /cre
WORKDIR /cre/
#RUN mkdir -p /docker-entrypoint-initdb.d
#COPY ./initdb-postgis.sh /docker-entrypoint-initdb.d/postgis.sh
#COPY ./update-postgis.sh /usr/local/bin
| maintenance/other |
177 | f4f8ed90bf1038074bf4c53bb11fec2e3ac9b121 | Bumped source to 20200319-9a625c8 | Bumped source to 20200319-9a625c8
| FROM docker.pkg.github.com/dock0/arch/arch:20200319-7c88c8b
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:20200319-9a625c8
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 |
196 | 728a4c5b953cc62cc52b55f5f620b8b75d67bf2e | Bumped source to 20221117-034639b | Bumped source to 20221117-034639b
| FROM ghcr.io/dock0/arch:20221117-beef06a
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:20221117-034639b
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 |
2193 | 6619f63c72e3d5c88c33fe408f61397499c4c761 | using version 2.070.2 | using version 2.070.2
| FROM ubuntu:16.04
MAINTAINER Stefan Rohe <[email protected]>
ENV \
COMPILER=dmd \
COMPILER_VERSION=2.070.1
RUN apt-get update && apt-get install -y curl build-essential \
&& curl -fsS -o /tmp/install.sh https://dlang.org/install.sh \
&& bash /tmp/install.sh -p /dlang install -s "${COMPILER}-${COMPILER_VERSION}" \
&& rm /tmp/install.sh \
&& apt-get auto-remove -y curl build-essential \
&& apt-get install -y gcc \
&& rm -rf /var/cache/apt \
&& rm -rf /dlang/${COMPILER}-*/linux/bin32 \
&& rm -rf /dlang/${COMPILER}-*/linux/lib32 \
&& rm -rf /dlang/${COMPILER}-*/html \
&& rm -rf /dlang/dub-1.0.0/dub.tar.gz
ENV \
PATH=/dlang/${COMPILER}-${COMPILER_VERSION}/linux/bin64:${PATH} \
LD_LIBRARY_PATH=/dlang/${COMPILER}-${COMPILER_VERSION}/linux/lib64 \
LIBRARY_PATH=/dlang/${COMPILER}-${COMPILER_VERSION}/linux/lib64 \
PS1="(${COMPILER}-${COMPILER_VERSION}) \\u@\\h:\\w\$"
RUN cd /tmp \
&& echo 'void main() {import std.stdio; stdout.writeln("it works"); }' > test.d \
&& dmd test.d \
&& ./test && rm test*
WORKDIR /src
ENV GOSU_VERSION 1.9
RUN apt-get update \
&& apt-get install -y --no-install-recommends ca-certificates wget \
&& 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 auto-remove -y wget \
&& rm -rf /var/lib/apt/lists/* \
&& chmod 755 -R /dlang
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
CMD ["${COMPILER}"]
| null | maintenance/other |
274 | 38846d6a9e7cb6b7a7fbfd3767db372b5469702b | Bumped source to 20201013-48ea5a5 | Bumped source to 20201013-48ea5a5
| FROM docker.pkg.github.com/dock0/arch/arch:20201013-5117106
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:20201013-48ea5a5
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, code refactoring |
73 | d7b5ddc36d13d1fc3d7ad969b688887caad47643 | Bumped source to 20200814-238b0da | Bumped source to 20200814-238b0da
| FROM docker.pkg.github.com/dock0/arch/arch:20200814-ade2558
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:20200814-238b0da
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 |
363 | 7c284a3a83bfeeac91e7cc365a7f6baaf8cac7da | Updated Ubuntu and added a volume for /etc/sensu | Updated Ubuntu and added a volume for /etc/sensu
| FROM ubuntu:trusty
MAINTAINER John Dilts <[email protected]>
RUN apt-get update && apt-get install -y wget openssl
RUN useradd -d /home/sensu -m -s /bin/bash sensu
RUN echo sensu:sensu | chpasswd
ADD sensu_ca sensu_ca
ADD ssl_certs.sh /tmp/
RUN /tmp/ssl_certs.sh generate
ADD install-sensu.sh /tmp/
RUN /tmp/install-sensu.sh
ADD supervisor.conf /etc/supervisor/conf.d/sensu.conf
ADD sensu-run.sh /tmp/sensu-run.sh
VOLUME /var/log/sensu
EXPOSE 4567
EXPOSE 5672
EXPOSE 6379
EXPOSE 3000
CMD ["/tmp/sensu-run.sh"]
| FROM ubuntu:latest
MAINTAINER John Dilts <[email protected]>
RUN apt-get update && apt-get install -y wget openssl
RUN useradd -d /home/sensu -m -s /bin/bash sensu
RUN echo sensu:sensu | chpasswd
ADD sensu_ca sensu_ca
ADD ssl_certs.sh /tmp/
RUN /tmp/ssl_certs.sh generate
ADD install-sensu.sh /tmp/
RUN /tmp/install-sensu.sh
ADD supervisor.conf /etc/supervisor/conf.d/sensu.conf
ADD sensu-run.sh /tmp/sensu-run.sh
VOLUME /var/log/sensu
VOLUME /etc/sensu
EXPOSE 4567
EXPOSE 5672
EXPOSE 6379
EXPOSE 3000
CMD ["/tmp/sensu-run.sh"]
| maintenance/other |
2304 | 7e94189646592fad30f54e1c5eb74b4d7758eaa9 | #NAME? | #NAME? | FROM mediawiki:stable
# ope-wsl - Offline version of Washington State Library resource wiki
# Build with docker build -t ope-wsl .
#INSTRUCTIONS
# Build the container and run it with the docker-compose command
# Sync offline copies of website content into volume
# To copy to offline server use the setup tool
MAINTAINER Ray Pulsipher <[email protected]>
LABEL Description="Washington State Library offline resource wiki - Image for Open Prison Education" Vendor="openprisoneducation.com" Version="0.1"
VOLUME ["/var/www/html/sites"]
EXPOSE 80
| null | maintenance/other |
98 | 5c68019cf7fcc81ffc229c0a042f859ba8c54322 | Bumped source to 20200417-f67c30b | Bumped source to 20200417-f67c30b
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20200417-4ab5ac2
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:20200417-f67c30b
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| feature addition |
358 | 64eb10aa3ec4bf566cf446277d1b0a5c530e4a9f | Bumped source to 20210717-656a897 | Bumped source to 20210717-656a897
| FROM docker.pkg.github.com/dock0/service/service:20210717-dcfe22d
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:20210717-656a897
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, bug fix |
298 | bd89aebe29cfad5d234b1d8c15fec73f25037089 | add hadoop-base dockerfile | add hadoop-base dockerfile
| FROM lsw1991abc/sshd:0.1
LABEL maintainer="[email protected]"
USER root
ARG DISTRO_NAME=hadoop-2.7.4
# COPY $DISTRO_NAME.tar.gz /opt/
RUN wget -o /opt/$DISTRO_NAME.tar.gz http://apache.fayea.com/hadoop/common/$DISTRO_NAME/$DISTRO_NAME.tar.gz
RUN tar -xzf /opt/$DISTRO_NAME.tar.gz -C /opt/ && rm /opt/$DISTRO_NAME.tar.gz && chown -R root:root /opt/$DISTRO_NAME
# 环境变量
ENV JAVA_HOME /usr/lib/jvm/java-1.8.0-openjdk-amd64
ENV HADOOP_HOME /opt/$DISTRO_NAME
ENV HADOOP_MAPRED_HOME $HADOOP_HOME
ENV HADOOP_COMMON_HOME $HADOOP_HOME
ENV HADOOP_HDFS_HOME $HADOOP_HOME
ENV YARN_HOME $HADOOP_HOME
ENV HADOOP_COMMON_LIB_NATIVE_DIR $HADOOP_HOME/lib/native
ENV HADOOP_INSTALL $HADOOP_HOME
ENV PATH $PATH:$JAVA_HOME/bin:$HADOOP_HOME/sbin:$HADOOP_HOME/bin
# Hdfs ports
EXPOSE 50010 50020 50070 50075 50090 8020 9000
# Mapred ports
EXPOSE 10020 19888
#Yarn ports
EXPOSE 8030 8031 8032 8033 8040 8042 8088
#Other ports
EXPOSE 49707 2122
COPY docker-entrypoint.sh /
ENTRYPOINT ["/docker-entrypoint.sh"] | FROM lsw1991abc/sshd:0.1
LABEL maintainer="[email protected]"
USER root
ARG DISTRO_NAME=hadoop-2.7.4
# COPY $DISTRO_NAME.tar.gz /opt/
RUN wget -P /opt/ http://apache.fayea.com/hadoop/common/$DISTRO_NAME/$DISTRO_NAME.tar.gz
RUN tar -xzf /opt/$DISTRO_NAME.tar.gz -C /opt/ && rm /opt/$DISTRO_NAME.tar.gz && chown -R root:root /opt/$DISTRO_NAME
# 环境变量
ENV JAVA_HOME /usr/lib/jvm/java-1.8.0-openjdk-amd64
ENV HADOOP_HOME /opt/$DISTRO_NAME
ENV HADOOP_MAPRED_HOME $HADOOP_HOME
ENV HADOOP_COMMON_HOME $HADOOP_HOME
ENV HADOOP_HDFS_HOME $HADOOP_HOME
ENV YARN_HOME $HADOOP_HOME
ENV HADOOP_COMMON_LIB_NATIVE_DIR $HADOOP_HOME/lib/native
ENV HADOOP_INSTALL $HADOOP_HOME
ENV PATH $PATH:$JAVA_HOME/bin:$HADOOP_HOME/sbin:$HADOOP_HOME/bin
# Hdfs ports
EXPOSE 50010 50020 50070 50075 50090 8020 9000
# Mapred ports
EXPOSE 10020 19888
#Yarn ports
EXPOSE 8030 8031 8032 8033 8040 8042 8088
#Other ports
EXPOSE 49707 2122
COPY docker-entrypoint.sh /
ENTRYPOINT ["/docker-entrypoint.sh"] | feature addition |
240 | ba196ce7d271ef5d936156d5115617d037fa6034 | Couldn't do a docker build so changed from 16:04 to latest then it worked. Also now running update and install together with && as suggested by docker best practice. | Couldn't do a docker build so changed from 16:04 to latest then it worked. Also now running update and install together with && as suggested by docker best practice.
| ############################################################
# Dockerfile to build 16S rRNA diversity analysis
# Based on Ubuntu 16.04
############################################################
# Set the base image to Ubuntu
FROM ubuntu:16.04
# File Author / Maintainer
MAINTAINER Long Yee "[email protected]"
# Update the repository sources list
RUN apt-get update
RUN apt-get upgrade -y
WORKDIR /root
################## BEGIN INSTALLATION ######################
# Install Basic tools
RUN apt-get install -y wget unzip libfindbin-libs-perl
# Install Java 8
# Ref: https://www.digitalocean.com/community/tutorials/how-to-install-java-with-apt-get-on-ubuntu-16-04
RUN apt-get install -y default-jre
# Install FastQC
# Ref: http://www.bioinformatics.babraham.ac.uk/projects/fastqc/INSTALL.txt
RUN wget http://www.bioinformatics.babraham.ac.uk/projects/fastqc/fastqc_v0.11.5.zip
RUN unzip fastqc_v0.11.5.zip
RUN mv FastQC/ /opt/
RUN chmod +x /opt/FastQC/fastqc
RUN ln -s /opt/FastQC/fastqc /usr/local/bin/fastqc
##################### INSTALLATION END #####################
#ENTRYPOINT ["/usr/local/bin/fastqc"]
#CMD ["--help"]
| ############################################################
# Dockerfile to build 16S rRNA diversity analysis
############################################################
# Set the base image to Ubuntu
FROM ubuntu:latest
# File Author / Maintainer
MAINTAINER Long Yee "[email protected]"
WORKDIR /root
################## BEGIN INSTALLATION ######################
# Install Basic tools
RUN apt-get update && apt-get install -y wget unzip libfindbin-libs-perl
# Install Java 8
# Ref: https://www.digitalocean.com/community/tutorials/how-to-install-java-with-apt-get-on-ubuntu-16-04
RUN apt-get install -y default-jre
# Install FastQC
# Ref: http://www.bioinformatics.babraham.ac.uk/projects/fastqc/INSTALL.txt
RUN wget http://www.bioinformatics.babraham.ac.uk/projects/fastqc/fastqc_v0.11.5.zip
RUN unzip fastqc_v0.11.5.zip
RUN mv FastQC/ /opt/
RUN chmod +x /opt/FastQC/fastqc
RUN ln -s /opt/FastQC/fastqc /usr/local/bin/fastqc
##################### INSTALLATION END #####################
#ENTRYPOINT ["/usr/local/bin/fastqc"]
#CMD ["--help"]
| feature addition |
2156 | 6b6745df3012cdd34794f859f921a01a16acced1 | Add missing php modules | Add missing php modules
| FROM ubuntu
MAINTAINER Samir L. Boulema <[email protected]>
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y \
nginx supervisor php7.0-fpm php7.0-cli php7.0-curl php7.0-gd php7.0-json \
php7.0-pgsql php7.0-mysql php7.0-mcrypt && apt-get clean && rm -rf /var/lib/apt/lists/* && mkdir -p /var/run/php
# enable the mcrypt module
RUN phpenmod -v 7.0 mcrypt
# add ttrss as the only nginx site
ADD ttrss.nginx.conf /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 and patch configuration
WORKDIR /var/www
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y curl --no-install-recommends && rm -rf /var/lib/apt/lists/* \
&& curl -SL https://tt-rss.org/gitlab/fox/tt-rss/repository/archive.tar.gz?ref=master | tar xzC /var/www --strip-components 1 \
&& apt-get purge -y --auto-remove curl \
&& chown www-data:www-data -R /var/www
RUN cp config.php-dist config.php
# expose only nginx HTTP port
EXPOSE 80
# complete path to ttrss
ENV SELF_URL_PATH http://localhost
# expose default database credentials via ENV in order to ease overwriting
ENV DB_NAME ttrss
ENV DB_USER ttrss
ENV DB_PASS ttrss
# 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
CMD php /configure-db.php && supervisord -c /etc/supervisor/conf.d/supervisord.conf | null | code refactoring |
2266 | 4f308b5c61886221ecdfae0eb072a216eca36512 | Add PuDB to Dockerfile | Add PuDB to Dockerfile
| FROM ubuntu:14.04
MAINTAINER HelloLily
RUN apt-get update
RUN apt-get install -y \
python2.7-dev \
python-pip \
postgresql \
postgresql-server-dev-9.3 \
libxml2-dev \
libxslt1-dev \
libncurses5-dev \
rsync
RUN useradd docker
RUN echo "ALL ALL = (ALL) NOPASSWD: ALL" >> /etc/sudoers
WORKDIR /home/docker
ENV HOME /home/docker
ADD requirements.txt $HOME/requirements.txt
RUN pip install -r $HOME/requirements.txt
# Workaround for IncompleteRead error while installing requirements-dev.txt.
# See: https://bugs.launchpad.net/ubuntu/+source/python-pip/+bug/1306991
RUN rm -rf /usr/local/lib/python2.7/dist-packages/requests* && easy_install requests==2.3.0
ADD requirements-dev.txt $HOME/requirements-dev.txt
RUN pip install -r $HOME/requirements-dev.txt
RUN rm $HOME/requirements.txt $HOME/requirements-dev.txt
USER docker
ENV DEBUG 1
ENV SECRET_KEY abcdefghijklmnopqrstuvwxyz0123456789abcdefghijklmn
ENV DATABASE_URL postgres://hellolily:@db/hellolily
ENV REDISTOGO_URL redis://redis:6379
ENV MULTI_TENANT 1
ENV BROKER_HOST rabbit
ENV SEARCHBOX_SSL_URL http://es:9200
WORKDIR /home/docker/hellolily
CMD /bin/bash
| null | bug fix |
103 | 1adf6734d4631d78f9cc59b83cfbca8c7a2079cf | update 0.13.6 | update 0.13.6
| FROM alpine:edge
MAINTAINER Sven Walter <[email protected]>
ARG SYNCTHING_VERSION=0.13.5
ENV SYNCTHING_DATA=/data
ENV SYNCTHING_HOME=/syncthing
ADD resources/syncthing.sh /syncthing/syncthing.sh
RUN set -x \
&& apk add --no-cache bash \
&& apk add --no-cache \
--repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
xmlstarlet \
&& apk add --no-cache --virtual .build-deps \
curl \
ca-certificates \
&& mkdir -p ${SYNCTHING_DATA} \
&& mkdir -p ${SYNCTHING_HOME} \
&& curl -L -o syncthing.tar.gz https://github.com/syncthing/syncthing/releases/download/v$SYNCTHING_VERSION/syncthing-linux-amd64-v$SYNCTHING_VERSION.tar.gz \
&& tar -xzvf syncthing.tar.gz \
&& rm -f syncthing.tar.gz \
&& mv syncthing-linux-amd64-v* $SYNCTHING_HOME/syncthing \
&& rm -rf $SYNCTHING_HOME/syncthing/etc \
&& rm -rf $SYNCTHING_HOME/syncthing/*.pdf \
&& chmod 770 /syncthing/syncthing.sh \
&& apk del .build-deps
WORKDIR $SYNCTHING_HOME
VOLUME ["$SYNCTHING_HOME"]
ENTRYPOINT ["/syncthing/syncthing.sh"]
| FROM alpine:edge
MAINTAINER Sven Walter <[email protected]>
ARG SYNCTHING_VERSION=0.13.6
ENV SYNCTHING_DATA=/data
ENV SYNCTHING_HOME=/syncthing
ADD resources/syncthing.sh /syncthing/syncthing.sh
RUN set -x \
&& apk add --no-cache bash \
&& apk add --no-cache \
--repository http://dl-3.alpinelinux.org/alpine/edge/testing/ \
xmlstarlet \
&& apk add --no-cache --virtual .build-deps \
curl \
ca-certificates \
&& mkdir -p ${SYNCTHING_DATA} \
&& mkdir -p ${SYNCTHING_HOME} \
&& curl -L -o syncthing.tar.gz https://github.com/syncthing/syncthing/releases/download/v$SYNCTHING_VERSION/syncthing-linux-amd64-v$SYNCTHING_VERSION.tar.gz \
&& tar -xzvf syncthing.tar.gz \
&& rm -f syncthing.tar.gz \
&& mv syncthing-linux-amd64-v* $SYNCTHING_HOME/syncthing \
&& rm -rf $SYNCTHING_HOME/syncthing/etc \
&& rm -rf $SYNCTHING_HOME/syncthing/*.pdf \
&& chmod 770 /syncthing/syncthing.sh \
&& apk del .build-deps
WORKDIR $SYNCTHING_HOME
VOLUME ["$SYNCTHING_HOME"]
ENTRYPOINT ["/syncthing/syncthing.sh"]
| maintenance/other |
30 | e13800e616dd398d8cf10cdbcd36a2a03693638a | Fix spruce link in dockerimage | Fix spruce link in dockerimage
Signed-off-by: Alan Moran <[email protected]>
| FROM ruby:2.3.0
ENV GEM_NAME ops_manager_cli
ENV GEM_VERSION 0.7.3
ENV OVFTOOL_VERSION 4.1.0-2459827
ENV OVFTOOL_INSTALLER VMware-ovftool-${OVFTOOL_VERSION}-lin.x86_64.bundle
ARG DOWNLOAD_URL
# ================== Installs OVF tools ==============
RUN echo $DOWNLOAD_URL
RUN wget -v ${DOWNLOAD_URL} \
&& sh ${OVFTOOL_INSTALLER} -p /usr/local --eulas-agreed --required \
&& rm -f ${OVFTOOL_INSTALLER}*
# ================== Installs Spruce ==============
RUN wget -v --no-check-certificate https://github.com/geofffranks/spruce/releases/download/v1.13.1/spruce-linux-amd64 \
&& chmod +x spruce-linux-amd64 \
&& ln -s spruce-linux-amd64 /usr/bin/.
# ================== Installs JQ ==============
RUN wget -v -O /usr/local/bin/jq --no-check-certificate https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64
RUN chmod +x /usr/local/bin/jq
# ================== Installs ops_manager_cli gem ==============
COPY pkg/${GEM_NAME}-${GEM_VERSION}.gem /tmp/
RUN gem install /tmp/${GEM_NAME}-${GEM_VERSION}.gem
| FROM ruby:2.3.0
ENV GEM_NAME ops_manager_cli
ENV GEM_VERSION 0.7.3
ENV OVFTOOL_VERSION 4.1.0-2459827
ENV OVFTOOL_INSTALLER VMware-ovftool-${OVFTOOL_VERSION}-lin.x86_64.bundle
ARG DOWNLOAD_URL
# ================== Installs OVF tools ==============
RUN echo $DOWNLOAD_URL
RUN wget -v ${DOWNLOAD_URL} \
&& sh ${OVFTOOL_INSTALLER} -p /usr/local --eulas-agreed --required \
&& rm -f ${OVFTOOL_INSTALLER}*
# ================== Installs Spruce ==============
RUN wget -v --no-check-certificate https://github.com/geofffranks/spruce/releases/download/v1.13.1/spruce-linux-amd64 \
&& chmod +x spruce-linux-amd64 \
&& ln -s /spruce-linux-amd64 /usr/bin/spruce
# ================== Installs JQ ==============
RUN wget -v -O /usr/local/bin/jq --no-check-certificate https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64
RUN chmod +x /usr/local/bin/jq
# ================== Installs ops_manager_cli gem ==============
COPY pkg/${GEM_NAME}-${GEM_VERSION}.gem /tmp/
RUN gem install /tmp/${GEM_NAME}-${GEM_VERSION}.gem
| maintenance/other |
2270 | b0b69e2e36af82ad5234dbb340f4f21e50a53d6a | Bumped source to 20201008-85330e8 | Bumped source to 20201008-85330e8
| FROM docker.pkg.github.com/dock0/arch/arch:20201008-e506932
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 |
350 | 2437e6c3f71f4e7751c83c6f1a4ecbd546b49146 | Bumped source to 20200807-07fff0c | Bumped source to 20200807-07fff0c
| FROM docker.pkg.github.com/dock0/service/service:20200807-3737d6c
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:20200807-07fff0c
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"
| Not enough inforamtion |
265 | cfae32db3d3499b39c92aeced2b18a3a22bfbf35 | Update nodejs to 10.x for ubuntu18.04 ci/cd | Update nodejs to 10.x for ubuntu18.04 ci/cd
Signed-off-by: Sergey Minaev <[email protected]> | FROM ubuntu:18.04
ARG uid=1000
RUN apt-get update && \
apt-get install -y \
pkg-config \
libssl-dev \
curl \
libsqlite3-dev \
cmake \
python3-pip \
debhelper \
devscripts \
libncursesw5-dev \
libzmq3-dev \
libsodium-dev
RUN pip3 install -U \
pip \
twine \
plumbum \
deb-pkg-tools
RUN apt-get update && apt-get install -y --no-install-recommends \
ruby \
ruby-dev \
rubygems \
&& gem install --no-ri --no-rdoc rake fpm \
&& rm -rf /var/lib/apt/lists/*
# install java and maven
RUN apt-get update && apt-get install openjdk-8-jdk -y
ENV JAVA_HOME /usr/lib/jvm/java-8-openjdk-amd64
RUN apt-get update && apt-get install -y maven
# install nodejs and npm
RUN curl -sL https://deb.nodesource.com/setup_8.x | bash -
RUN apt-get install -y nodejs
RUN useradd -ms /bin/bash -u $uid indy
USER indy
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.36.0
ENV PATH /home/indy/.cargo/bin:$PATH
WORKDIR /home/indy | FROM ubuntu:18.04
ARG uid=1000
RUN apt-get update && \
apt-get install -y \
pkg-config \
libssl-dev \
curl \
libsqlite3-dev \
cmake \
python3-pip \
debhelper \
devscripts \
libncursesw5-dev \
libzmq3-dev \
libsodium-dev
RUN pip3 install -U \
pip \
twine \
plumbum \
deb-pkg-tools
RUN apt-get update && apt-get install -y --no-install-recommends \
ruby \
ruby-dev \
rubygems \
&& gem install --no-ri --no-rdoc rake fpm \
&& rm -rf /var/lib/apt/lists/*
# install java and maven
RUN apt-get update && apt-get install openjdk-8-jdk -y
ENV JAVA_HOME /usr/lib/jvm/java-8-openjdk-amd64
RUN apt-get update && apt-get install -y maven
# install nodejs and npm
RUN curl -sL https://deb.nodesource.com/setup_10.x | bash -
RUN apt-get install -y nodejs
RUN useradd -ms /bin/bash -u $uid indy
USER indy
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.36.0
ENV PATH /home/indy/.cargo/bin:$PATH
WORKDIR /home/indy
| maintenance/other |
193 | d1312bdddc4e770fda8a7a778c8b8bbb55bfa1b6 | Update Dockerfile | Update Dockerfile | # A docker file to run php-fpm server behind nginx or other frontend
FROM alpine:edge
MAINTAINER Antoine GIRARD <[email protected]>
#UID et GID can be set at run time to change in relation with the host
ENV BASEDIR="/var/www",UID="33",GID="33"
#Install php and deps (+ add testing repo)
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
&& apk -U --no-cache --no-progress upgrade \
&& apk -U --no-cache --force --no-progress add \
ca-certificates php-fpm php-cli php-zip php-gd shadow \
#Configure
RUN addgroup -S www-data && adduser -S -H -h ${BASEDIR} -G www-data www-data \
&& mkdir ${BASEDIR} && chown www-data:www-data ${BASEDIR} \
&& sed --in-place s/user\ =\ nobody/user\ =\ www-data/g /etc/php/php-fpm.conf \
&& sed --in-place s/group\ =\ nobody/group\ =\ www-data/g /etc/php/php-fpm.conf \
&& sed --in-place s/listen\ =\ 127.0.0.1:9000/listen\ =\ 0.0.0.0:9000/g /etc/php/php-fpm.conf \
VOLUME ${BASEDIR}
WORKDIR ${BASEDIR}
EXPOSE 9000
ENTRYPOINT /usr/sbin/groupmod -g $GID www-data && /usr/sbin/usermod -u $UID -g $GID www-data && /usr/bin/php-fpm -F -e -i
CMD []
| # A docker file to run php-fpm server behind nginx or other frontend
FROM alpine:edge
MAINTAINER Antoine GIRARD <[email protected]>
#UID et GID can be set at run time to change in relation with the host
ENV BASEDIR="/var/www",UID="33",GID="33"
#Install php and deps (+ add testing repo)
RUN echo "http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories \
&& apk --no-progress upgrade --no-cache\
&& apk --no-progress add --no-cache ca-certificates \
php-fpm php-cli php-zip php-gd shadow
#Configure
RUN addgroup -S www-data && adduser -S -H -h ${BASEDIR} -G www-data www-data \
&& mkdir ${BASEDIR} && chown www-data:www-data ${BASEDIR} \
&& sed --in-place s/user\ =\ nobody/user\ =\ www-data/g /etc/php/php-fpm.conf \
&& sed --in-place s/group\ =\ nobody/group\ =\ www-data/g /etc/php/php-fpm.conf \
&& sed --in-place s/listen\ =\ 127.0.0.1:9000/listen\ =\ 0.0.0.0:9000/g /etc/php/php-fpm.conf \
VOLUME ${BASEDIR}
WORKDIR ${BASEDIR}
EXPOSE 9000
ENTRYPOINT /usr/sbin/groupmod -g $GID www-data && /usr/sbin/usermod -u $UID -g $GID www-data && /usr/bin/php-fpm -F -e -i
CMD []
| feature addition |
29 | 145e3df7ad60da248b9855786b9c579143639b48 | Bumped source to 20200216-be2fa16 | Bumped source to 20200216-be2fa16
| FROM docker.pkg.github.com/dock0/arch/arch:20200216-f890194
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:20200216-be2fa16
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 |
269 | aa76cf845b82d40a5e1622f2bfe74956263cba65 | Added copying of artifacts folder with CRDs | Added copying of artifacts folder with CRDs
This will allow us to remove redundant code in https://github.com/grafeas/kritis/blob/master/helm-hooks/preinstall/crd.go that redefines the CRDs. | # Copyright 2018 Google, Inc. All rights reserved.
#
# 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 golang:1.10
WORKDIR /go/src/github.com/grafeas/kritis
COPY . .
ARG stage
RUN make ${stage}
FROM golang:1.10
RUN go get -u github.com/cloudflare/cfssl/cmd/...
ENV KUBECTL_VERSION v1.10.0
RUN curl -Lo /usr/local/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl && \
chmod +x /usr/local/bin/kubectl
COPY --from=0 /go/src/github.com/grafeas/kritis/out/${stage} /${stage}
| # Copyright 2018 Google, Inc. All rights reserved.
#
# 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 golang:1.10
WORKDIR /go/src/github.com/grafeas/kritis
COPY . .
ARG stage
RUN make ${stage}
FROM golang:1.10
RUN go get -u github.com/cloudflare/cfssl/cmd/...
ENV KUBECTL_VERSION v1.10.0
RUN curl -Lo /usr/local/bin/kubectl https://storage.googleapis.com/kubernetes-release/release/${KUBECTL_VERSION}/bin/linux/amd64/kubectl && \
chmod +x /usr/local/bin/kubectl
COPY --from=0 /go/src/github.com/grafeas/kritis/out/${stage} /${stage}
# Copy artifacts to the image.
COPY --from=0 /go/src/github.com/grafeas/kritis/artifacts /${stage}/artifacts
| maintenance/other |
216 | 3477297f1be0d05a99375e19562f11076d7b521e | Add php5-gd | Add php5-gd
| FROM debian:jessie
MAINTAINER andre487 "[email protected]"
RUN apt-get update \
&& apt-get install -y apache2 libapache2-mod-php5 php5-mysql \
&& apt-get clean \
&& ls /etc/apache2/sites-enabled | xargs -I % rm /etc/apache2/sites-enabled/% \
&& ln -s /etc/apache2/mods-available/rewrite.load /etc/apache2/mods-enabled/rewrite.load
COPY provision/apache2.conf /etc/apache2/apache2.conf
COPY provision/php.ini /etc/php5/apache2/php.ini
COPY provision/start.sh /etc/container/start.sh
CMD /etc/container/start.sh
| FROM debian:jessie
MAINTAINER andre487 "[email protected]"
RUN apt-get update \
&& apt-get install -y apache2 libapache2-mod-php5 php5-mysql php5-gd \
&& apt-get clean \
&& ls /etc/apache2/sites-enabled | xargs -I % rm /etc/apache2/sites-enabled/% \
&& ln -s /etc/apache2/mods-available/rewrite.load /etc/apache2/mods-enabled/rewrite.load
COPY provision/apache2.conf /etc/apache2/apache2.conf
COPY provision/php.ini /etc/php5/apache2/php.ini
COPY provision/start.sh /etc/container/start.sh
CMD /etc/container/start.sh
| maintenance/other |
327 | 8c03fd358e7778f53f2c1dbf799375d8f910648f | Bumped source to 20200825-f08d0e6 | Bumped source to 20200825-f08d0e6
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20200825-abacbe0
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:20200825-f08d0e6
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| Not enough inforamtion |
2299 | 0f0733251e9fbd5f036fc9ad0fd44dcd0d1d5a00 | Bumped source to 20201008-5d66ffe | Bumped source to 20201008-5d66ffe
| FROM docker.pkg.github.com/dock0/service/service:20201008-308ecf2
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 |
86 | 95713ddc77c8a343930418f86ec8f2c4a3b65474 | update dockerfile | update dockerfile
| FROM node:7.10
MAINTAINER brook.shi [email protected]
RUN apt-get update
# code folder
RUN mkdir -p /usr/src
WORKDIR /usr/src
RUN git clone -b release https://github.com/brookshi/Hitchhiker.git
WORKDIR /usr/src/Hitchhiker
# npm install -g
RUN npm install -g pm2 yarn gulp-cli [email protected]
RUN npm install gulp -D
# npm install
RUN npm install
RUN cd client && npm install
# gulp build
RUN gulp release --host localhost --port 8080
WORKDIR /usr/src/Hitchhiker/build
# start mail
EXPOSE 8080
CMD ["pm2-docker", "index.js"]
| FROM node:7.10
MAINTAINER brook.shi [email protected]
RUN apt-get update
# code folder
RUN mkdir -p /usr/src
WORKDIR /usr/src
RUN git clone -b release https://github.com/brookshi/Hitchhiker.git
WORKDIR /usr/src/Hitchhiker
# npm install -g
RUN npm install -g pm2 yarn gulp-cli [email protected]
RUN npm install gulp -D
# npm install
RUN npm install
RUN cd client && npm install
# gulp build
RUN gulp release --prod
WORKDIR /usr/src/Hitchhiker/build
# start mail
EXPOSE 8080
CMD ["pm2-docker", "index.js"]
| maintenance/other |
2256 | 39de6e828d6aa195557a2f9f3f242c8065d3eaec | Bumped source to 20200805-7f8d536 | Bumped source to 20200805-7f8d536
| FROM docker.pkg.github.com/dock0/arch/arch:20200805-2a47823
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 |
2084 | ac4c11f18217213eed8ac502a7a57740ebda5a93 | Bumped source to 20220926-e20f1bd | Bumped source to 20220926-e20f1bd
| FROM ghcr.io/dock0/arch:20220926-87d3d9c
MAINTAINER akerl <[email protected]>
RUN pacman -S --needed --noconfirm base-devel vim-minimal tree
ENV EDITOR vim
WORKDIR /opt/build
CMD ["make", "local"]
| null | feature addition |
2091 | 06148bd09222645c2996f50094d76aeeb9ed4556 | Update to 0.6.1 | Update to 0.6.1
| FROM debian:jessie
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
&& rm -rf /var/lib/apt/lists/*
ENV JULIA_PATH /usr/local/julia
# https://julialang.org/juliareleases.asc
# Julia (Binary signing key) <[email protected]>
ENV JULIA_GPG 3673DF529D9049477F76B37566E3C7DC03D6E495
# https://julialang.org/downloads/
ENV JULIA_VERSION 0.6.0
RUN set -ex; \
\
# https://julialang.org/downloads/#julia-command-line-version
# https://julialang-s3.julialang.org/bin/checksums/julia-0.6.0.sha256
# this "case" statement is generated via "update.sh"
dpkgArch="$(dpkg --print-architecture)"; \
case "${dpkgArch##*-}" in \
amd64) tarArch='x86_64'; dirArch='x64'; sha256='3a27ea78b06f46701dc4274820d9853789db205bce56afdc7147f7bd6fa83e41' ;; \
armhf) tarArch='arm'; dirArch='arm'; sha256='7515f5977b2aac0cea1333ef249b3983928dee76ea8eb3de9dd6a7cdfbd07d2d' ;; \
i386) tarArch='i686'; dirArch='x86'; sha256='bfebd2ef38c25ce72dd6661cdd8a6f509800492a4d250c2908f83e791c0a444a' ;; \
*) echo >&2 "error: current architecture ($dpkgArch) does not have a corresponding Julia binary release"; exit 1 ;; \
esac; \
\
curl -fL -o julia.tar.gz "https://julialang-s3.julialang.org/bin/linux/${dirArch}/${JULIA_VERSION%[.-]*}/julia-${JULIA_VERSION}-linux-${tarArch}.tar.gz"; \
curl -fL -o julia.tar.gz.asc "https://julialang-s3.julialang.org/bin/linux/${dirArch}/${JULIA_VERSION%[.-]*}/julia-${JULIA_VERSION}-linux-${tarArch}.tar.gz.asc"; \
\
echo "${sha256} *julia.tar.gz" | sha256sum -c -; \
\
export GNUPGHOME="$(mktemp -d)"; \
gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$JULIA_GPG"; \
gpg --batch --verify julia.tar.gz.asc julia.tar.gz; \
rm -rf "$GNUPGHOME" julia.tar.gz.asc; \
\
mkdir "$JULIA_PATH"; \
tar -xzf julia.tar.gz -C "$JULIA_PATH" --strip-components 1; \
rm julia.tar.gz
ENV PATH $JULIA_PATH/bin:$PATH
CMD ["julia"]
| null | maintenance/other |
2316 | 960731d2310ae977774a63341511d364cffded44 | Add webroot to the Docker image | Add webroot to the Docker image
| FROM alpine
ADD ./sitemapper /
RUN apk update
RUN apk add ca-certificates
RUN rm -rf /var/cache/apk/*
ENTRYPOINT ["/sitemapper"]
| null | bug fix |
112 | d10ebf249255af19aa93272bb149d6f69ff21d24 | Bumped source to 20210106-4b14d9b | Bumped source to 20210106-4b14d9b
| FROM docker.pkg.github.com/dock0/arch/arch:20210106-4a182dc
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:20210106-4b14d9b
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 |
16 | 8450ae8697e2dff4f659c4859d2f01e05e9c07ef | fix(docker): remove hydrogen user | fix(docker): remove hydrogen user
| # Lightweight (45MB) and Happy Home on debian.
# More tags: //hub.docker.com/_/debian/
FROM debian:stretch
# What am I? Who will I become?
ARG USERNAME=hydrogen
ENV HOME=/home/$USERNAME
# Invincibility Boost.
RUN echo 'APT::Get::Assume-Yes "true";' >> /etc/apt/apt.conf \
&& apt-get update \
&& apt-get install sudo \
&& useradd -m -s /bin/bash $USERNAME \
&& echo "$USERNAME ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers.d/$USERNAME \
&& chmod 0440 /etc/sudoers.d/$USERNAME
# Install the base system dependencies.
# (make language-specific envs later)
#
# NOTE: docker libraries are still required
# even though the daemon must also be
# hosted outside the container start
COPY . $HOME/.dots
RUN cd $HOME/.dots \
&& ./install/deb/base.sh \
&& ./setup.sh
# As root, need to change ownership of copied files.
RUN chown -R $USERNAME:$USERNAME $HOME
USER $USERNAME
ENV USER=$USERNAME
WORKDIR $HOME
# Install, and allow ourselves to run, docker
# NOTE: docker.sh fails to add us to the docker
# group because $USER is `root` behind sudo
RUN sudo ./.dots/install/deb/docker.sh \
&& sudo usermod -aG docker $USERNAME
# Configure how to run the image in a container.
VOLUME [ $HOME ]
ENTRYPOINT [ "/bin/bash" ]
CMD [ "--login" ]
# Example execution to enable editing code on host:
# docker run --rm -it \
# -v $PWD:/home/$USERNAME:rw \
# $IMAGE
| # Lightweight (45MB) and Happy Home on debian.
# More tags: //hub.docker.com/_/debian/
FROM debian:stretch
# The docker user seems like a good choice here
ARG USERNAME=docker
ENV HOME=/home/$USERNAME
# Invincibility Boost.
RUN echo 'APT::Get::Assume-Yes "true";' >> /etc/apt/apt.conf \
&& apt-get update \
&& apt-get install sudo \
&& useradd -m -s /bin/bash $USERNAME \
&& echo "$USERNAME ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers.d/$USERNAME \
&& chmod 0440 /etc/sudoers.d/$USERNAME
# Install the base system dependencies.
# (make language-specific envs later)
#
# NOTE: docker libraries are still required
# even though the daemon must also be
# hosted outside the container start
COPY . $HOME/.dots
RUN cd $HOME/.dots \
&& ./install/deb/base.sh \
&& ./setup.sh
# As root, need to change ownership of copied files.
RUN chown -R $USERNAME:$USERNAME $HOME
USER $USERNAME
ENV USER=$USERNAME
WORKDIR $HOME
# Install, and allow ourselves to run, docker
# NOTE: docker.sh fails to add us to the docker
# group because $USER is `root` behind sudo
RUN sudo ./.dots/install/deb/docker.sh \
&& sudo usermod -aG docker $USERNAME
# Configure how to run the image in a container.
VOLUME [ $HOME ]
ENTRYPOINT [ "/bin/bash" ]
CMD [ "--login" ]
# Example execution to enable editing code on host:
# docker run --rm -it \
# -v $PWD:/home/$USERNAME:rw \
# $IMAGE
| feature addition |
22 | 0501ba0e69271e2da3043bfc146e71454c3c271b | Bumped source to 20200525-e38fbcf | Bumped source to 20200525-e38fbcf
| FROM docker.pkg.github.com/dock0/service/service:20200525-d6f80e4
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:20200525-e38fbcf
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"
| bug fix |
413 | 6210e825a70b85ab48c07d699231cd995204b445 | Upgrade the container to F23 | Upgrade the container to F23
- use dnf
- add missing package
| FROM fedora:22
MAINTAINER [email protected]
WORKDIR /tmp
RUN yum install -y tar libcurl-devel zlib-devel patch rubygem-bundler ruby-devel git make gcc gcc-c++ && yum clean all
ADD config.rb /tmp/config.rb
#ADD data /tmp/data
ADD Gemfile /tmp/Gemfile
ADD Gemfile.lock /tmp/Gemfile.lock
ADD lib /tmp/lib
#ADD source /tmp/source
RUN bundle install
EXPOSE 4567
ENTRYPOINT [ "bundle", "exec" ]
CMD [ "middleman", "server" ]
| FROM fedora:23
MAINTAINER [email protected]
WORKDIR /tmp
RUN dnf install -y tar libcurl-devel zlib-devel patch rubygem-bundler ruby-devel git make gcc gcc-c++ redhat-rpm-config && dnf clean all
ADD config.rb /tmp/config.rb
#ADD data /tmp/data
ADD Gemfile /tmp/Gemfile
ADD Gemfile.lock /tmp/Gemfile.lock
ADD lib /tmp/lib
#ADD source /tmp/source
RUN bundle install
EXPOSE 4567
ENTRYPOINT [ "bundle", "exec" ]
CMD [ "middleman", "server" ]
| bug fix |
2302 | bd803405dc09ef77e2a6ddd571c7d4ccaa8909ef | dockerhub debugging | dockerhub debugging
| # Docker file inspired by
## https://github.com/docker-library/buildpack-deps/blob/a0a59c61102e8b079d568db69368fb89421f75f2/sid/curl/Dockerfile
## https://github.com/jenkinsci/docker
## https://github.com/docker-library/java/blob/b4a3c296023e590e410f645ab83d3c11a30cf535/openjdk-8-jdk/Dockerfile
## https://github.com/zulu-openjdk/zulu-openjdk/blob/master/debian/8u45-8.7.0.5/Dockerfile
## https://github.com/zulu-openjdk/zulu-openjdk/blob/master/debian/8u66-8.11.0.1/Dockerfile
FROM debian:sid
MAINTAINER [email protected]
RUN echo "export TERM=xtermc" >> ~/.bashrc
# use norwegian debian mirror to speed up downloads
#RUN echo "deb http://ftp.no.debian.org/debian/ sid main" > /etc/apt/sources.list
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates curl wget zip unzip bzip2 vim less procps \
&& rm -rf /var/lib/apt/lists/*
RUN echo "alias ll='ls -l --color=auto'" >> /etc/bash.bashrc
RUN echo "alias la='ls -la --color=auto'" >> /etc/bash.bashrc
ENV LANG C.UTF-8
### Install JDK
# see https://bugs.debian.org/775775
# and https://github.com/docker-library/java/issues/19#issuecomment-70546872
ENV CA_CERTIFICATES_JAVA_VERSION 20140324
# Pull Zulu OpenJDK binaries from official repository:
# Jenkins Docker image has a reference to /usr/lib/jvm/zulu-8-amd64/ in config.xml. Review if changing to different jdk.
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 0x219BD9C9
RUN echo "deb http://repos.azulsystems.com/debian stable main" >> /etc/apt/sources.list.d/zulu.list
# RUN apt-get -qq update && apt-get -y install zulu-8=8.11.0.1 ca-certificates-java="$CA_CERTIFICATES_JAVA_VERSION" && rm -rf /var/lib/apt/lists/*
RUN apt-get -qq update
RUN apt-get -y install zulu-8=8.13.0.5
#ca-certificates-java="$CA_CERTIFICATES_JAVA_VERSION"
RUN rm -rf /var/lib/apt/lists/*
# see CA_CERTIFICATES_JAVA_VERSION notes above
RUN /var/lib/dpkg/info/ca-certificates-java.postinst configure
| null | maintenance/other |
2206 | ddde3d570a242f9dacce38df1c2a456bd9b871d5 | Fix build -- take 2 | Fix build -- take 2
| FROM delitescere/jdk:8
MAINTAINER Chris Phillipson <[email protected]>
ENV MAVEN_VERSION="3.3.9" \
M2_HOME=/usr/lib/mvn
RUN apk add --update wget && \
cd /tmp && \
wget "http://ftp.unicamp.br/pub/apache/maven/maven-3/$MAVEN_VERSION/binaries/apache-maven-$MAVEN_VERSION-bin.tar.gz" && \
tar -zxvf "apache-maven-$MAVEN_VERSION-bin.tar.gz" && \
mv "apache-maven-$MAVEN_VERSION" "$M2_HOME" && \
ln -s "$M2_HOME/bin/mvn" /usr/bin/mvn && \
apk del wget && \
rm /tmp/* /var/cache/apk/* | null | maintenance/other |
88 | a59687b3c276eb7972fc3a71539770760894da10 | x264: update to snapshot-20160114-2245-stable | x264: update to snapshot-20160114-2245-stable
| FROM sameersbn/ubuntu:14.04.20160115
MAINTAINER [email protected]
ENV FFMPEG_VERSION=2.8.3 \
X264_VERSION=snapshot-20151212-2245-stable
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y bzip2 libgnutlsxx27 libogg0 libjpeg8 libpng12-0 \
libvpx1 libtheora0 libxvidcore4 libmpeg2-4 \
libvorbis0a libfaad2 libmp3lame0 libmpg123-0 libmad0 libopus0 libvo-aacenc0 \
&& rm -rf /var/lib/apt/lists/*
COPY install.sh /var/cache/ffmpeg/install.sh
RUN bash /var/cache/ffmpeg/install.sh
ENTRYPOINT ["/usr/bin/ffmpeg"]
CMD ["--help"]
| FROM sameersbn/ubuntu:14.04.20160115
MAINTAINER [email protected]
ENV FFMPEG_VERSION=2.8.3 \
X264_VERSION=snapshot-20160114-2245-stable
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y bzip2 libgnutlsxx27 libogg0 libjpeg8 libpng12-0 \
libvpx1 libtheora0 libxvidcore4 libmpeg2-4 \
libvorbis0a libfaad2 libmp3lame0 libmpg123-0 libmad0 libopus0 libvo-aacenc0 \
&& rm -rf /var/lib/apt/lists/*
COPY install.sh /var/cache/ffmpeg/install.sh
RUN bash /var/cache/ffmpeg/install.sh
ENTRYPOINT ["/usr/bin/ffmpeg"]
CMD ["--help"]
| feature addition |
375 | 82def769619cac9870bb28f7b6d41449f9f7c4b6 | Bumped source to 20210129-d252f6a | Bumped source to 20210129-d252f6a
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20210129-1bd3a7a
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:20210129-d252f6a
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| maintenance/other |
2205 | 81874bb6dfc045623caac4fef871395a2634e26e | add more deps | add more deps
Signed-off-by: Jess Frazelle <[email protected]>
| FROM debian:buster
LABEL maintainer "Jessie Frazelle <[email protected]>"
ENV DEBIAN_FRONTEND noninteractive
RUN dpkg --add-architecture i386 \
&& apt-get update && apt-get install -y \
automake \
bc \
binutils-dev \
bison \
bsdtar \
build-essential \
bzip2 \
ca-certificates \
cpio \
fakeroot \
flex \
gawk \
gcc \
git \
gzip \
hdparm \
iperf \
kmod \
libaudit-dev \
libc6-dev \
libc6-dev:i386 \
libdw-dev \
libiberty-dev \
libklibc-dev \
liblzma-dev \
libnuma-dev \
libtool \
libunwind-dev \
linux-libc-dev \
linux-libc-dev:i386 \
linux-perf \
make \
nfs-common \
openssl \
patch \
perl \
procps \
psmisc \
rsync \
rt-tests \
ruby \
ruby-dev \
sysstat \
time \
wget \
zlib1g-dev \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& ln -snf /usr/bin/perf_4.9 /usr/bin/perf
ENV KERNEL_VERSION v4.13
ENV LKP_GIT_WORK_TREE /usr/src/linux
RUN git clone -b "${KERNEL_VERSION}" https://kernel.googlesource.com/pub/scm/linux/kernel/git/torvalds/linux.git "${LKP_GIT_WORK_TREE}"
ENV LKP_SRC /usr/src/lkp-tests
RUNgit clone https://github.com/fengguang/lkp-tests.git "${LKP_SRC}"
WORKDIR /usr/src/lkp-tests
RUN make install \
&& lkp install
# Create the lkp user and group
RUN groupadd --gid 1090 lkp
RUN useradd --uid 1090 --gid 1090 lkp
COPY runbench /usr/local/bin/runbench
CMD [ "lkp" ]
| null | feature addition |
311 | 562c8c3d9a1dc8ddf4107a465771a6daf0451b7a | resolved merge conflict | resolved merge conflict
| FROM kaggle/python3:latest
# Scikit-Learn nightly build
RUN cd /usr/local/src && git clone https://github.com/scikit-learn/scikit-learn.git && \
cd scikit-learn && python setup.py build && python setup.py install && \
# HDF5 support
conda install h5py && \
# https://github.com/biopython/biopython
pip install biopython && \
# clean up
rm -rf /usr/local/src/* && \
conda clean -i -l -t -y && \
rm -rf /root/.cache/pip/*
###########
#
# NEW CONTRIBUTORS:
# Please add new pip/apt installs in this block. Don't forget a "&& \" at the end
# of all non-final lines. Thanks!
#
###########
RUN pip install --upgrade mpld3 && \
pip install mplleaflet && \
pip install gpxpy && \
pip install arrow && \
pip install sexmachine && \
pip install Geohash && \
pip install deap && \
pip install tpot && \
pip install haversine && \
pip install toolz cytoolz && \
pip install sacred && \
pip install plotly && \
pip install git+https://github.com/nicta/dora.git && \
pip install git+https://github.com/hyperopt/hyperopt.git && \
# tflean. Deep learning library featuring a higher-level API for TensorFlow. http://tflearn.org
pip install git+https://github.com/tflearn/tflearn.git && \
pip install fitter && \
pip install langid && \
# Delorean. Useful for dealing with datetime
pip install delorean && \
pip install trueskill && \
pip install heamy && \
pip install vida && \
# clean up pip cache
rm -rf /root/.cache/pip/*
| FROM kaggle/python3:latest
# Scikit-Learn nightly build
RUN cd /usr/local/src && git clone https://github.com/scikit-learn/scikit-learn.git && \
cd scikit-learn && python setup.py build && python setup.py install && \
# HDF5 support
conda install h5py && \
# https://github.com/biopython/biopython
pip install biopython && \
# clean up
rm -rf /usr/local/src/* && \
conda clean -i -l -t -y && \
rm -rf /root/.cache/pip/*
###########
#
# NEW CONTRIBUTORS:
# Please add new pip/apt installs in this block. Don't forget a "&& \" at the end
# of all non-final lines. Thanks!
#
###########
RUN pip install --upgrade mpld3 && \
pip install mplleaflet && \
pip install gpxpy && \
pip install arrow && \
pip install sexmachine && \
pip install Geohash && \
pip install deap && \
pip install tpot && \
pip install haversine && \
pip install toolz cytoolz && \
pip install sacred && \
pip install plotly && \
pip install git+https://github.com/nicta/dora.git && \
pip install git+https://github.com/hyperopt/hyperopt.git && \
# tflean. Deep learning library featuring a higher-level API for TensorFlow. http://tflearn.org
pip install git+https://github.com/tflearn/tflearn.git && \
pip install fitter && \
pip install langid && \
# Delorean. Useful for dealing with datetime
pip install delorean && \
pip install trueskill && \
pip install heamy && \
pip install vida && \
# Useful data exploration libraries (for missing data and generating reports)
pip install missingno && \
pip install pandas-profiling && \
pip install s2sphere && \
# clean up pip cache
rm -rf /root/.cache/pip/*
| maintenance/other |
45 | f6dab76616eb035ed522e1157c38c1187c0917a9 | tasks: Add python styling packages to test cockpit-project/bots | tasks: Add python styling packages to test cockpit-project/bots
Closes #293 | FROM fedora:30
LABEL maintainer='[email protected]'
RUN dnf -y update && \
dnf -y install \
'dnf-command(builddep)' \
american-fuzzy-lop \
chromium-headless \
curl \
expect \
gcc \
gcc-c++ \
git \
gnupg \
jq \
libappstream-glib \
libvirt-daemon-kvm \
libvirt-client \
libvirt-python3 \
make \
nc \
net-tools \
npm \
openssl \
origin-clients \
psmisc \
procps-ng \
python \
python3 \
python3-pika \
rpm-build \
rpmdevtools \
sed \
tar \
virt-install \
wget \
zanata-client && \
curl -s -o /tmp/cockpit.spec https://raw.githubusercontent.com/cockpit-project/cockpit/master/tools/cockpit.spec && \
sed -i 's/%{npm-version:.*}/0/' /tmp/cockpit.spec && \
dnf -y builddep /tmp/cockpit.spec && \
dnf clean all
COPY cockpit-tasks install-service webhook github_handler.py /usr/local/bin/
RUN groupadd -g 1111 -r user && useradd -r -g user -u 1111 user && \
mkdir -p /home/user/.ssh && mkdir -p /usr/local/bin && \
mkdir -p /build /secrets /cache/images /cache/github /build/libvirt/qemu && \
printf '[user]\n\t\nemail = [email protected]\n\tname = Cockpituous\n' >/home/user/.gitconfig && \
ln -s /cache/images /build/images && \
ln -s /cache/images /build/virt-builder && \
ln -s /cache/github /build/github && \
ln -s /tmp /build/tmp && \
mkdir -p /home/user/.config /home/user/.ssh /home/user/.rhel && \
ln -snf /secrets/ssh-config /home/user/.ssh/config && \
ln -snf /secrets/image-stores /home/user/.config/image-stores && \
ln -snf /secrets/codecov-token /home/user/.config/codecov-token && \
ln -snf /secrets/rhel-login /home/user/.rhel/login && \
ln -snf /secrets/rhel-password /home/user/.rhel/pass && \
ln -snf /secrets/zanata.ini /home/user/.config/zanata.ini && \
ln -snf /secrets/lorax-test-env.sh /home/user/.config/lorax-test-env && \
ln -snf /run/secrets/webhook/.config--github-token /home/user/.config/github-token && \
chmod g=u /etc/passwd && \
chmod -R ugo+w /build /secrets /cache /home/user
# Prevent us from screwing around with KVM settings in the container
RUN touch /etc/modprobe.d/kvm-amd.conf && touch /etc/modprobe.d/kvm-intel.conf
ENV LANG=C.UTF-8 \
LIBGUESTFS_BACKEND=direct \
XDG_CACHE_HOME=/build \
HOME=/home/user \
TMPDIR=/tmp \
TEMPDIR=/tmp \
TEST_DATA=/build \
TEST_PUBLISH=
VOLUME /cache
USER user
WORKDIR /build
CMD ["/usr/local/bin/cockpit-tasks", "--publish", "$TEST_PUBLISH", "--verbose"]
# We execute the script in the host, but it doesn't exist on the host. So pipe it in
LABEL INSTALL /usr/bin/docker run -ti --rm --privileged --volume=/:/host:rw --user=root IMAGE /bin/bash -c \"/usr/sbin/chroot /host /bin/sh -s < /usr/local/bin/install-service\"
# Run a simple interactive instance of the tests container
LABEL RUN /usr/bin/docker run -ti --rm --privileged --uts=host --volume=/var/lib/cockpit-secrets/tasks:/secrets:ro --volume=/var/cache/cockpit-tests:/cache:rw IMAGE /bin/bash -i
| FROM fedora:30
LABEL maintainer='[email protected]'
RUN dnf -y update && \
dnf -y install \
'dnf-command(builddep)' \
american-fuzzy-lop \
chromium-headless \
curl \
expect \
gcc \
gcc-c++ \
git \
gnupg \
jq \
libappstream-glib \
libvirt-daemon-kvm \
libvirt-client \
libvirt-python3 \
make \
nc \
net-tools \
npm \
openssl \
origin-clients \
psmisc \
procps-ng \
python3-pyflakes \
python \
python3 \
python3-pycodestyle \
python3-pika \
rpm-build \
rpmdevtools \
sed \
tar \
virt-install \
wget \
zanata-client && \
curl -s -o /tmp/cockpit.spec https://raw.githubusercontent.com/cockpit-project/cockpit/master/tools/cockpit.spec && \
sed -i 's/%{npm-version:.*}/0/' /tmp/cockpit.spec && \
dnf -y builddep /tmp/cockpit.spec && \
dnf clean all
COPY cockpit-tasks install-service webhook github_handler.py /usr/local/bin/
RUN groupadd -g 1111 -r user && useradd -r -g user -u 1111 user && \
mkdir -p /home/user/.ssh && mkdir -p /usr/local/bin && \
mkdir -p /build /secrets /cache/images /cache/github /build/libvirt/qemu && \
printf '[user]\n\t\nemail = [email protected]\n\tname = Cockpituous\n' >/home/user/.gitconfig && \
ln -s /cache/images /build/images && \
ln -s /cache/images /build/virt-builder && \
ln -s /cache/github /build/github && \
ln -s /tmp /build/tmp && \
mkdir -p /home/user/.config /home/user/.ssh /home/user/.rhel && \
ln -snf /secrets/ssh-config /home/user/.ssh/config && \
ln -snf /secrets/image-stores /home/user/.config/image-stores && \
ln -snf /secrets/codecov-token /home/user/.config/codecov-token && \
ln -snf /secrets/rhel-login /home/user/.rhel/login && \
ln -snf /secrets/rhel-password /home/user/.rhel/pass && \
ln -snf /secrets/zanata.ini /home/user/.config/zanata.ini && \
ln -snf /secrets/lorax-test-env.sh /home/user/.config/lorax-test-env && \
ln -snf /run/secrets/webhook/.config--github-token /home/user/.config/github-token && \
chmod g=u /etc/passwd && \
chmod -R ugo+w /build /secrets /cache /home/user
# Prevent us from screwing around with KVM settings in the container
RUN touch /etc/modprobe.d/kvm-amd.conf && touch /etc/modprobe.d/kvm-intel.conf
ENV LANG=C.UTF-8 \
LIBGUESTFS_BACKEND=direct \
XDG_CACHE_HOME=/build \
HOME=/home/user \
TMPDIR=/tmp \
TEMPDIR=/tmp \
TEST_DATA=/build \
TEST_PUBLISH=
VOLUME /cache
USER user
WORKDIR /build
CMD ["/usr/local/bin/cockpit-tasks", "--publish", "$TEST_PUBLISH", "--verbose"]
# We execute the script in the host, but it doesn't exist on the host. So pipe it in
LABEL INSTALL /usr/bin/docker run -ti --rm --privileged --volume=/:/host:rw --user=root IMAGE /bin/bash -c \"/usr/sbin/chroot /host /bin/sh -s < /usr/local/bin/install-service\"
# Run a simple interactive instance of the tests container
LABEL RUN /usr/bin/docker run -ti --rm --privileged --uts=host --volume=/var/lib/cockpit-secrets/tasks:/secrets:ro --volume=/var/cache/cockpit-tests:/cache:rw IMAGE /bin/bash -i
| code refactoring |
217 | 19ec9dd49b5c06b2fe82ace3a03fe4ab5a7e8860 | version 1.64 | version 1.64
| FROM jarischaefer/baseimage-librenms:2.9
ENVLIBRENMS_VERSION=1.63 \
LIBRENMS_WEATHERMAP_VERSION=2b9e0f2e7df80b1e5eb75a1470bc657325cbb381 \
TZ=UTC \
RRDCACHED_LISTEN=unix:/var/run/rrdcached/rrdcached.sock \
RRDCACHED_CONNECT=unix:/var/run/rrdcached/rrdcached.sock \
SNMP_SCAN_CRON="0 0 * * *" \
WEATHERMAP_CRON="*/5 * * * *" \
POLLERS=8 \
POLLERS_CRON="*/5 * * * *"
EXPOSE 80 443
RUNgit clone --branch ${LIBRENMS_VERSION} https://github.com/librenms/librenms.git /opt/librenms && \
composer global require hirak/prestissimo && \
composer --no-interaction install --working-dir=/opt/librenms --no-dev --prefer-dist && \
composer global remove hirak/prestissimo && \
composer clear-cache && \
curl -qsSL https://github.com/librenms-plugins/Weathermap/archive/${LIBRENMS_WEATHERMAP_VERSION}.tar.gz | tar -xz -C /opt/librenms/html/plugins && \
mv /opt/librenms/html/plugins/Weathermap-${LIBRENMS_WEATHERMAP_VERSION} /opt/librenms/html/plugins/Weathermap && \
cp /opt/librenms/.env.example /opt/librenms/.env && \
chown -R librenms:librenms /opt/librenms && \
find /opt/librenms -name '.gitignore' -type f -exec chmod -x "{}" + && \
mkdir -p /opt/helpers/default_files/logs /opt/helpers/default_files/rrd && \
cp /opt/librenms/logs/.gitignore /opt/helpers/default_files/logs && \
cp /opt/librenms/rrd/.gitignore /opt/helpers/default_files/rrd
ADD files /
RUNchmod -R +x /etc/my_init.d /etc/service /usr/local/bin && \
find /opt/librenms \( ! -user librenms -o ! -group librenms \) -exec chown librenms:librenms {} \; && \
chmod 644 /etc/cron.d/* /etc/librenms/cron/*
VOLUME ["/opt/librenms/logs", "/opt/librenms/rrd", "/opt/librenms/storage"]
VOLUME ["/opt/librenms/html/plugins/Weathermap/configs", "/opt/librenms/html/plugins/Weathermap/output"]
VOLUME ["/etc/nginx/ssl", "/var/log/nginx"]
| FROM jarischaefer/baseimage-librenms:2.9
ENVLIBRENMS_VERSION=1.64 \
LIBRENMS_WEATHERMAP_VERSION=2b9e0f2e7df80b1e5eb75a1470bc657325cbb381 \
TZ=UTC \
RRDCACHED_LISTEN=unix:/var/run/rrdcached/rrdcached.sock \
RRDCACHED_CONNECT=unix:/var/run/rrdcached/rrdcached.sock \
SNMP_SCAN_CRON="0 0 * * *" \
WEATHERMAP_CRON="*/5 * * * *" \
POLLERS=8 \
POLLERS_CRON="*/5 * * * *"
EXPOSE 80 443
RUNgit clone --branch ${LIBRENMS_VERSION} https://github.com/librenms/librenms.git /opt/librenms && \
composer global require hirak/prestissimo && \
composer --no-interaction install --working-dir=/opt/librenms --no-dev --prefer-dist && \
composer global remove hirak/prestissimo && \
composer clear-cache && \
curl -qsSL https://github.com/librenms-plugins/Weathermap/archive/${LIBRENMS_WEATHERMAP_VERSION}.tar.gz | tar -xz -C /opt/librenms/html/plugins && \
mv /opt/librenms/html/plugins/Weathermap-${LIBRENMS_WEATHERMAP_VERSION} /opt/librenms/html/plugins/Weathermap && \
cp /opt/librenms/.env.example /opt/librenms/.env && \
chown -R librenms:librenms /opt/librenms && \
find /opt/librenms -name '.gitignore' -type f -exec chmod -x "{}" + && \
mkdir -p /opt/helpers/default_files/logs /opt/helpers/default_files/rrd && \
cp /opt/librenms/logs/.gitignore /opt/helpers/default_files/logs && \
cp /opt/librenms/rrd/.gitignore /opt/helpers/default_files/rrd
ADD files /
RUNchmod -R +x /etc/my_init.d /etc/service /usr/local/bin && \
find /opt/librenms \( ! -user librenms -o ! -group librenms \) -exec chown librenms:librenms {} \; && \
chmod 644 /etc/cron.d/* /etc/librenms/cron/*
VOLUME ["/opt/librenms/logs", "/opt/librenms/rrd", "/opt/librenms/storage"]
VOLUME ["/opt/librenms/html/plugins/Weathermap/configs", "/opt/librenms/html/plugins/Weathermap/output"]
VOLUME ["/etc/nginx/ssl", "/var/log/nginx"]
| code refactoring |
2250 | c529594e6c3f5e7a8e75cc1552eeba17e81b4513 | :arrow_up: Bump golang from 1.18.5 to 1.19.0 | :arrow_up: Bump golang from 1.18.5 to 1.19.0
Bumps golang from 1.18.5 to 1.19.0.
---
updated-dependencies:
- dependency-name: golang
dependency-type: direct:production
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <[email protected]> | FROM alpine:3.16.1 as alpinejq
ARG JETBRAINS_USERNAME
ARG JETBRAINS_PASSWORD
RUN apk add --no-cache jq
FROM alpinejq as startupTest
ARG JETBRAINS_USERNAME
ARG JETBRAINS_PASSWORD
ENV USER_HOME /home/jetbrains
ADD entrypoint.sh entrypoint_test.sh ${USER_HOME}/
ADD mock.sh ${USER_HOME}/license-server/bin/license-server.sh
ADD mock.sh ${USER_HOME}/register.sh
RUN chmod +x ${USER_HOME}/license-server/bin/license-server.sh \
&& chmod +x ${USER_HOME}/register.sh \
&& ${USER_HOME}/entrypoint_test.sh
FROM alpine:3.16.1 as registerTest
ARG JETBRAINS_USERNAME
ARG JETBRAINS_PASSWORD
ENV USER_HOME /home/jetbrains
ADD register.sh register_test.sh ${USER_HOME}/
ADD mock.sh ${USER_HOME}/register
RUN chmod +x ${USER_HOME}/register \
&& ${USER_HOME}/register_test.sh
FROM golang:1.18.5 as build
ARG JETBRAINS_USERNAME
ARG JETBRAINS_PASSWORD
WORKDIR /cf-jetbrains-license-server
ADD register.go register_test.go go.mod go.sum ./
ADD testdata/* ./testdata/
ENV GOOS=linux GOARCH=amd64 CGO_ENABLED=0
RUN go test -v \
&& go build register.go \
&& chmod +x register
FROM openjdk:19-alpine3.15 as runtime
ARG JETBRAINS_USERNAME
ARG JETBRAINS_PASSWORD
ENV USER_HOME /home/jetbrains
COPY --from=build /cf-jetbrains-license-server/register ${USER_HOME}/
ENV PATH=$PATH:/opt/jdk/bin
ADD entrypoint.sh register.sh ${USER_HOME}/
RUN apk update && apk upgrade && \
apk add --no-cache \
ca-certificates \
wget \
openssl \
jq \
&& adduser -S -D jetbrains \
&& wget -q https://download.jetbrains.com/lcsrv/license-server-installer.zip \
&& mkdir -p ${USER_HOME}/license-server \
&& unzip -q license-server-installer.zip -d ${USER_HOME}/license-server \
&& chown -R jetbrains ${USER_HOME}/license-server \
&& rm -f license-server-installer.zip
USER jetbrains
EXPOSE 8111
WORKDIR $USER_HOME
ENTRYPOINT ["/bin/sh", "/home/jetbrains/entrypoint.sh"]
FROM runtime as integrationTest
ARG JETBRAINS_USERNAME
ARG JETBRAINS_PASSWORD
ENV VCAP_APPLICATION '{"application_uris":["localhost"]}'
ENV SERVER_NAME 'License Server'
ADD integration_test.sh /
RUN /integration_test.sh
FROM runtime
| null | maintenance/other |
243 | f23460ee71380d44911228c038cd1bcef8b14d7f | Updates the Docker image with latest dependencies | Updates the Docker image with latest dependencies
| ################################################################################
# Dockerfile to setup a CentOS / Fedora type docker image, suitable
# for building ATS, perhaps as part of a Jenkins CI. Note that some
# of the features in here are specific to the official ATS Jenkins
# setup, see comment below.
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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.
################################################################################
# These can (should?) be overridden from the command line with ----build-arg, e.g.
# docker build --build-arg OS_VERSION=7 --build-arg OS_TYPE=centos
#
ARG OS_VERSION=28
ARG OS_TYPE=fedora
# This does currently not work, e.g. this I'd expect to make it conditional:
#
# RUN if [ "${ADD_JENKINS}" = "yes" ]; then yum ...
#
ARG ADD_JENKINS=no
# Alright, lets pull in the base image from docker.io
FROM ${OS_TYPE}:${OS_VERSION}
################################################################################
# All the DNF / YUM packages necessary for building ATS. you do not need all
# these if you only intend to run ATS, see the .spec file for the required
#runtime packages.
# This runs all the yum installation, starting with a system level update
RUN yum -y update; \
# Compilers
yum -y install ccache make pkgconfig bison flex gcc-c++ clang \
# Autoconf
autoconf automake libtool \
# Various other tools
git rpm-build distcc-server file wget openssl hwloc; \
# Devel packages that ATS needs
yum -y install openssl-devel expat-devel pcre-devel libcap-devel hwloc-devel libunwind-devel \
xz-devel libcurl-devel ncurses-devel jemalloc-devel GeoIP-devel kyotocabinet-devel luajit-devel \
brotli-devel ImageMagick-devel ImageMagick-c++-devel \
perl-ExtUtils-MakeMaker perl-Digest-SHA perl-URI; \
# This is for autest stuff
yum -y install python3 python3-virtualenv python-virtualenv httpd-tools procps-ng nmap-ncat; \
# Optional: This is for the OpenSSH server, and Jenkins account + access (comment out if not needed)
yum -y install java openssh-server && ssh-keygen -A; rm -f /run/nologin; \
groupadd -g 665 jenkins && \
useradd -g jenkins -u 989 -s /bin/bash -M -d /home/jenkins -c "Jenkins Continuous Build server" jenkins && \
mkdir -p /var/jenkins && chown jenkins.jenkins /var/jenkins
# Check if devtoolset-7 is required
RUN if [ ! -z "$(grep -i centos /etc/redhat-release)" ]; then \
yum -y install centos-release-scl; \
yum -y install devtoolset-7 devtoolset-7-libasan-devel; \
fi
| ################################################################################
# Dockerfile to setup a CentOS / Fedora type docker image, suitable
# for building ATS, perhaps as part of a Jenkins CI. Note that some
# of the features in here are specific to the official ATS Jenkins
# setup, see comment below.
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you 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.
################################################################################
# These can (should?) be overridden from the command line with ----build-arg, e.g.
# docker build --build-arg OS_VERSION=7 --build-arg OS_TYPE=centos
#
ARG OS_VERSION=30
ARG OS_TYPE=fedora
# This does currently not work, e.g. this I'd expect to make it conditional:
#
# RUN if [ "${ADD_JENKINS}" = "yes" ]; then yum ...
#
ARG ADD_JENKINS=no
# Alright, lets pull in the base image from docker.io
FROM ${OS_TYPE}:${OS_VERSION}
################################################################################
# All the DNF / YUM packages necessary for building ATS. you do not need all
# these if you only intend to run ATS, see the .spec file for the required
#runtime packages.
# This runs all the yum installation, starting with a system level update
RUN yum -y update; \
# Compilers
yum -y install ccache make pkgconfig bison flex gcc-c++ clang \
# Autoconf
autoconf automake libtool \
# Various other tools
git rpm-build distcc-server file wget openssl hwloc; \
# Devel packages that ATS needs
yum -y install openssl-devel expat-devel pcre-devel libcap-devel hwloc-devel libunwind-devel \
xz-devel libcurl-devel ncurses-devel jemalloc-devel GeoIP-devel luajit-devel brotli-devel \
ImageMagick-devel ImageMagick-c++-devel hiredis-devel \
perl-ExtUtils-MakeMaker perl-Digest-SHA perl-URI; \
# This is for autest stuff
yum -y install python3 python3-virtualenv python-virtualenv httpd-tools procps-ng nmap-ncat; \
# Optional: This is for the OpenSSH server, and Jenkins account + access (comment out if not needed)
yum -y install java openssh-server && ssh-keygen -A; rm -f /run/nologin; \
groupadd -g 665 jenkins && \
useradd -g jenkins -u 989 -s /bin/bash -M -d /home/jenkins -c "Jenkins Continuous Build server" jenkins && \
mkdir -p /var/jenkins && chown jenkins.jenkins /var/jenkins
# Check if devtoolset-7 is required
RUN if [ ! -z "$(grep -i centos /etc/redhat-release)" ]; then \
yum -y install centos-release-scl; \
yum -y install devtoolset-7 devtoolset-7-libasan-devel; \
fi
| maintenance/other |
136 | 5a21ec18aa6168444b49d0fb2f686a36c7e5a66e | Bumped source to 20200826-77c1c6d | Bumped source to 20200826-77c1c6d
| FROM docker.pkg.github.com/dock0/arch/arch:20200826-6a7a1a2
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:20200826-77c1c6d
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 |
28 | 8f2a4a9f93a5d936dc0228b8a4030d0ec1f42799 | Bumped source to 20200522-1035b1c | Bumped source to 20200522-1035b1c
| FROM docker.pkg.github.com/dock0/service/service:20200522-cd8e717
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:20200522-1035b1c
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"
| feature addition |
2157 | f7b49720318ba40e9a5e8c567c0dda7e918ace83 | Update base image to Python 2.7, Alpine 3.11. | Update base image to Python 2.7, Alpine 3.11.
| FROM python:3.6-alpine3.7 as build
# -----------------------------------------------------------------------------
# This stage builds the build container.
# -----------------------------------------------------------------------------
# Install compiler toolchain and libraries.
RUN apk add --no-cache build-base libffi-dev libressl-dev
# Install/upgrade pip
RUN python -m pip install --upgrade pip
# Paths
ENV IMS_SOURCE_DIR="/src/ims"
ENV IMS_INSTALL_DIR="/opt/ims"
# Copy the source code over
WORKDIR "${IMS_SOURCE_DIR}"
COPY ./COPYRIGHT.rst ./
COPY ./LICENSE.txt ./
COPY ./pyproject.toml ./
COPY ./setup.py ./
COPY ./src/ ./src/
# Install the application
WORKDIR /tmp
RUN install -o daemon -g daemon -d "${IMS_INSTALL_DIR}"
USER daemon:daemon
RUN python -m venv "${IMS_INSTALL_DIR}"
RUN "${IMS_INSTALL_DIR}/bin/pip" --no-cache-dir install "${IMS_SOURCE_DIR}"
# -----------------------------------------------------------------------------
# This stage builds the application container.
# -----------------------------------------------------------------------------
FROM python:3.6-alpine3.7 as application
# Copy build result
ENV IMS_INSTALL_DIR="/opt/ims"
COPY --from=build "${IMS_INSTALL_DIR}" "${IMS_INSTALL_DIR}"
# Allow ims_server to bind to privileged port numbers
RUN apk add --no-cache libcap
RUN setcap "cap_net_bind_service=+ep" /usr/local/bin/python3.7
# Configuration
ENV IMS_HOSTNAME="0.0.0.0"
ENV IMS_CONFIG_ROOT="${IMS_INSTALL_DIR}/conf"
ENV IMS_SERVER_ROOT="/srv/ims"
ENV IMS_DATA_STORE="MySQL"
RUN install -o daemon -g daemon -d "${IMS_SERVER_ROOT}"
WORKDIR "${IMS_SERVER_ROOT}"
USER daemon:daemon
EXPOSE 80
CMD [ "/opt/ims/bin/ims_server", "--log-file", "-" ]
| null | bug fix |
7 | 4dc7b0964c5e2b8ccd4aa39b9a53d568de7cded7 | Build avogadro2 for format conversion | Build avogadro2 for format conversion
| FROM girder/girder:latest-py3
# Enable proxy support
COPY ./devops/docker/girder/girder.local.conf /girder/girder/conf/girder.local.cfg
COPY . /materialsdatabank
RUN pip install -e /materialsdatabank
# Install materialdatabank plugin
RUN girder-install plugin /materialsdatabank/server/materialsdatabank
| FROM girder/girder:latest-py3
# Install cmake
RUN wget https://cmake.org/files/v3.10/cmake-3.10.0-rc2-Linux-x86_64.sh && \
chmod u+x cmake-3.10.0-rc2-Linux-x86_64.sh && \
mkdir /cmake && \
./cmake-3.10.0-rc2-Linux-x86_64.sh --skip-license --prefix=/cmake
# Build pybind11
RUN git clone https://github.com/pybind/pybind11.git /pybind11/source && \
mkdir /pybind11/build && \
mkdir /pybind11/install && \
cd /pybind11/build && \
/cmake/bin/cmake -DCMAKE_INSTALL_PREFIX:PATH=/pybind11/install -DPYBIND11_TEST:BOOL=NO ../source && \
/cmake/bin/cmake --build . --target install && \
rm -rf /pybind11/build && rm -rf /pybind11/source
# Install deps for avogadro
RUN apt-get update && apt-get -y install \
libeigen3-dev \
libpython3-dev
# Build avogadrolibs
RUN git clone https://github.com/openchemistry/avogadrolibs.git /avogadrolibs/source && \
mkdir /avogadrolibs/build && \
cd /avogadrolibs/build && \
/cmake/bin/cmake -DCMAKE_BUILD_TYPE:STRING=Release -DUSE_PYTHON:BOOL=YES -DENABLE_TESTING:BOOL=NO \
-Dpybind11_DIR:PATH=/pybind11/install/share/cmake/pybind11 -DUSE_LIBSPG:BOOL=NO \
-DUSE_QT:BOOL=NO -DUSE_OPENGL:BOOL=NO ../source && \
/cmake/bin/cmake --build . && \
mkdir -p /usr/lib/python3.4/site-packages/ && \
cp /avogadrolibs/build/lib/* /usr/local/lib/python3.4/dist-packages/ && \
rm -rf /avogadrolibs/source
# Remove cmake
RUN rm -rf /cmake
# Enable proxy support
COPY ./devops/docker/girder/girder.local.conf /girder/girder/conf/girder.local.cfg
COPY . /materialsdatabank
RUN pip install -e /materialsdatabank
# Install materialdatabank plugin
RUN girder-install plugin /materialsdatabank/server/materialsdatabank
| maintenance/other |
246 | 6c42df1a31b680572a4fa732706cd27e604b8865 | fix bug | fix bug
| FROM alpine:3.4
MAINTAINER takafumiotake<[email protected]>
COPY runit_bootstrap /usr/sbin/runit_bootstrap
RUN RUNIT_VERSION="2.1.2" \
&& RUNIT_SHA1="398f7bf995acd58797c1d4a7bcd75cc1fc83aa66" \
&& apk add --no-cache --virtual .build-deps \
curl \
tar \
make \
gcc \
musl-dev \
&& curl -fSL http://smarden.org/runit/runit-$RUNIT_VERSION.tar.gz -o runit.tar.gz \
&& echo "$RUNIT_SHA1 runit.tar.gz" | sha1sum -c \
&& mkdir -p /usr/src/runit \
&& tar -zxC /usr/src/runit -f runit.tar.gz --strip-component=2 \
&& rm -f runit.tar.gz \
&& cd /usr/src/runit/src \
&& make \
&& cat package/commands | xargs -I {} mv -f src/{} /sbin/ \
&& cd / \
&& rm -rf /usr/src/runit \
&& apk del .build-deps \
&& mkdir /service
&& chmod 755 /usr/sbin/runit_bootstrap
ENTRYPOINT ["/usr/sbin/runit_bootstrap"]
| FROM alpine:3.4
MAINTAINER takafumiotake<[email protected]>
COPY runit_bootstrap /usr/sbin/runit_bootstrap
RUN RUNIT_VERSION="2.1.2" \
&& RUNIT_SHA1="398f7bf995acd58797c1d4a7bcd75cc1fc83aa66" \
&& apk add --no-cache --virtual .build-deps \
curl \
tar \
make \
gcc \
musl-dev \
&& curl -fSL http://smarden.org/runit/runit-$RUNIT_VERSION.tar.gz -o runit.tar.gz \
&& echo "$RUNIT_SHA1 runit.tar.gz" | sha1sum -c \
&& mkdir -p /usr/src/runit \
&& tar -zxC /usr/src/runit -f runit.tar.gz --strip-component=2 \
&& rm -f runit.tar.gz \
&& cd /usr/src/runit/src \
&& make \
&& cd .. \
&& cat package/commands | xargs -I {} mv -f src/{} /sbin/ \
&& cd / \
&& rm -rf /usr/src/runit \
&& apk del .build-deps \
&& mkdir /service
&& chmod 755 /usr/sbin/runit_bootstrap
ENTRYPOINT ["/usr/sbin/runit_bootstrap"]
| feature addition |
409 | 0f29520d072f713e014519c4694b39e4b646e9d7 | Bumped source to 20200428-d2f18ec | Bumped source to 20200428-d2f18ec
| FROM docker.pkg.github.com/dock0/ssh/ssh:20200428-3e18547
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:20200428-d2f18ec
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'
| bug fix |
277 | 7660b16e606f959183e74db29605cfd080e23bac | added docker file | added docker file
| FROM debian
MAINTAINER ahiknsr
#Adding kali sources
RUN apt-get install wget -y --force-yes
RUN wget --no-check-certificate https://gist.githubusercontent.com/Ahiknsr/701f2896b642930ce2e8/raw/868e1e465e3f3498420db89e6eca1679537e2f57/dockerinitialsetup -O aptsetup.sh
RUN chmod +x aptsetup.sh; bash aptsetup.sh
#apt-get prompt will not prompt for yes or no and takes yes as default choice
RUN wget --no-check-certificate https://gist.githubusercontent.com/Ahiknsr/21b8f32d80b423aa31bd/raw/e1e5974f6baf941a8011481fee6d516eca69d54e/aptalwaysyes -O aptalwaysyes.sh
RUN chmod +x aptalwaysyes.sh; bash aptalwaysyes.sh
#install few tools in repo which are nessacary for owtf
RUN wget --no-check-certificate https://gist.githubusercontent.com/Ahiknsr/c76417641a22c40c29ce/raw/5209cfa5f13da315a2f272e6fb5a79d492a2805d/nativetools -O nativetools.sh
RUN chmod +x nativetools.sh; bash nativetools.sh
RUN rm *.sh
#install necessary python modules
RUN wget https://raw.githubusercontent.com/owtf/owtf/master/install/owtf.pip -O owtf.pip
RUN pip install -r owtf.pip
RUN pip install --upgrade six
RUN pip install simplejson
RUN pip install pyOpenSSL==0.12
RUN pip install --upgrade -r owtf.pip; rm owtf.pip
#download owtf
RUN wget https://github.com/owtf/owtf/archive/v1.0.1.tar.gz
RUN tar xvf v1.0.1.tar.gz
RUN mv owtf-1.0.1 owtf
RUN mkdir owtf/tools/restricted
RUN rm v1.0.1.tar.gz
RUN wget https://gist.githubusercontent.com/Ahiknsr/797cb9ac52a249ad0d59/raw/e51f5a2fc8019ed02e3b001c5ed9ad901987f2a3/owtfdocker -O owtf/install/install.py
RUN python owtf/install/install.py
RUN wget https://gist.githubusercontent.com/Ahiknsr/957d204e6d965db08b06/raw/a4ab25a9ab56da7536e02d9c8ffd9de8931c01ad/owtfdbinstall -O owtf/scripts/owtfinstall.sh
RUN chmod +x owtf/scripts/owtfinstall.sh
RUN bash owtf/scripts/owtfinstall.sh
RUN wget https://gist.githubusercontent.com/Ahiknsr/31ce4c694767d59ef35b/raw/61d1a0edcfc932b42e6306e23788e2b9b8ea25c2/dbmodify -O dbmodify.py
RUN python dbmodify.py
RUN wget https://gist.githubusercontent.com/Ahiknsr/e600b0e4e51865a6dfa0/raw/094d296e1cd5c0947064606b1cadffab7aa3c3f7/modifiedserver.py -O owtf/framework/interface/server.py
RUN apt-get install theharvester tlssled nikto dnsrecon nmap whatweb skipfish w3af-console dirbuster wpscan wapiti waffit hydra
RUN echo "service postgresql start" >> ~/.bashrc
RUN echo "Installation of owtf is complete :) "
| FROM debian
MAINTAINER ahiknsr
#Adding kali sources
RUN cat /etc/apt/sources.list
RUN apt-get install wget -y --force-yes
RUN wget --no-check-certificate https://gist.githubusercontent.com/Ahiknsr/701f2896b642930ce2e8/raw/868e1e465e3f3498420db89e6eca1679537e2f57/dockerinitialsetup -O aptsetup.sh
RUN chmod +x aptsetup.sh; bash aptsetup.sh
#apt-get prompt will not prompt for yes or no and takes yes as default choice
RUN wget --no-check-certificate https://gist.githubusercontent.com/Ahiknsr/21b8f32d80b423aa31bd/raw/e1e5974f6baf941a8011481fee6d516eca69d54e/aptalwaysyes -O aptalwaysyes.sh
RUN chmod +x aptalwaysyes.sh; bash aptalwaysyes.sh
#install few tools in repo which are nessacary for owtf
RUN wget --no-check-certificate https://gist.githubusercontent.com/Ahiknsr/c76417641a22c40c29ce/raw/5209cfa5f13da315a2f272e6fb5a79d492a2805d/nativetools -O nativetools.sh
RUN chmod +x nativetools.sh; bash nativetools.sh
RUN rm *.sh
#install necessary python modules
RUN wget https://raw.githubusercontent.com/owtf/owtf/master/install/owtf.pip -O owtf.pip
RUN pip install -r owtf.pip
RUN pip install --upgrade six
RUN pip install simplejson
RUN pip install pyOpenSSL==0.12
RUN pip install --upgrade -r owtf.pip; rm owtf.pip
#download owtf
RUN wget https://github.com/owtf/owtf/archive/v1.0.1.tar.gz
RUN tar xvf v1.0.1.tar.gz
RUN mv owtf-1.0.1 owtf
RUN mkdir owtf/tools/restricted
RUN rm v1.0.1.tar.gz
RUN wget https://gist.githubusercontent.com/Ahiknsr/797cb9ac52a249ad0d59/raw/e51f5a2fc8019ed02e3b001c5ed9ad901987f2a3/owtfdocker -O owtf/install/install.py
RUN python owtf/install/install.py
RUN wget https://gist.githubusercontent.com/Ahiknsr/957d204e6d965db08b06/raw/a4ab25a9ab56da7536e02d9c8ffd9de8931c01ad/owtfdbinstall -O owtf/scripts/owtfinstall.sh
RUN chmod +x owtf/scripts/owtfinstall.sh
RUN bash owtf/scripts/owtfinstall.sh
RUN wget https://gist.githubusercontent.com/Ahiknsr/31ce4c694767d59ef35b/raw/61d1a0edcfc932b42e6306e23788e2b9b8ea25c2/dbmodify -O dbmodify.py
RUN python dbmodify.py
RUN wget https://gist.githubusercontent.com/Ahiknsr/e600b0e4e51865a6dfa0/raw/094d296e1cd5c0947064606b1cadffab7aa3c3f7/modifiedserver.py -O owtf/framework/interface/server.py
RUN apt-get install theharvester tlssled nikto dnsrecon nmap whatweb skipfish w3af-console dirbuster wpscan wapiti waffit hydra
RUN echo "service postgresql start" >> ~/.bashrc
RUN echo "Installation of owtf is complete :) "
| code refactoring |
2214 | c6c5294a4d6451f0fa9be70d1873a696d76a23de | fix permission problem | fix permission problem
| FROM ubuntu:trusty
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get install -y wget
RUN wget --no-check-certificate -O - https://swupdate.openvpn.net/repos/repo-public.gpg|apt-key add -
RUN echo "deb http://swupdate.openvpn.net/apt trusty main" > /etc/apt/sources.list.d/swupdate.openvpn.net.list
RUN apt-get update \
&& apt-get install -y openvpn ssmtp git-core vim iptables p7zip-full whois \
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
RUN git clone --depth 1 --branch v3.0.0 https://github.com/OpenVPN/easy-rsa.git /opt/easyrsa/ \
&& cp -R /opt/easyrsa/easyrsa3 /etc/openvpn/easy-rsa
RUN gunzip -c /usr/share/doc/openvpn/examples/sample-config-files/server.conf.gz > /etc/openvpn/server.conf
ADD start.sh /a/start.sh
CMD ["/a/start.sh"] | null | maintenance/other |
2187 | 75fe704a4d9b9116de0351e902f7b86636eacad6 | Update npm in dockerfile | Update npm in dockerfile
| # Docker image for grasshopper-loader
# To build, run docker build --rm --tag=hmda/<image-name>:<tag-name> .
# To test, run ./docker-test.sh <image-name>:<tag-name> <cli args>
# To run, run ./docker-run <image-name>:<tag-name> <cli args>
FROM geodata/gdal:1.11.2
MAINTAINER Wyatt Pearsall <[email protected]>
USER root
RUN apt-get update && apt-get install -y curl git && \
curl -sL https://deb.nodesource.com/setup_0.10 | sudo bash - && \
apt-get install -y nodejs &&\
mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY . /usr/src/app
RUN useradd notroot && chown -R notroot /usr/src/app && chmod u+rwx /usr/src/app
RUN npm install
USER notroot
CMD /bin/bash
| null | code refactoring |
77 | 21eea9f5b818b80c32d3f8e479a512b984660576 | Bumped source to 20211210-cf565d4 | Bumped source to 20211210-cf565d4
| FROM docker.pkg.github.com/dock0/arch/arch:20211210-2747e13
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:20211210-cf565d4
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 |
2230 | cb15ae41dff8097699c583d5fed11c36634c17b2 | Update Dockerfile (apache-tomcat-7.0.72) | Update Dockerfile (apache-tomcat-7.0.72) | FROM quay.io/lizhongwen/oracle-jdk:1.8
MAINTAINER github.com/Official-Registry/oracle-jdk, [email protected]
ENV TOMCAT_VERSION=8.0.37
ENV TOMCAT_HOME=/opt/app/apache-tomcat-${TOMCAT_VERSION}
ENV JAVA_DEBUG=false
ENV JVM_MIN_MEM=256
ENV JVM_MAX_MEM=1024
RUN apt-get install -y unzip \
&& curl --fail --location --retry 3 \
http://mirror.bit.edu.cn/apache/tomcat/tomcat-8/v8.0.37/bin/apache-tomcat-8.0.37.tar.gz \
-o /tmp/tomcat.tar.gz \
&& mkdir -p /opt/app/ \
&& tar -zvxf /tmp/tomcat.tar.gz -C /opt/app/ \
&& rm -rf /tmp/tomcat.tar.gz ${TOMCAT_HOME}/webapps/*
ADD resources/entrypoint.sh ${TOMCAT_HOME}/bin/
RUN chmod +x ${TOMCAT_HOME}/bin/entrypoint.sh
EXPOSE 8080 8888
ENTRYPOINT ["/bin/sh", "-c", "${TOMCAT_HOME}/bin/entrypoint.sh"]
| null | code refactoring |
41 | d5ea4a75b67674d9571943bbf19a4f6105c54ea4 | fix(deps): update postgres docker tag to v13.4 | fix(deps): update postgres docker tag to v13.4
| FROM postgres:13.3
ENV POSTGRES_DB=hub
ENV POSTGRES_USER=stencila
| FROM postgres:13.4
ENV POSTGRES_DB=hub
ENV POSTGRES_USER=stencila
| code refactoring |
328 | 55283a685be3b1ac8caa13f5dba12ad55e5f3f9d | Upgrade dockerfile to 0.0.43 | Upgrade dockerfile to 0.0.43
| FROM flowdocker/play:0.0.37
ADD . /opt/play
WORKDIR /opt/play
RUN sbt clean stage
ENTRYPOINT ["java", "-jar", "/root/environment-provider.jar", "run", "play", "APP", "api/target/universal/stage/bin/APP-api"]
| FROM flowdocker/play:0.0.43
ADD . /opt/play
WORKDIR /opt/play
RUN sbt clean stage
ENTRYPOINT ["java", "-jar", "/root/environment-provider.jar", "run", "play", "APP", "api/target/universal/stage/bin/APP-api"]
| null |
102 | a2ea1af4c0d1ea87529f0f2c8c1aeb90437e8be8 | Update NPM for OS-Viewer | Update NPM for OS-Viewer
| FROM gliderlabs/alpine:latest
RUN apk add --update python
RUN apk add --update --virtual=build-dependencies ca-certificates build-base
RUN apk add git
RUN apk add nodejs
RUN git clone http://github.com/openspending/os-viewer.git app
RUN cd app && npm install
RUN cd app && node node_modules/gulp/bin/gulp.js
RUN apk del build-dependencies
RUN rm -rf /var/cache/apk/*
ENV OS_VIEWER_BASE_PATH=viewer/
ADD settings.json /app/settings.json
ADD startup.sh /startup.sh
EXPOSE 8000
CMD echo working from $WORKDIR && cd $WORKDIR && API_URL="${OS_EXTERNAL_ADDRESS}" /startup.sh
| FROM gliderlabs/alpine:3.3
RUN apk add --update python
RUN apk add --update --virtual=build-dependencies ca-certificates build-base
RUN apk add git
RUN apk add nodejs
RUN git clone http://github.com/openspending/os-viewer.git app
RUN npm install npm -g
RUN npm --version
RUN cd app && npm install
RUN cd app && node node_modules/gulp/bin/gulp.js
RUN apk del build-dependencies
RUN rm -rf /var/cache/apk/*
ENV OS_VIEWER_BASE_PATH=viewer/
ADD settings.json /app/settings.json
ADD startup.sh /startup.sh
EXPOSE 8000
CMD echo working from $WORKDIR && cd $WORKDIR && API_URL="${OS_EXTERNAL_ADDRESS}" /startup.sh
| null |
262 | fd2247cbcee7415a6703cc9221d53f5dbac9accc | Bumped source to 20211130-4c00e06 | Bumped source to 20211130-4c00e06
| FROM docker.pkg.github.com/dock0/arch/arch:20211130-cbf05db
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:20211130-4c00e06
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 |
2103 | d7d82169d11383f225a46cfa76cacb9a993c4135 | Bumped source to 20210629-6b7f787 | Bumped source to 20210629-6b7f787
| FROM docker.pkg.github.com/dock0/arch/arch:20210629-e972d45
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 | null |
374 | 90bde9493ac67b6683c885859581cf52f73b489e | Bumped source to 20201103-c055246 | Bumped source to 20201103-c055246
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20201103-c7ca449
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:20201103-c055246
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| null |
2310 | 439ce8e0e4d322ae7d9e702ce1ac38becaacdeb7 | Update Dockerfile | Update Dockerfile
keeping bash. | FROM centos:7.3.1611
MAINTAINER Robert de Bock <[email protected]>
LABEL Description="Base CentOS OpenSSH server image" CentOS="7.3.1611" OpenSSH="6.6.1p1-33.el7_3" Tini="0.14.0"
ENV TINI_VERSION v0.14.0
ADD https://github.com/krallin/tini/releases/download/${TINI_VERSION}/tini /tini
EXPOSE 22
RUN yum -y erase bash vim && \
yum -y update && \
yum -y install openssh openssh-server openssh-clients && \
yum -y clean all
ADD start.sh /start.sh
RUN chmod +x /start.sh
RUN chmod +x /tini
ENTRYPOINT ["/tini", "-g", "--"]
CMD /start.sh
| null | null |
2170 | 3573db30cf61da7cbc7eee0a5234d286576f5665 | add gnu tar for mesos docker fetcher | add gnu tar for mesos docker fetcher
| FROM quay.io/vektorcloud/base:3.4
RUN apk --no-cache add docker \
libstdc++ \
subversion \
curl \
fts \
openjdk8 \
openssl \
binutils \
coreutils \
bash && \
apk --no-cache --repository http://dl-cdn.alpinelinux.org/alpine/edge/community add dumb-init
# Mesos Default Options
ENV \
VERSION="1.2.0" \
MESOS_ZK="zk://localhost:2181/mesos" \
MESOS_MASTER="zk://localhost:2181/mesos" \
MESOS_QUORUM="1" \
MESOS_WORK_DIR="/mesos" \
MESOS_LOG_DIR="/mesos/log" \
MESOS_CONTAINERIZERS="mesos,docker" \
MESOS_EXECUTOR_REGISTRATION_TIMEOUT="5mins" \
MESOS_LAUNCHER="linux" \
MESOS_LOGGING_LEVEL="WARNING" \
MESOS_SYSTEMD_ENABLE_SUPPORT="false" \
MESOS_ISOLATION="cgroups/cpu,cgroups/mem,cgroups/pids,namespaces/pid,filesystem/linux,docker/runtime"
COPY mesos/mesos-$VERSION/build /
COPY entrypoint.sh /
ENTRYPOINT ["/entrypoint.sh"]
| null | null |
2176 | 2feef0bf6c0463a85fffb6443968da5cadc59093 | Bumped source to 20200824-40508fc | Bumped source to 20200824-40508fc
| FROM docker.pkg.github.com/dock0/ssh/ssh:20200824-cae6bbb
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 | null |
44 | b491f955c938e4b688236e7a53153f9514594e90 | update zoo | update zoo
Signed-off-by: Mark McCahill <[email protected]>
| # mccahill/r-studio
#
# VERSION 1.4
FROM ubuntu:18.04
MAINTAINER Mark McCahill "[email protected]"
RUN apt-get update ; \
apt-get install gnupg2 -y
# get R from a CRAN archive (we want the 3.5 version of R)
RUN echo "deb http://cran.rstudio.com/bin/linux/ubuntu bionic-cran35/" >> /etc/apt/sources.list
RUN DEBIAN_FRONTEND=noninteractive apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E084DAB9
RUN apt-get update ; \
apt-get dist-upgrade -y
# we want OpenBLAS for faster linear algebra as described here: http://brettklamer.com/diversions/statistical/faster-blas-in-r/
RUN apt-get install -y \
apt-utils \
libopenblas-base
RUN apt-get update ; \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
r-base \
r-base-dev \
vim \
less \
net-tools \
inetutils-ping \
curl \
git \
telnet \
nmap \
socat \
software-properties-common \
wget \
sudo
RUN apt-get update ; \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
libcurl4-gnutls-dev \
libgit2-dev \
libxml2-dev \
libssl-dev \
libudunits2-dev \
libpoppler-cpp-dev
# we need TeX for the rmarkdown package in RStudio, and pandoc is also useful
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y \
texlive \
texlive-base \
texlive-latex-extra \
texlive-pstricks \
pandoc
# R-Studio
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y \
gdebi-core \
libapparmor1
# RUN DEBIAN_FRONTEND=noninteractive wget https://download2.rstudio.org/rstudio-server-1.1.383-amd64.deb
RUN DEBIAN_FRONTEND=noninteractive wget https://s3.amazonaws.com/rstudio-ide-build/server/trusty/amd64/rstudio-server-1.2.907-amd64.deb
RUN DEBIAN_FRONTEND=noninteractive gdebi --n rstudio-server-1.2.907-amd64.deb
RUN rm rstudio-server-1.2.907-amd64.deb
# update the R packages we will need for knitr
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/xfun_0.5.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/knitr_1.22.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/yaml_2.2.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/Rcpp_1.0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/htmltools_0.3.6.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/caTools_1.17.1.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/bitops_1.0-6.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/digest_0.6.18.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/glue_1.3.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/stringr_1.4.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/markdown_0.9.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/highr_0.8.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/formatR_1.6.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/evaluate_0.13.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/mime_0.6.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/stringi_1.4.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/magrittr_1.5.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
bitops_1.0-6.tar.gz \
caTools_1.17.1.2.tar.gz \
digest_0.6.18.tar.gz \
Rcpp_1.0.1.tar.gz \
htmltools_0.3.6.tar.gz \
yaml_2.2.0.tar.gz \
stringi_1.4.3.tar.gz \
magrittr_1.5.tar.gz \
mime_0.6.tar.gz \
glue_1.3.1.tar.gz \
stringr_1.4.0.tar.gz \
highr_0.8.tar.gz \
formatR_1.6.tar.gz \
evaluate_0.13.tar.gz \
markdown_0.9.tar.gz \
xfun_0.5.tar.gz \
knitr_1.22.tar.gz
RUN rm \
evaluate_0.13.tar.gz \
formatR_1.6.tar.gz \
highr_0.8.tar.gz \
markdown_0.9.tar.gz \
stringi_1.4.3.tar.gz \
magrittr_1.5.tar.gz \
glue_1.3.1.tar.gz \
stringr_1.4.0.tar.gz \
xfun_0.5.tar.gz \
knitr_1.22.tar.gz \
yaml_2.2.0.tar.gz \
Rcpp_1.0.1.tar.gz \
htmltools_0.3.6.tar.gz \
caTools_1.17.1.2.tar.gz \
bitops_1.0-6.tar.gz \
digest_0.6.18.tar.gz \
mime_0.6.tar.gz
# dependency for R XML library
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y \
libxml2 \
libxml2-dev \
libssl-dev
# R packages we need for devtools - and we need devtools to be able to update the rmarkdown package
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/processx_3.3.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/ps_1.3.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/callr_3.2.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/crayon_1.3.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/assertthat_0.2.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/cli_1.1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/desc_1.2.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/prettyunits_1.0.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/backports_1.1.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rprojroot_1.3-2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/withr_2.1.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/pkgbuild_1.0.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rlang_0.3.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rstudioapi_0.10.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/pkgload_1.0.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rcmdcheck_1.3.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/remotes_2.0.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/xopen_1.0.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/clipr_0.5.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/clisymbols_1.2.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/sessioninfo_1.1.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/usethis_1.4.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/sys_3.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/askpass_1.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/openssl_1.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/brew_1.0-6.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/Archive/roxygen2/roxygen2_5.0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/fs_1.2.7.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/gh_1.0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rversions_1.0.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/git2r_0.25.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/devtools_2.0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/R6_2.4.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/httr_1.4.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/RCurl_1.95-4.12.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/BH_1.69.0-1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/xml2_1.2.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/curl_3.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/jsonlite_1.6.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/ini_0.3.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/downloader_0.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/memoise_1.1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/plyr_1.8.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/XML_3.98-1.19.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/whisker_0.3-2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/bitops_1.0-6.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
ps_1.3.0.tar.gz \
R6_2.4.0.tar.gz \
processx_3.3.0.tar.gz \
callr_3.2.0.tar.gz \
crayon_1.3.4.tar.gz \
assertthat_0.2.1.tar.gz \
cli_1.1.0.tar.gz \
backports_1.1.3.tar.gz \
rprojroot_1.3-2.tar.gz \
desc_1.2.0.tar.gz \
prettyunits_1.0.2.tar.gz \
withr_2.1.2.tar.gz \
pkgbuild_1.0.3.tar.gz \
rlang_0.3.3.tar.gz \
rstudioapi_0.10.tar.gz \
pkgload_1.0.2.tar.gz \
xopen_1.0.0.tar.gz \
sessioninfo_1.1.1.tar.gz \
rcmdcheck_1.3.2.tar.gz \
remotes_2.0.2.tar.gz \
whisker_0.3-2.tar.gz \
git2r_0.25.2.tar.gz \
fs_1.2.7.tar.gz \
ini_0.3.1.tar.gz \
jsonlite_1.6.tar.gz \
sys_3.1.tar.gz \
askpass_1.1.tar.gz \
openssl_1.3.tar.gz \
curl_3.3.tar.gz \
httr_1.4.0.tar.gz \
gh_1.0.1.tar.gz \
clipr_0.5.0.tar.gz \
clisymbols_1.2.0.tar.gz \
usethis_1.4.0.tar.gz \
memoise_1.1.0.tar.gz \
bitops_1.0-6.tar.gz \
RCurl_1.95-4.12.tar.gz \
plyr_1.8.4.tar.gz \
devtools_2.0.1.tar.gz \
brew_1.0-6.tar.gz \
roxygen2_5.0.1.tar.gz \
XML_3.98-1.19.tar.gz \
BH_1.69.0-1.tar.gz \
xml2_1.2.0.tar.gz \
rversions_1.0.3.tar.gz \
downloader_0.4.tar.gz
RUN rm \
ps_1.3.0.tar.gz \
callr_3.2.0.tar.gz \
R6_2.4.0.tar.gz \
processx_3.3.0.tar.gz \
crayon_1.3.4.tar.gz \
assertthat_0.2.1.tar.gz \
cli_1.1.0.tar.gz \
desc_1.2.0.tar.gz \
prettyunits_1.0.2.tar.gz \
backports_1.1.3.tar.gz \
rprojroot_1.3-2.tar.gz \
withr_2.1.2.tar.gz \
pkgbuild_1.0.3.tar.gz \
rlang_0.3.3.tar.gz \
rstudioapi_0.10.tar.gz \
clipr_0.5.0.tar.gz \
clisymbols_1.2.0.tar.gz \
pkgload_1.0.2.tar.gz \
sessioninfo_1.1.1.tar.gz \
xopen_1.0.0.tar.gz \
rcmdcheck_1.3.2.tar.gz \
remotes_2.0.2.tar.gz \
usethis_1.4.0.tar.gz \
ini_0.3.1.tar.gz \
jsonlite_1.6.tar.gz \
memoise_1.1.0.tar.gz \
whisker_0.3-2.tar.gz \
bitops_1.0-6.tar.gz \
RCurl_1.95-4.12.tar.gz \
plyr_1.8.4.tar.gz \
httr_1.4.0.tar.gz \
sys_3.1.tar.gz \
askpass_1.1.tar.gz \
openssl_1.3.tar.gz \
brew_1.0-6.tar.gz \
roxygen2_5.0.1.tar.gz \
BH_1.69.0-1.tar.gz \
XML_3.98-1.19.tar.gz \
xml2_1.2.0.tar.gz \
curl_3.3.tar.gz \
rversions_1.0.3.tar.gz \
git2r_0.25.2.tar.gz \
devtools_2.0.1.tar.gz \
downloader_0.4.tar.gz
# the CRAN install from source fails because a server at MIT will not respond
# install from source
ADD ./conf /r-studio
#RUN R CMD BATCH /r-studio/install-nloptr.R
#RUN rm /install-nloptr.Rout
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/nloptr_1.2.1.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
nloptr_1.2.1.tar.gz
RUN rm \
nloptr_1.2.1.tar.gz
# libraries Eric Green wanted
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/lubridate_1.7.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/lazyeval_0.2.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/utf8_1.1.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/fansi_0.4.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/pillar_1.3.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/pkgconfig_2.0.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/tibble_2.1.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/ggplot2_3.1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/RColorBrewer_1.1-2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/dichromat_2.0-0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/colorspace_1.4-1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/munsell_0.5.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/labeling_0.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/viridisLite_0.3.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/scales_1.0.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/stargazer_5.2.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/reshape2_1.4.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/gtable_0.3.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/proto_1.0.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/minqa_1.2.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/RcppEigen_0.3.3.5.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/lme4_1.1-21.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
lubridate_1.7.4.tar.gz \
gtable_0.3.0.tar.gz \
RColorBrewer_1.1-2.tar.gz \
dichromat_2.0-0.tar.gz \
colorspace_1.4-1.tar.gz \
munsell_0.5.0.tar.gz \
labeling_0.3.tar.gz \
viridisLite_0.3.0.tar.gz \
scales_1.0.0.tar.gz \
proto_1.0.0.tar.gz \
reshape2_1.4.3.tar.gz \
lazyeval_0.2.2.tar.gz \
utf8_1.1.4.tar.gz \
fansi_0.4.0.tar.gz \
pillar_1.3.1.tar.gz \
pkgconfig_2.0.2.tar.gz \
tibble_2.1.1.tar.gz \
ggplot2_3.1.0.tar.gz \
stargazer_5.2.2.tar.gz \
minqa_1.2.4.tar.gz \
RcppEigen_0.3.3.5.0.tar.gz \
lme4_1.1-21.tar.gz
RUN rm \
lubridate_1.7.4.tar.gz \
gtable_0.3.0.tar.gz \
RColorBrewer_1.1-2.tar.gz \
dichromat_2.0-0.tar.gz \
colorspace_1.4-1.tar.gz \
munsell_0.5.0.tar.gz \
labeling_0.3.tar.gz \
viridisLite_0.3.0.tar.gz \
scales_1.0.0.tar.gz \
proto_1.0.0.tar.gz \
reshape2_1.4.3.tar.gz \
lazyeval_0.2.2.tar.gz \
utf8_1.1.4.tar.gz \
fansi_0.4.0.tar.gz \
pillar_1.3.1.tar.gz \
pkgconfig_2.0.2.tar.gz \
tibble_2.1.1.tar.gz \
ggplot2_3.1.0.tar.gz \
stargazer_5.2.2.tar.gz \
minqa_1.2.4.tar.gz \
RcppEigen_0.3.3.5.0.tar.gz \
lme4_1.1-21.tar.gz
# more libraries Mine Cetinakya-Rundel asked for
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/openintro_1.7.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/bindr_0.1.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/bindrcpp_0.2.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/plogr_0.2.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/purrr_0.3.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/tidyselect_0.2.5.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/dplyr_0.8.0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/DBI_1.0.0.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
openintro_1.7.1.tar.gz \
DBI_1.0.0.tar.gz \
plogr_0.2.0.tar.gz \
bindr_0.1.1.tar.gz \
bindrcpp_0.2.2.tar.gz \
purrr_0.3.2.tar.gz \
tidyselect_0.2.5.tar.gz \
dplyr_0.8.0.1.tar.gz
RUN rm \
openintro_1.7.1.tar.gz \
DBI_1.0.0.tar.gz \
bindr_0.1.1.tar.gz \
bindrcpp_0.2.2.tar.gz \
plogr_0.2.0.tar.gz \
purrr_0.3.2.tar.gz \
tidyselect_0.2.5.tar.gz \
dplyr_0.8.0.1.tar.gz
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/chron_2.3-53.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/data.table_1.12.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rematch_1.0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/cellranger_1.1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/tidyr_0.8.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/googlesheets_0.3.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/hms_0.4.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/readr_1.3.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/selectr_0.4-1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rvest_0.3.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/pbkrtest_0.4-7.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
chron_2.3-53.tar.gz \
data.table_1.12.0.tar.gz \
rematch_1.0.1.tar.gz \
cellranger_1.1.0.tar.gz \
tidyr_0.8.3.tar.gz \
hms_0.4.2.tar.gz \
readr_1.3.1.tar.gz \
googlesheets_0.3.0.tar.gz \
selectr_0.4-1.tar.gz \
rvest_0.3.2.tar.gz \
pbkrtest_0.4-7.tar.gz
RUN rm \
chron_2.3-53.tar.gz \
data.table_1.12.0.tar.gz \
rematch_1.0.1.tar.gz \
cellranger_1.1.0.tar.gz \
tidyr_0.8.3.tar.gz \
googlesheets_0.3.0.tar.gz \
hms_0.4.2.tar.gz \
readr_1.3.1.tar.gz \
selectr_0.4-1.tar.gz \
rvest_0.3.2.tar.gz \
pbkrtest_0.4-7.tar.gz
# Shiny
#RUN wget https://download3.rstudio.org/ubuntu-12.04/x86_64/shiny-server-1.5.3.838-amd64.deb
RUN wget https://download3.rstudio.org/ubuntu-14.04/x86_64/shiny-server-1.5.7.907-amd64.deb
RUN DEBIAN_FRONTEND=noninteractive gdebi -n shiny-server-1.5.7.907-amd64.deb
RUN rm shiny-server-1.5.7.907-amd64.deb
RUN R CMD BATCH /r-studio/install-Shiny.R
RUN rm /install-Shiny.Rout
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/SparseM_1.77.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/MatrixModels_0.4-1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/quantreg_5.38.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/sp_1.3-1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/maptools_0.9-5.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/haven_2.1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/ellipsis_0.1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/forcats_0.4.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/readxl_1.3.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/zip_2.0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/openxlsx_4.1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rio_0.5.16.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/abind_1.4-5.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/carData_3.0-2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/car_3.0-2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/mosaicData_0.17.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/latticeExtra_0.6-28.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/gridExtra_2.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/ggdendro_0.1-20.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/mnormt_1.5-5.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/psych_1.8.12.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/generics_0.0.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/broom_0.5.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/reshape_0.8.8.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/progress_1.2.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/GGally_1.4.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/ggstance_0.3.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/ggformula_0.9.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/mosaicCore_0.6.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/ggrepel_0.8.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/base64enc_0.1-3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/crosstalk_1.0.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/htmlwidgets_1.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/png_0.1-7.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/raster_2.8-19.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/viridis_0.5.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/leaflet_2.0.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/mosaic_1.5.0.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
SparseM_1.77.tar.gz \
MatrixModels_0.4-1.tar.gz \
quantreg_5.38.tar.gz \
sp_1.3-1.tar.gz \
maptools_0.9-5.tar.gz \
ellipsis_0.1.0.tar.gz \
forcats_0.4.0.tar.gz \
haven_2.1.0.tar.gz \
progress_1.2.0.tar.gz \
readxl_1.3.1.tar.gz \
zip_2.0.1.tar.gz \
openxlsx_4.1.0.tar.gz \
rio_0.5.16.tar.gz \
abind_1.4-5.tar.gz \
carData_3.0-2.tar.gz \
car_3.0-2.tar.gz \
mosaicData_0.17.0.tar.gz \
latticeExtra_0.6-28.tar.gz \
gridExtra_2.3.tar.gz \
ggdendro_0.1-20.tar.gz \
mnormt_1.5-5.tar.gz \
psych_1.8.12.tar.gz \
generics_0.0.2.tar.gz \
broom_0.5.1.tar.gz \
reshape_0.8.8.tar.gz \
GGally_1.4.0.tar.gz \
mosaicCore_0.6.0.tar.gz \
ggstance_0.3.1.tar.gz \
ggformula_0.9.1.tar.gz \
ggrepel_0.8.0.tar.gz \
base64enc_0.1-3.tar.gz \
crosstalk_1.0.0.tar.gz \
htmlwidgets_1.3.tar.gz \
png_0.1-7.tar.gz \
raster_2.8-19.tar.gz \
viridis_0.5.1.tar.gz \
leaflet_2.0.2.tar.gz \
mosaic_1.5.0.tar.gz
RUN rm \
SparseM_1.77.tar.gz \
MatrixModels_0.4-1.tar.gz \
quantreg_5.38.tar.gz \
sp_1.3-1.tar.gz \
maptools_0.9-5.tar.gz \
ellipsis_0.1.0.tar.gz \
forcats_0.4.0.tar.gz \
haven_2.1.0.tar.gz \
readxl_1.3.1.tar.gz \
zip_2.0.1.tar.gz \
openxlsx_4.1.0.tar.gz \
rio_0.5.16.tar.gz \
abind_1.4-5.tar.gz \
carData_3.0-2.tar.gz \
car_3.0-2.tar.gz \
mosaicData_0.17.0.tar.gz \
latticeExtra_0.6-28.tar.gz \
gridExtra_2.3.tar.gz \
ggdendro_0.1-20.tar.gz \
mnormt_1.5-5.tar.gz \
psych_1.8.12.tar.gz \
generics_0.0.2.tar.gz \
broom_0.5.1.tar.gz \
reshape_0.8.8.tar.gz \
progress_1.2.0.tar.gz \
GGally_1.4.0.tar.gz \
mosaicCore_0.6.0.tar.gz \
ggstance_0.3.1.tar.gz \
ggformula_0.9.1.tar.gz \
ggrepel_0.8.0.tar.gz \
base64enc_0.1-3.tar.gz \
crosstalk_1.0.0.tar.gz \
htmlwidgets_1.3.tar.gz \
png_0.1-7.tar.gz \
raster_2.8-19.tar.gz \
leaflet_2.0.2.tar.gz \
viridis_0.5.1.tar.gz \
mosaic_1.5.0.tar.gz
# Cliburn Chan requested these:
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/RColorBrewer_1.1-2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/maps_3.3.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/zoo_1.8-4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/gcookbook_2.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/corrplot_0.84.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
RColorBrewer_1.1-2.tar.gz \
maps_3.3.0.tar.gz \
zoo_1.8-4.tar.gz \
gcookbook_2.0.tar.gz \
corrplot_0.84.tar.gz
RUN rm \
RColorBrewer_1.1-2.tar.gz \
maps_3.3.0.tar.gz \
zoo_1.8-4.tar.gz \
gcookbook_2.0.tar.gz \
corrplot_0.84.tar.gz
# install rmarkdown
RUN R CMD BATCH /r-studio/install-rmarkdown.R
RUN rm /install-rmarkdown.Rout
# Cliburn also wanted these
# but they have mega-dependencies, so intall them the other way
RUN R CMD BATCH /r-studio/install-dendextend.R
RUN rm /install-dendextend.Rout
RUN R CMD BATCH /r-studio/install-igraph.R
RUN rm /install-igraph.Rout
# install sparklyr so we can do Spark via Livy
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/config_0.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/dbplyr_1.3.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rappdirs_0.3.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/r2d3_0.2.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/forge_0.2.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/sparklyr_1.0.0.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
config_0.3.tar.gz \
dbplyr_1.3.0.tar.gz \
rappdirs_0.3.1.tar.gz \
r2d3_0.2.3.tar.gz \
forge_0.2.0.tar.gz \
sparklyr_1.0.0.tar.gz
RUN rm \
config_0.3.tar.gz \
dbplyr_1.3.0.tar.gz \
rappdirs_0.3.1.tar.gz \
r2d3_0.2.3.tar.gz \
forge_0.2.0.tar.gz \
sparklyr_1.0.0.tar.gz
# some more TeX so that papaja can be installed and students can create APA templates in Rmarkdown
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y \
texlive \
texlive-publishers \
texlive-fonts-extra \
texlive-latex-extra \
texlive-humanities \
lmodern
# papaja
RUN R CMD BATCH /r-studio/install-papaja.R
RUN rm /install-papaja.Rout
# install templates and examples from Reed and the Tufte package
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/BHH2_2016.05.31.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
BHH2_2016.05.31.tar.gz
RUN rm \
BHH2_2016.05.31.tar.gz
RUN R CMD BATCH /r-studio/install-reed.R
RUN rm /install-reed.Rout
# a couple dependencies for Eric Greene's tidycensus
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y \
libproj-dev \
libudunits2-0 \
libudunits2-dev \
software-properties-common
# we need gdal > 2
RUN add-apt-repository -y ppa:ubuntugis/ubuntugis-unstable
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y \
gdal-bin \
python-gdal \
libgdal-dev
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/rgdal_1.4-3.tar.gz \
https://cran.r-project.org/src/contrib/Archive/rgeos/rgeos_0.3-28.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/uuid_0.1-2.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
rgdal_1.4-3.tar.gz \
rgeos_0.3-28.tar.gz \
uuid_0.1-2.tar.gz
RUN rm \
rgdal_1.4-3.tar.gz \
rgeos_0.3-28.tar.gz \
uuid_0.1-2.tar.gz
RUN R CMD BATCH /r-studio/install-rappdirs.R
RUN rm /install-rappdirs.Rout
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/tigris_0.7.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/tidycensus_0.9.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
tigris_0.7.tar.gz \
tidycensus_0.9.tar.gz
RUN rm \
tigris_0.7.tar.gz \
tidycensus_0.9.tar.gz
# new packages for fall 2018
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/tidyverse_1.2.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/promises_1.0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/future_1.12.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/doMC_1.3.5.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/foreach_1.4.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/doParallel_1.0.14.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/furrr_0.1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/drat_0.1.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/tidygraph_1.1.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/here_0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rticles_0.7.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/styler_1.1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/lintr_1.0.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/testthat_2.0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/reprex_0.2.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/microbenchmark_1.4-6.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/modelr_0.1.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/globals_0.12.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/listenv_0.7.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/iterators_1.0.10.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/enc_0.2.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rematch2_2.0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rex_1.1.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/stringdist_0.9.5.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/praise_1.0.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/profmem_0.5.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/bench_1.0.1.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
modelr_0.1.4.tar.gz \
prex_0.2.0.tar.gz \
reprex_0.2.1.tar.gz \
tidyverse_1.2.1.tar.gz \
promises_1.0.1.tar.gz \
globals_0.12.4.tar.gz \
listenv_0.7.0.tar.gz \
future_1.12.0.tar.gz \
iterators_1.0.10.tar.gz \
foreach_1.4.4.tar.gz \
doMC_1.3.5.tar.gz \
doParallel_1.0.14.tar.gz \
furrr_0.1.0.tar.gz \
drat_0.1.4.tar.gz \
tidygraph_1.1.2.tar.gz \
here_0.1.tar.gz \
rticles_0.7.tar.gz \
enc_0.2.0.tar.gz \
rematch2_2.0.1.tar.gz \
styler_1.1.0.tar.gz \
rex_1.1.2.tar.gz \
stringdist_0.9.5.1.tar.gz \
praise_1.0.0.tar.gz \
testthat_2.0.1.tar.gz \
lintr_1.0.3.tar.gz \
profmem_0.5.0.tar.gz \
microbenchmark_1.4-6.tar.gz \
bench_1.0.1.tar.gz
RUN rm \
modelr_0.1.4.tar.gz \
profmem_0.5.0.tar.gz \
praise_1.0.0.tar.gz \
rex_1.1.2.tar.gz \
stringdist_0.9.5.1.tar.gz \
enc_0.2.0.tar.gz \
rematch2_2.0.1.tar.gz \
globals_0.12.4.tar.gz \
iterators_1.0.10.tar.gz \
listenv_0.7.0.tar.gz \
tidyverse_1.2.1.tar.gz \
promises_1.0.1.tar.gz \
future_1.12.0.tar.gz \
doMC_1.3.5.tar.gz \
foreach_1.4.4.tar.gz \
doParallel_1.0.14.tar.gz \
furrr_0.1.0.tar.gz \
drat_0.1.4.tar.gz \
tidygraph_1.1.2.tar.gz \
here_0.1.tar.gz \
rticles_0.7.tar.gz \
styler_1.1.0.tar.gz \
lintr_1.0.3.tar.gz \
testthat_2.0.1.tar.gz \
reprex_0.2.1.tar.gz \
microbenchmark_1.4-6.tar.gz \
bench_1.0.1.tar.gz
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/pryr_0.1.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/profvis_0.3.5.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/RcppArmadillo_0.9.200.7.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/servr_0.13.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/xaringan_0.9.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rsconnect_0.8.13.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/PKI_0.1-5.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/RJSONIO_1.3-1.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/packrat_0.5.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/highlight_0.4.7.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/pkgdown_1.3.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/bookdown_0.9.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/blogdown_0.11.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/cowplot_0.9.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/influenceR_0.1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/Rook_1.1-1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rgexf_0.15.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/visNetwork_2.0.5.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/DiagrammeR_1.0.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/farver_1.1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/tweenr_1.0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/polyclip_1.10-0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/ggforce_0.2.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/RgoogleMaps_1.4.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rjson_0.2.20.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/mapproj_1.2.6.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/jpeg_0.1-8.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/geosphere_1.5-7.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/ggmap_3.0.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/ggraph_1.0.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/shiny_1.2.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/shinyjs_1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/flexdashboard_0.5.1.1.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
pryr_0.1.4.tar.gz \
profvis_0.3.5.tar.gz \
RcppArmadillo_0.9.200.7.1.tar.gz \
servr_0.13.tar.gz \
xaringan_0.9.tar.gz \
PKI_0.1-5.1.tar.gz \
RJSONIO_1.3-1.1.tar.gz \
packrat_0.5.0.tar.gz \
rsconnect_0.8.13.tar.gz \
highlight_0.4.7.2.tar.gz \
pkgdown_1.3.0.tar.gz \
bookdown_0.9.tar.gz \
blogdown_0.11.tar.gz \
cowplot_0.9.4.tar.gz \
influenceR_0.1.0.tar.gz \
Rook_1.1-1.tar.gz \
rgexf_0.15.3.tar.gz \
visNetwork_2.0.5.tar.gz \
DiagrammeR_1.0.0.tar.gz \
farver_1.1.0.tar.gz \
tweenr_1.0.1.tar.gz \
polyclip_1.10-0.tar.gz \
ggforce_0.2.1.tar.gz \
jpeg_0.1-8.tar.gz \
RgoogleMaps_1.4.3.tar.gz \
rjson_0.2.20.tar.gz \
mapproj_1.2.6.tar.gz \
geosphere_1.5-7.tar.gz \
ggmap_3.0.0.tar.gz \
ggraph_1.0.2.tar.gz \
shiny_1.2.0.tar.gz \
shinyjs_1.0.tar.gz \
flexdashboard_0.5.1.1.tar.gz
RUN rm \
pryr_0.1.4.tar.gz \
profvis_0.3.5.tar.gz \
RcppArmadillo_0.9.200.7.1.tar.gz \
servr_0.13.tar.gz \
xaringan_0.9.tar.gz \
PKI_0.1-5.1.tar.gz \
RJSONIO_1.3-1.1.tar.gz \
packrat_0.5.0.tar.gz \
rsconnect | # mccahill/r-studio
#
# VERSION 1.4
FROM ubuntu:18.04
MAINTAINER Mark McCahill "[email protected]"
RUN apt-get update ; \
apt-get install gnupg2 -y
# get R from a CRAN archive (we want the 3.5 version of R)
RUN echo "deb http://cran.rstudio.com/bin/linux/ubuntu bionic-cran35/" >> /etc/apt/sources.list
RUN DEBIAN_FRONTEND=noninteractive apt-key adv --keyserver keyserver.ubuntu.com --recv-keys E084DAB9
RUN apt-get update ; \
apt-get dist-upgrade -y
# we want OpenBLAS for faster linear algebra as described here: http://brettklamer.com/diversions/statistical/faster-blas-in-r/
RUN apt-get install -y \
apt-utils \
libopenblas-base
RUN apt-get update ; \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
r-base \
r-base-dev \
vim \
less \
net-tools \
inetutils-ping \
curl \
git \
telnet \
nmap \
socat \
software-properties-common \
wget \
sudo
RUN apt-get update ; \
DEBIAN_FRONTEND=noninteractive apt-get install -y \
libcurl4-gnutls-dev \
libgit2-dev \
libxml2-dev \
libssl-dev \
libudunits2-dev \
libpoppler-cpp-dev
# we need TeX for the rmarkdown package in RStudio, and pandoc is also useful
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y \
texlive \
texlive-base \
texlive-latex-extra \
texlive-pstricks \
pandoc
# R-Studio
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y \
gdebi-core \
libapparmor1
# RUN DEBIAN_FRONTEND=noninteractive wget https://download2.rstudio.org/rstudio-server-1.1.383-amd64.deb
RUN DEBIAN_FRONTEND=noninteractive wget https://s3.amazonaws.com/rstudio-ide-build/server/trusty/amd64/rstudio-server-1.2.907-amd64.deb
RUN DEBIAN_FRONTEND=noninteractive gdebi --n rstudio-server-1.2.907-amd64.deb
RUN rm rstudio-server-1.2.907-amd64.deb
# update the R packages we will need for knitr
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/xfun_0.5.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/knitr_1.22.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/yaml_2.2.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/Rcpp_1.0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/htmltools_0.3.6.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/caTools_1.17.1.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/bitops_1.0-6.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/digest_0.6.18.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/glue_1.3.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/stringr_1.4.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/markdown_0.9.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/highr_0.8.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/formatR_1.6.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/evaluate_0.13.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/mime_0.6.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/stringi_1.4.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/magrittr_1.5.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
bitops_1.0-6.tar.gz \
caTools_1.17.1.2.tar.gz \
digest_0.6.18.tar.gz \
Rcpp_1.0.1.tar.gz \
htmltools_0.3.6.tar.gz \
yaml_2.2.0.tar.gz \
stringi_1.4.3.tar.gz \
magrittr_1.5.tar.gz \
mime_0.6.tar.gz \
glue_1.3.1.tar.gz \
stringr_1.4.0.tar.gz \
highr_0.8.tar.gz \
formatR_1.6.tar.gz \
evaluate_0.13.tar.gz \
markdown_0.9.tar.gz \
xfun_0.5.tar.gz \
knitr_1.22.tar.gz
RUN rm \
evaluate_0.13.tar.gz \
formatR_1.6.tar.gz \
highr_0.8.tar.gz \
markdown_0.9.tar.gz \
stringi_1.4.3.tar.gz \
magrittr_1.5.tar.gz \
glue_1.3.1.tar.gz \
stringr_1.4.0.tar.gz \
xfun_0.5.tar.gz \
knitr_1.22.tar.gz \
yaml_2.2.0.tar.gz \
Rcpp_1.0.1.tar.gz \
htmltools_0.3.6.tar.gz \
caTools_1.17.1.2.tar.gz \
bitops_1.0-6.tar.gz \
digest_0.6.18.tar.gz \
mime_0.6.tar.gz
# dependency for R XML library
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y \
libxml2 \
libxml2-dev \
libssl-dev
# R packages we need for devtools - and we need devtools to be able to update the rmarkdown package
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/processx_3.3.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/ps_1.3.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/callr_3.2.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/crayon_1.3.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/assertthat_0.2.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/cli_1.1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/desc_1.2.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/prettyunits_1.0.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/backports_1.1.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rprojroot_1.3-2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/withr_2.1.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/pkgbuild_1.0.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rlang_0.3.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rstudioapi_0.10.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/pkgload_1.0.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rcmdcheck_1.3.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/remotes_2.0.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/xopen_1.0.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/clipr_0.5.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/clisymbols_1.2.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/sessioninfo_1.1.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/usethis_1.4.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/sys_3.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/askpass_1.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/openssl_1.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/brew_1.0-6.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/Archive/roxygen2/roxygen2_5.0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/fs_1.2.7.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/gh_1.0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rversions_1.0.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/git2r_0.25.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/devtools_2.0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/R6_2.4.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/httr_1.4.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/RCurl_1.95-4.12.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/BH_1.69.0-1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/xml2_1.2.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/curl_3.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/jsonlite_1.6.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/ini_0.3.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/downloader_0.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/memoise_1.1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/plyr_1.8.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/XML_3.98-1.19.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/whisker_0.3-2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/bitops_1.0-6.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
ps_1.3.0.tar.gz \
R6_2.4.0.tar.gz \
processx_3.3.0.tar.gz \
callr_3.2.0.tar.gz \
crayon_1.3.4.tar.gz \
assertthat_0.2.1.tar.gz \
cli_1.1.0.tar.gz \
backports_1.1.3.tar.gz \
rprojroot_1.3-2.tar.gz \
desc_1.2.0.tar.gz \
prettyunits_1.0.2.tar.gz \
withr_2.1.2.tar.gz \
pkgbuild_1.0.3.tar.gz \
rlang_0.3.3.tar.gz \
rstudioapi_0.10.tar.gz \
pkgload_1.0.2.tar.gz \
xopen_1.0.0.tar.gz \
sessioninfo_1.1.1.tar.gz \
rcmdcheck_1.3.2.tar.gz \
remotes_2.0.2.tar.gz \
whisker_0.3-2.tar.gz \
git2r_0.25.2.tar.gz \
fs_1.2.7.tar.gz \
ini_0.3.1.tar.gz \
jsonlite_1.6.tar.gz \
sys_3.1.tar.gz \
askpass_1.1.tar.gz \
openssl_1.3.tar.gz \
curl_3.3.tar.gz \
httr_1.4.0.tar.gz \
gh_1.0.1.tar.gz \
clipr_0.5.0.tar.gz \
clisymbols_1.2.0.tar.gz \
usethis_1.4.0.tar.gz \
memoise_1.1.0.tar.gz \
bitops_1.0-6.tar.gz \
RCurl_1.95-4.12.tar.gz \
plyr_1.8.4.tar.gz \
devtools_2.0.1.tar.gz \
brew_1.0-6.tar.gz \
roxygen2_5.0.1.tar.gz \
XML_3.98-1.19.tar.gz \
BH_1.69.0-1.tar.gz \
xml2_1.2.0.tar.gz \
rversions_1.0.3.tar.gz \
downloader_0.4.tar.gz
RUN rm \
ps_1.3.0.tar.gz \
callr_3.2.0.tar.gz \
R6_2.4.0.tar.gz \
processx_3.3.0.tar.gz \
crayon_1.3.4.tar.gz \
assertthat_0.2.1.tar.gz \
cli_1.1.0.tar.gz \
desc_1.2.0.tar.gz \
prettyunits_1.0.2.tar.gz \
backports_1.1.3.tar.gz \
rprojroot_1.3-2.tar.gz \
withr_2.1.2.tar.gz \
pkgbuild_1.0.3.tar.gz \
rlang_0.3.3.tar.gz \
rstudioapi_0.10.tar.gz \
clipr_0.5.0.tar.gz \
clisymbols_1.2.0.tar.gz \
pkgload_1.0.2.tar.gz \
sessioninfo_1.1.1.tar.gz \
xopen_1.0.0.tar.gz \
rcmdcheck_1.3.2.tar.gz \
remotes_2.0.2.tar.gz \
usethis_1.4.0.tar.gz \
ini_0.3.1.tar.gz \
jsonlite_1.6.tar.gz \
memoise_1.1.0.tar.gz \
whisker_0.3-2.tar.gz \
bitops_1.0-6.tar.gz \
RCurl_1.95-4.12.tar.gz \
plyr_1.8.4.tar.gz \
httr_1.4.0.tar.gz \
sys_3.1.tar.gz \
askpass_1.1.tar.gz \
openssl_1.3.tar.gz \
brew_1.0-6.tar.gz \
roxygen2_5.0.1.tar.gz \
BH_1.69.0-1.tar.gz \
XML_3.98-1.19.tar.gz \
xml2_1.2.0.tar.gz \
curl_3.3.tar.gz \
rversions_1.0.3.tar.gz \
git2r_0.25.2.tar.gz \
devtools_2.0.1.tar.gz \
downloader_0.4.tar.gz
# the CRAN install from source fails because a server at MIT will not respond
# install from source
ADD ./conf /r-studio
#RUN R CMD BATCH /r-studio/install-nloptr.R
#RUN rm /install-nloptr.Rout
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/nloptr_1.2.1.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
nloptr_1.2.1.tar.gz
RUN rm \
nloptr_1.2.1.tar.gz
# libraries Eric Green wanted
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/lubridate_1.7.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/lazyeval_0.2.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/utf8_1.1.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/fansi_0.4.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/pillar_1.3.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/pkgconfig_2.0.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/tibble_2.1.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/ggplot2_3.1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/RColorBrewer_1.1-2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/dichromat_2.0-0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/colorspace_1.4-1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/munsell_0.5.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/labeling_0.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/viridisLite_0.3.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/scales_1.0.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/stargazer_5.2.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/reshape2_1.4.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/gtable_0.3.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/proto_1.0.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/minqa_1.2.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/RcppEigen_0.3.3.5.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/lme4_1.1-21.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
lubridate_1.7.4.tar.gz \
gtable_0.3.0.tar.gz \
RColorBrewer_1.1-2.tar.gz \
dichromat_2.0-0.tar.gz \
colorspace_1.4-1.tar.gz \
munsell_0.5.0.tar.gz \
labeling_0.3.tar.gz \
viridisLite_0.3.0.tar.gz \
scales_1.0.0.tar.gz \
proto_1.0.0.tar.gz \
reshape2_1.4.3.tar.gz \
lazyeval_0.2.2.tar.gz \
utf8_1.1.4.tar.gz \
fansi_0.4.0.tar.gz \
pillar_1.3.1.tar.gz \
pkgconfig_2.0.2.tar.gz \
tibble_2.1.1.tar.gz \
ggplot2_3.1.0.tar.gz \
stargazer_5.2.2.tar.gz \
minqa_1.2.4.tar.gz \
RcppEigen_0.3.3.5.0.tar.gz \
lme4_1.1-21.tar.gz
RUN rm \
lubridate_1.7.4.tar.gz \
gtable_0.3.0.tar.gz \
RColorBrewer_1.1-2.tar.gz \
dichromat_2.0-0.tar.gz \
colorspace_1.4-1.tar.gz \
munsell_0.5.0.tar.gz \
labeling_0.3.tar.gz \
viridisLite_0.3.0.tar.gz \
scales_1.0.0.tar.gz \
proto_1.0.0.tar.gz \
reshape2_1.4.3.tar.gz \
lazyeval_0.2.2.tar.gz \
utf8_1.1.4.tar.gz \
fansi_0.4.0.tar.gz \
pillar_1.3.1.tar.gz \
pkgconfig_2.0.2.tar.gz \
tibble_2.1.1.tar.gz \
ggplot2_3.1.0.tar.gz \
stargazer_5.2.2.tar.gz \
minqa_1.2.4.tar.gz \
RcppEigen_0.3.3.5.0.tar.gz \
lme4_1.1-21.tar.gz
# more libraries Mine Cetinakya-Rundel asked for
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/openintro_1.7.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/bindr_0.1.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/bindrcpp_0.2.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/plogr_0.2.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/purrr_0.3.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/tidyselect_0.2.5.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/dplyr_0.8.0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/DBI_1.0.0.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
openintro_1.7.1.tar.gz \
DBI_1.0.0.tar.gz \
plogr_0.2.0.tar.gz \
bindr_0.1.1.tar.gz \
bindrcpp_0.2.2.tar.gz \
purrr_0.3.2.tar.gz \
tidyselect_0.2.5.tar.gz \
dplyr_0.8.0.1.tar.gz
RUN rm \
openintro_1.7.1.tar.gz \
DBI_1.0.0.tar.gz \
bindr_0.1.1.tar.gz \
bindrcpp_0.2.2.tar.gz \
plogr_0.2.0.tar.gz \
purrr_0.3.2.tar.gz \
tidyselect_0.2.5.tar.gz \
dplyr_0.8.0.1.tar.gz
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/chron_2.3-53.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/data.table_1.12.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rematch_1.0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/cellranger_1.1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/tidyr_0.8.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/googlesheets_0.3.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/hms_0.4.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/readr_1.3.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/selectr_0.4-1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rvest_0.3.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/pbkrtest_0.4-7.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
chron_2.3-53.tar.gz \
data.table_1.12.0.tar.gz \
rematch_1.0.1.tar.gz \
cellranger_1.1.0.tar.gz \
tidyr_0.8.3.tar.gz \
hms_0.4.2.tar.gz \
readr_1.3.1.tar.gz \
googlesheets_0.3.0.tar.gz \
selectr_0.4-1.tar.gz \
rvest_0.3.2.tar.gz \
pbkrtest_0.4-7.tar.gz
RUN rm \
chron_2.3-53.tar.gz \
data.table_1.12.0.tar.gz \
rematch_1.0.1.tar.gz \
cellranger_1.1.0.tar.gz \
tidyr_0.8.3.tar.gz \
googlesheets_0.3.0.tar.gz \
hms_0.4.2.tar.gz \
readr_1.3.1.tar.gz \
selectr_0.4-1.tar.gz \
rvest_0.3.2.tar.gz \
pbkrtest_0.4-7.tar.gz
# Shiny
#RUN wget https://download3.rstudio.org/ubuntu-12.04/x86_64/shiny-server-1.5.3.838-amd64.deb
RUN wget https://download3.rstudio.org/ubuntu-14.04/x86_64/shiny-server-1.5.7.907-amd64.deb
RUN DEBIAN_FRONTEND=noninteractive gdebi -n shiny-server-1.5.7.907-amd64.deb
RUN rm shiny-server-1.5.7.907-amd64.deb
RUN R CMD BATCH /r-studio/install-Shiny.R
RUN rm /install-Shiny.Rout
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/SparseM_1.77.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/MatrixModels_0.4-1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/quantreg_5.38.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/sp_1.3-1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/maptools_0.9-5.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/haven_2.1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/ellipsis_0.1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/forcats_0.4.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/readxl_1.3.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/zip_2.0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/openxlsx_4.1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rio_0.5.16.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/abind_1.4-5.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/carData_3.0-2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/car_3.0-2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/mosaicData_0.17.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/latticeExtra_0.6-28.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/gridExtra_2.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/ggdendro_0.1-20.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/mnormt_1.5-5.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/psych_1.8.12.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/generics_0.0.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/broom_0.5.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/reshape_0.8.8.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/progress_1.2.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/GGally_1.4.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/ggstance_0.3.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/ggformula_0.9.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/mosaicCore_0.6.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/ggrepel_0.8.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/base64enc_0.1-3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/crosstalk_1.0.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/htmlwidgets_1.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/png_0.1-7.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/raster_2.8-19.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/viridis_0.5.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/leaflet_2.0.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/mosaic_1.5.0.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
SparseM_1.77.tar.gz \
MatrixModels_0.4-1.tar.gz \
quantreg_5.38.tar.gz \
sp_1.3-1.tar.gz \
maptools_0.9-5.tar.gz \
ellipsis_0.1.0.tar.gz \
forcats_0.4.0.tar.gz \
haven_2.1.0.tar.gz \
progress_1.2.0.tar.gz \
readxl_1.3.1.tar.gz \
zip_2.0.1.tar.gz \
openxlsx_4.1.0.tar.gz \
rio_0.5.16.tar.gz \
abind_1.4-5.tar.gz \
carData_3.0-2.tar.gz \
car_3.0-2.tar.gz \
mosaicData_0.17.0.tar.gz \
latticeExtra_0.6-28.tar.gz \
gridExtra_2.3.tar.gz \
ggdendro_0.1-20.tar.gz \
mnormt_1.5-5.tar.gz \
psych_1.8.12.tar.gz \
generics_0.0.2.tar.gz \
broom_0.5.1.tar.gz \
reshape_0.8.8.tar.gz \
GGally_1.4.0.tar.gz \
mosaicCore_0.6.0.tar.gz \
ggstance_0.3.1.tar.gz \
ggformula_0.9.1.tar.gz \
ggrepel_0.8.0.tar.gz \
base64enc_0.1-3.tar.gz \
crosstalk_1.0.0.tar.gz \
htmlwidgets_1.3.tar.gz \
png_0.1-7.tar.gz \
raster_2.8-19.tar.gz \
viridis_0.5.1.tar.gz \
leaflet_2.0.2.tar.gz \
mosaic_1.5.0.tar.gz
RUN rm \
SparseM_1.77.tar.gz \
MatrixModels_0.4-1.tar.gz \
quantreg_5.38.tar.gz \
sp_1.3-1.tar.gz \
maptools_0.9-5.tar.gz \
ellipsis_0.1.0.tar.gz \
forcats_0.4.0.tar.gz \
haven_2.1.0.tar.gz \
readxl_1.3.1.tar.gz \
zip_2.0.1.tar.gz \
openxlsx_4.1.0.tar.gz \
rio_0.5.16.tar.gz \
abind_1.4-5.tar.gz \
carData_3.0-2.tar.gz \
car_3.0-2.tar.gz \
mosaicData_0.17.0.tar.gz \
latticeExtra_0.6-28.tar.gz \
gridExtra_2.3.tar.gz \
ggdendro_0.1-20.tar.gz \
mnormt_1.5-5.tar.gz \
psych_1.8.12.tar.gz \
generics_0.0.2.tar.gz \
broom_0.5.1.tar.gz \
reshape_0.8.8.tar.gz \
progress_1.2.0.tar.gz \
GGally_1.4.0.tar.gz \
mosaicCore_0.6.0.tar.gz \
ggstance_0.3.1.tar.gz \
ggformula_0.9.1.tar.gz \
ggrepel_0.8.0.tar.gz \
base64enc_0.1-3.tar.gz \
crosstalk_1.0.0.tar.gz \
htmlwidgets_1.3.tar.gz \
png_0.1-7.tar.gz \
raster_2.8-19.tar.gz \
leaflet_2.0.2.tar.gz \
viridis_0.5.1.tar.gz \
mosaic_1.5.0.tar.gz
# Cliburn Chan requested these:
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/RColorBrewer_1.1-2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/maps_3.3.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/zoo_1.8-5.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/gcookbook_2.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/corrplot_0.84.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
RColorBrewer_1.1-2.tar.gz \
maps_3.3.0.tar.gz \
zoo_1.8-5.tar.gz \
gcookbook_2.0.tar.gz \
corrplot_0.84.tar.gz
RUN rm \
RColorBrewer_1.1-2.tar.gz \
maps_3.3.0.tar.gz \
zoo_1.8-5.tar.gz \
gcookbook_2.0.tar.gz \
corrplot_0.84.tar.gz
# install rmarkdown
RUN R CMD BATCH /r-studio/install-rmarkdown.R
RUN rm /install-rmarkdown.Rout
# Cliburn also wanted these
# but they have mega-dependencies, so intall them the other way
RUN R CMD BATCH /r-studio/install-dendextend.R
RUN rm /install-dendextend.Rout
RUN R CMD BATCH /r-studio/install-igraph.R
RUN rm /install-igraph.Rout
# install sparklyr so we can do Spark via Livy
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/config_0.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/dbplyr_1.3.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rappdirs_0.3.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/r2d3_0.2.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/forge_0.2.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/sparklyr_1.0.0.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
config_0.3.tar.gz \
dbplyr_1.3.0.tar.gz \
rappdirs_0.3.1.tar.gz \
r2d3_0.2.3.tar.gz \
forge_0.2.0.tar.gz \
sparklyr_1.0.0.tar.gz
RUN rm \
config_0.3.tar.gz \
dbplyr_1.3.0.tar.gz \
rappdirs_0.3.1.tar.gz \
r2d3_0.2.3.tar.gz \
forge_0.2.0.tar.gz \
sparklyr_1.0.0.tar.gz
# some more TeX so that papaja can be installed and students can create APA templates in Rmarkdown
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y \
texlive \
texlive-publishers \
texlive-fonts-extra \
texlive-latex-extra \
texlive-humanities \
lmodern
# papaja
RUN R CMD BATCH /r-studio/install-papaja.R
RUN rm /install-papaja.Rout
# install templates and examples from Reed and the Tufte package
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/BHH2_2016.05.31.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
BHH2_2016.05.31.tar.gz
RUN rm \
BHH2_2016.05.31.tar.gz
RUN R CMD BATCH /r-studio/install-reed.R
RUN rm /install-reed.Rout
# a couple dependencies for Eric Greene's tidycensus
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y \
libproj-dev \
libudunits2-0 \
libudunits2-dev \
software-properties-common
# we need gdal > 2
RUN add-apt-repository -y ppa:ubuntugis/ubuntugis-unstable
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y \
gdal-bin \
python-gdal \
libgdal-dev
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/rgdal_1.4-3.tar.gz \
https://cran.r-project.org/src/contrib/Archive/rgeos/rgeos_0.3-28.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/uuid_0.1-2.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
rgdal_1.4-3.tar.gz \
rgeos_0.3-28.tar.gz \
uuid_0.1-2.tar.gz
RUN rm \
rgdal_1.4-3.tar.gz \
rgeos_0.3-28.tar.gz \
uuid_0.1-2.tar.gz
RUN R CMD BATCH /r-studio/install-rappdirs.R
RUN rm /install-rappdirs.Rout
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/tigris_0.7.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/tidycensus_0.9.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
tigris_0.7.tar.gz \
tidycensus_0.9.tar.gz
RUN rm \
tigris_0.7.tar.gz \
tidycensus_0.9.tar.gz
# new packages for fall 2018
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/tidyverse_1.2.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/promises_1.0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/future_1.12.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/doMC_1.3.5.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/foreach_1.4.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/doParallel_1.0.14.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/furrr_0.1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/drat_0.1.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/tidygraph_1.1.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/here_0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rticles_0.7.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/styler_1.1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/lintr_1.0.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/testthat_2.0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/reprex_0.2.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/microbenchmark_1.4-6.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/modelr_0.1.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/globals_0.12.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/listenv_0.7.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/iterators_1.0.10.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/enc_0.2.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rematch2_2.0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rex_1.1.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/stringdist_0.9.5.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/praise_1.0.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/profmem_0.5.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/bench_1.0.1.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
modelr_0.1.4.tar.gz \
prex_0.2.0.tar.gz \
reprex_0.2.1.tar.gz \
tidyverse_1.2.1.tar.gz \
promises_1.0.1.tar.gz \
globals_0.12.4.tar.gz \
listenv_0.7.0.tar.gz \
future_1.12.0.tar.gz \
iterators_1.0.10.tar.gz \
foreach_1.4.4.tar.gz \
doMC_1.3.5.tar.gz \
doParallel_1.0.14.tar.gz \
furrr_0.1.0.tar.gz \
drat_0.1.4.tar.gz \
tidygraph_1.1.2.tar.gz \
here_0.1.tar.gz \
rticles_0.7.tar.gz \
enc_0.2.0.tar.gz \
rematch2_2.0.1.tar.gz \
styler_1.1.0.tar.gz \
rex_1.1.2.tar.gz \
stringdist_0.9.5.1.tar.gz \
praise_1.0.0.tar.gz \
testthat_2.0.1.tar.gz \
lintr_1.0.3.tar.gz \
profmem_0.5.0.tar.gz \
microbenchmark_1.4-6.tar.gz \
bench_1.0.1.tar.gz
RUN rm \
modelr_0.1.4.tar.gz \
profmem_0.5.0.tar.gz \
praise_1.0.0.tar.gz \
rex_1.1.2.tar.gz \
stringdist_0.9.5.1.tar.gz \
enc_0.2.0.tar.gz \
rematch2_2.0.1.tar.gz \
globals_0.12.4.tar.gz \
iterators_1.0.10.tar.gz \
listenv_0.7.0.tar.gz \
tidyverse_1.2.1.tar.gz \
promises_1.0.1.tar.gz \
future_1.12.0.tar.gz \
doMC_1.3.5.tar.gz \
foreach_1.4.4.tar.gz \
doParallel_1.0.14.tar.gz \
furrr_0.1.0.tar.gz \
drat_0.1.4.tar.gz \
tidygraph_1.1.2.tar.gz \
here_0.1.tar.gz \
rticles_0.7.tar.gz \
styler_1.1.0.tar.gz \
lintr_1.0.3.tar.gz \
testthat_2.0.1.tar.gz \
reprex_0.2.1.tar.gz \
microbenchmark_1.4-6.tar.gz \
bench_1.0.1.tar.gz
RUN DEBIAN_FRONTEND=noninteractive wget \
https://archive.linux.duke.edu/cran/src/contrib/pryr_0.1.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/profvis_0.3.5.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/RcppArmadillo_0.9.200.7.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/servr_0.13.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/xaringan_0.9.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rsconnect_0.8.13.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/PKI_0.1-5.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/RJSONIO_1.3-1.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/packrat_0.5.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/highlight_0.4.7.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/pkgdown_1.3.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/bookdown_0.9.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/blogdown_0.11.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/cowplot_0.9.4.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/influenceR_0.1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/Rook_1.1-1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rgexf_0.15.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/visNetwork_2.0.5.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/DiagrammeR_1.0.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/farver_1.1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/tweenr_1.0.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/polyclip_1.10-0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/ggforce_0.2.1.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/RgoogleMaps_1.4.3.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/rjson_0.2.20.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/mapproj_1.2.6.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/jpeg_0.1-8.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/geosphere_1.5-7.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/ggmap_3.0.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/ggraph_1.0.2.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/shiny_1.2.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/shinyjs_1.0.tar.gz \
https://archive.linux.duke.edu/cran/src/contrib/flexdashboard_0.5.1.1.tar.gz
RUN DEBIAN_FRONTEND=noninteractive R CMD INSTALL \
pryr_0.1.4.tar.gz \
profvis_0.3.5.tar.gz \
RcppArmadillo_0.9.200.7.1.tar.gz \
servr_0.13.tar.gz \
xaringan_0.9.tar.gz \
PKI_0.1-5.1.tar.gz \
RJSONIO_1.3-1.1.tar.gz \
packrat_0.5.0.tar.gz \
rsconnect_0.8.13.tar.gz \
highlight_0.4.7.2.tar.gz \
pkgdown_1.3.0.tar.gz \
bookdown_0.9.tar.gz \
blogdown_0.11.tar.gz \
cowplot_0.9.4.tar.gz \
influenceR_0.1.0.tar.gz \
Rook_1.1-1.tar.gz \
rgexf_0.15.3.tar.gz \
visNetwork_2.0.5.tar.gz \
DiagrammeR_1.0.0.tar.gz \
farver_1.1.0.tar.gz \
tweenr_1.0.1.tar.gz \
polyclip_1.10-0.tar.gz \
ggforce_0.2.1.tar.gz \
jpeg_0.1-8.tar.gz \
RgoogleMaps_1.4.3.tar.gz \
rjson_0.2.20.tar.gz \
mapproj_1.2.6.tar.gz \
geosphere_1.5-7.tar.gz \
ggmap_3.0.0.tar.gz \
ggraph_1.0.2.tar.gz \
shiny_1.2.0.tar.gz \
shinyjs_1.0.tar.gz \
flexdashboard_0.5.1.1.tar.gz
RUN rm \
pryr_0.1.4.tar.gz \
profvis_0.3.5.tar.gz \
RcppArmadillo_0.9.200.7.1.tar.gz \
servr_0.13.tar.gz \
xaringan_0.9.tar.gz \
PKI_0.1-5.1.tar.gz \
RJSONIO_1.3-1.1.tar.gz \
packrat_0.5.0.tar.gz \
rsconnect | null |
300 | 1324476da8d000b901c9863b7e324f3010f7db38 | add slapd. | add slapd.
| FROM debian:wheezy
MAINTAINER Semen Pisarev <[email protected]>
ENV DEBIAN_FRONTEND noninteractive
RUN echo "APT::Install-Recommends 0;" >> /etc/apt/apt.conf.d/01norecommends \
&& echo "APT::Install-Suggests 0;" >> /etc/apt/apt.conf.d/01norecommends
ENV IREDMAIL_VERSION 0.9.2
# TODO: Replace hostname
ENV HOSTNAME mx.phoneyou.net
ENV DOCKER_LDAP_DN dc=phoneyou,dc=net
# Local sources (for speed-up)
COPY ./sources.list.163 /etc/apt/sources.list
# Install some necessary packages
RUN echo 'deb http://inverse.ca/debian wheezy wheezy' > \
/etc/apt/sources.list.d/00-inverse-ca.list \
&& apt-key adv --keyserver keys.gnupg.net --recv-key 0x810273C4 \
&& apt-get -q update \
&& apt-get install -y -q \
apt-utils \
&& apt-get install -y -q \
curl \
wget \
bzip2 \
dialog \
openssl \
openldap \
rsync \
python-pygments \
python-ldap \
rsyslog \
dovecot-core \
dovecot-imapd \
dovecot-ldap \
dovecot-lmtpd \
dovecot-managesieved \
dovecot-mysql \
dovecot-pop3d \
dovecot-sieve \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& rm -f /etc/apt/sources.list.d/00-inverse-ca.list
# Set working directory
WORKDIR /opt/iredmail
# Copy files, extract iRedMail, remove archive, copy & configure tools
COPY ./files ./
RUN cp -rl iRedMail-"${IREDMAIL_VERSION}"/* . \
&& rm -rf iRedMail-"${IREDMAIL_VERSION}"* \
&& mkdir -p /opt/itools \
&& cp ./tools/* /opt/itools \
&& mkdir -p /var/vmail/backup \
&& mv ./backup.sh /var/vmail/backup \
&& sed -i 's/dc=phoneyou,dc=net/'"$DOCKER_LDAP_DN"'/' \
/opt/itools/create_mail_user_OpenLDAP.py
# Fake `uname` and `hostname`
RUN mv /bin/uname /bin/uname_ \
&& mv /bin/hostname /bin/hostname_ \
&& cp -l ./hostname ./uname /bin/
# Set hostname
RUN echo $HOSTNAME > /etc/hostname \
&& echo $HOSTNAME > /etc/mailname \
&& mkdir -p /etc/apache2/ \
&& echo 'ServerName '$HOSTNAME > /etc/apache2/httpd.conf
# Make link to Apache log files
RUN rm -rf /var/www/apache2/ \
&& mkdir -p /var/log/apache2/www/ /var/www/ \
&& ln -s /var/log/apache2/www/ /var/www/apache2 \
&& chown -R www-data:www-data /var/www/ /var/log/apache2/
# Make ClamAV socket file (to avoid installation warning)
RUN touch /tmp/clamd.socket \
&& chmod -Rf 766 /tmp/clamd.socket
# Avoid getty errors in log files
RUN sed -ri 's/^[1-6]:[2-6]{2,4}:.*/#\0/' /etc/inittab
# Enable services startup during install,
# run iRedMail installation & remove unneeded,
# disable services startup during install
RUN sed -i 's/ 101/ 0/' /usr/sbin/policy-rc.d \
&& IREDMAIL_DEBUG='NO' \
AUTO_USE_EXISTING_CONFIG_FILE=y \
AUTO_INSTALL_WITHOUT_CONFIRM=y \
AUTO_CLEANUP_REMOVE_SENDMAIL=y \
AUTO_CLEANUP_REMOVE_MOD_PYTHON=y \
AUTO_CLEANUP_REPLACE_FIREWALL_RULES=n \
AUTO_CLEANUP_RESTART_IPTABLES=y \
AUTO_CLEANUP_REPLACE_MYSQL_CONFIG=y \
AUTO_CLEANUP_RESTART_POSTFIX=n \
bash iRedMail.sh \
&& apt-get purge -y -q dialog apt-utils \
&& apt-get autoremove -y -q \
&& apt-get clean -y -q \
&& rm -rf /var/lib/apt/lists/* \
&& sed -i 's/ 0/ 101/' /usr/sbin/policy-rc.d
# Process initial CSV
RUN if [ -e mail_users.csv ]; \
then \
python /opt/itools/create_mail_user_OpenLDAP.py ./mail_users.csv \
&& mv ./mail_users.csv.ldif ldifs/20_mail_users.ldif; \
fi
# Run slapd as root
RUN rm -rf /etc/ldap/slapd.d \
&& sed -i 's/openldap/root/g' /etc/default/slapd
# TODO: Replace ldap password (LDAP_ROOTPW)
# Copy initial ldif and add all ldifs to ldap
RUN cp /opt/iredmail/conf/ldap_init.ldif ldifs/00_ldap_init.ldif \
&& service slapd start \
&& for f in ldifs/*.ldif; \
do \
( ldapadd -D 'cn=Manager,'"$DOCKER_LDAP_DN" -w phoneyou$ldap -f "$f" || \
ldapmodify -v -D 'cn=Manager,'"$DOCKER_LDAP_DN" -w phoneyou$ldap -f "$f" ); \
done
# Encrypy iRedMail.tips
# TODO: Replace tips password (random)
RUN echo 'YWYxNWY5NTMwZjVmNmNhOTNmZDY1Zj' | \
openssl enc -in /opt/iredmail/iRedMail.tips -out /opt/iRedMail.tips.enc \
-e -aes256 -pass stdin
# Schedule backup script
RUN (crontab -l 2>/dev/null; \
echo "0 4 * * * /bin/bash /var/vmail/backup/backup.sh") | \
crontab -
# Force users to change passwords
RUN echo "plugins.append('ldap_force_change_password_in_days')" \
>> /opt/iredapd/settings.py \
&& echo "CHANGE_PASSWORD_DAYS = 365" >> /opt/iredapd/settings.py \
&& echo "CHANGE_PASSWORD_MESSAGE = 'Please change your password in webmail: https://$HOSTNAME/mail/'" \
>> /opt/iredapd/settings.py
WORKDIR /opt
# Remove distr, return `uname` and `hostname`
RUN rm -rf /opt/iredmail /root/.bash_history \
&& rm -f /bin/uname /bin/hostname \
&& mv /bin/uname_ /bin/uname \
&& mv /bin/hostname_ /bin/hostname
# Open Ports:
# Apache: 80/tcp, 443/tcp Postfix: 25/tcp, 587/tcp
# Dovecot: 110/tcp, 143/tcp, 993/tcp, 995/tcp OpenLDAP: 389/tcp, 636/tcp
EXPOSE 80 443 25 587 110 143 993 995 389 636
# Volume for backups
VOLUME /backups
# Start all services
CMD ["/sbin/init","2"]
| FROM debian:wheezy
MAINTAINER Semen Pisarev <[email protected]>
ENV DEBIAN_FRONTEND noninteractive
RUN echo "APT::Install-Recommends 0;" >> /etc/apt/apt.conf.d/01norecommends \
&& echo "APT::Install-Suggests 0;" >> /etc/apt/apt.conf.d/01norecommends
ENV IREDMAIL_VERSION 0.9.2
# TODO: Replace hostname
ENV HOSTNAME mx.phoneyou.net
ENV DOCKER_LDAP_DN dc=phoneyou,dc=net
# Local sources (for speed-up)
COPY ./sources.list.163 /etc/apt/sources.list
# Install some necessary packages
RUN echo 'deb http://inverse.ca/debian wheezy wheezy' > \
/etc/apt/sources.list.d/00-inverse-ca.list \
&& apt-key adv --keyserver keys.gnupg.net --recv-key 0x810273C4 \
&& apt-get -q update \
&& apt-get install -y -q \
apt-utils \
&& apt-get install -y -q \
curl \
wget \
bzip2 \
dialog \
openssl \
slapd \
rsync \
python-pygments \
python-ldap \
rsyslog \
dovecot-core \
dovecot-imapd \
dovecot-ldap \
dovecot-lmtpd \
dovecot-managesieved \
dovecot-mysql \
dovecot-pop3d \
dovecot-sieve \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& rm -f /etc/apt/sources.list.d/00-inverse-ca.list
# Set working directory
WORKDIR /opt/iredmail
# Copy files, extract iRedMail, remove archive, copy & configure tools
COPY ./files ./
RUN cp -rl iRedMail-"${IREDMAIL_VERSION}"/* . \
&& rm -rf iRedMail-"${IREDMAIL_VERSION}"* \
&& mkdir -p /opt/itools \
&& cp ./tools/* /opt/itools \
&& mkdir -p /var/vmail/backup \
&& mv ./backup.sh /var/vmail/backup \
&& sed -i 's/dc=phoneyou,dc=net/'"$DOCKER_LDAP_DN"'/' \
/opt/itools/create_mail_user_OpenLDAP.py
# Fake `uname` and `hostname`
RUN mv /bin/uname /bin/uname_ \
&& mv /bin/hostname /bin/hostname_ \
&& cp -l ./hostname ./uname /bin/
# Set hostname
RUN echo $HOSTNAME > /etc/hostname \
&& echo $HOSTNAME > /etc/mailname \
&& mkdir -p /etc/apache2/ \
&& echo 'ServerName '$HOSTNAME > /etc/apache2/httpd.conf
# Make link to Apache log files
RUN rm -rf /var/www/apache2/ \
&& mkdir -p /var/log/apache2/www/ /var/www/ \
&& ln -s /var/log/apache2/www/ /var/www/apache2 \
&& chown -R www-data:www-data /var/www/ /var/log/apache2/
# Make ClamAV socket file (to avoid installation warning)
RUN touch /tmp/clamd.socket \
&& chmod -Rf 766 /tmp/clamd.socket
# Avoid getty errors in log files
RUN sed -ri 's/^[1-6]:[2-6]{2,4}:.*/#\0/' /etc/inittab
# Enable services startup during install,
# run iRedMail installation & remove unneeded,
# disable services startup during install
RUN sed -i 's/ 101/ 0/' /usr/sbin/policy-rc.d \
&& IREDMAIL_DEBUG='NO' \
AUTO_USE_EXISTING_CONFIG_FILE=y \
AUTO_INSTALL_WITHOUT_CONFIRM=y \
AUTO_CLEANUP_REMOVE_SENDMAIL=y \
AUTO_CLEANUP_REMOVE_MOD_PYTHON=y \
AUTO_CLEANUP_REPLACE_FIREWALL_RULES=n \
AUTO_CLEANUP_RESTART_IPTABLES=y \
AUTO_CLEANUP_REPLACE_MYSQL_CONFIG=y \
AUTO_CLEANUP_RESTART_POSTFIX=n \
bash iRedMail.sh \
&& apt-get purge -y -q dialog apt-utils \
&& apt-get autoremove -y -q \
&& apt-get clean -y -q \
&& rm -rf /var/lib/apt/lists/* \
&& sed -i 's/ 0/ 101/' /usr/sbin/policy-rc.d
# Process initial CSV
RUN if [ -e mail_users.csv ]; \
then \
python /opt/itools/create_mail_user_OpenLDAP.py ./mail_users.csv \
&& mv ./mail_users.csv.ldif ldifs/20_mail_users.ldif; \
fi
# Run slapd as root
RUN rm -rf /etc/ldap/slapd.d \
&& sed -i 's/openldap/root/g' /etc/default/slapd
# TODO: Replace ldap password (LDAP_ROOTPW)
# Copy initial ldif and add all ldifs to ldap
RUN cp /opt/iredmail/conf/ldap_init.ldif ldifs/00_ldap_init.ldif \
&& service slapd start \
&& for f in ldifs/*.ldif; \
do \
( ldapadd -D 'cn=Manager,'"$DOCKER_LDAP_DN" -w phoneyou$ldap -f "$f" || \
ldapmodify -v -D 'cn=Manager,'"$DOCKER_LDAP_DN" -w phoneyou$ldap -f "$f" ); \
done
# Encrypy iRedMail.tips
# TODO: Replace tips password (random)
RUN echo 'YWYxNWY5NTMwZjVmNmNhOTNmZDY1Zj' | \
openssl enc -in /opt/iredmail/iRedMail.tips -out /opt/iRedMail.tips.enc \
-e -aes256 -pass stdin
# Schedule backup script
RUN (crontab -l 2>/dev/null; \
echo "0 4 * * * /bin/bash /var/vmail/backup/backup.sh") | \
crontab -
# Force users to change passwords
RUN echo "plugins.append('ldap_force_change_password_in_days')" \
>> /opt/iredapd/settings.py \
&& echo "CHANGE_PASSWORD_DAYS = 365" >> /opt/iredapd/settings.py \
&& echo "CHANGE_PASSWORD_MESSAGE = 'Please change your password in webmail: https://$HOSTNAME/mail/'" \
>> /opt/iredapd/settings.py
WORKDIR /opt
# Remove distr, return `uname` and `hostname`
RUN rm -rf /opt/iredmail /root/.bash_history \
&& rm -f /bin/uname /bin/hostname \
&& mv /bin/uname_ /bin/uname \
&& mv /bin/hostname_ /bin/hostname
# Open Ports:
# Apache: 80/tcp, 443/tcp Postfix: 25/tcp, 587/tcp
# Dovecot: 110/tcp, 143/tcp, 993/tcp, 995/tcp OpenLDAP: 389/tcp, 636/tcp
EXPOSE 80 443 25 587 110 143 993 995 389 636
# Volume for backups
VOLUME /backups
# Start all services
CMD ["/sbin/init","2"]
| null |
69 | 7ab359c3639d925b641e2e9c6195ddf35acd731b | Bumped source to 20200311-426bedf | Bumped source to 20200311-426bedf
| FROM docker.pkg.github.com/dock0/ssh/ssh:20200311-865905c
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:20200311-426bedf
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 |
157 | e6c9219191101a714488539ddf04b5f491b8c973 | add python-pip package, install websocket-client pip package | add python-pip package, install websocket-client pip package
useful for the slack client
| FROM ubuntu:yakkety
MAINTAINER Florian Klink <[email protected]>
RUN apt-get update && apt-get install -y dirmngr apt-transport-https
RUN apt-key adv --keyserver ha.pool.sks-keyservers.net --recv-keys 11E9DE8848F2B65222AA75B8D1820DB22A11534E
RUN bash -c "echo 'deb https://weechat.org/ubuntu yakkety main' >/etc/apt/sources.list.d/weechat.list"
RUN bash -c "echo 'deb-src https://weechat.org/ubuntu yakkety main' >>/etc/apt/sources.list.d/weechat.list"
RUN apt-get update && apt-get install -y \
weechat weechat-plugins weechat-scripts \
bitlbee bitlbee-plugin-otr \
rxvt-unicode-256color
RUN locale-gen en_US.UTF-8
RUN locale-gen de_DE.UTF-8
RUN ln -sf /usr/share/zoneinfo/Europe/Berlin /etc/localtime
ADD bitlbee.conf /etc/bitlbee/bitlbee.conf
ADD run.sh /run.sh
RUN chmod +x /run.sh
CMD ["/run.sh"]
| FROM ubuntu:yakkety
MAINTAINER Florian Klink <[email protected]>
RUN apt-get update && apt-get install -y dirmngr apt-transport-https
RUN apt-key adv --keyserver ha.pool.sks-keyservers.net --recv-keys 11E9DE8848F2B65222AA75B8D1820DB22A11534E
RUN bash -c "echo 'deb https://weechat.org/ubuntu yakkety main' >/etc/apt/sources.list.d/weechat.list"
RUN bash -c "echo 'deb-src https://weechat.org/ubuntu yakkety main' >>/etc/apt/sources.list.d/weechat.list"
RUN apt-get update && apt-get install -y \
weechat weechat-plugins weechat-scripts \
python-pip \
bitlbee bitlbee-plugin-otr \
rxvt-unicode-256color
RUN locale-gen en_US.UTF-8
RUN locale-gen de_DE.UTF-8
RUN ln -sf /usr/share/zoneinfo/Europe/Berlin /etc/localtime
ADD bitlbee.conf /etc/bitlbee/bitlbee.conf
RUN pip install websocket-client
ADD run.sh /run.sh
RUN chmod +x /run.sh
CMD ["/run.sh"]
| null |
2135 | 5c7fa385590235d2911fda6c821bd9c0b1c15c9d | Bump debian from 11.3-slim to 11.4-slim in /dev/ci/docker_linux (#107865) | Bump debian from 11.3-slim to 11.4-slim in /dev/ci/docker_linux (#107865)
| # Flutter (https://flutter.dev) Development Environment for Linux
# ===============================================================
#
# This environment passes all Linux Flutter Doctor checks and is sufficient
# for building Android applications and running Flutter tests.
#
# To build iOS applications, a Mac development environment is necessary.
#
# This includes applications and sdks that are needed only by the CI system
# for performing pushes to production, and so this image is quite a bit larger
# than strictly needed for just building Flutter apps.
# Last manual update 2021-09-24 (changing this comment will re-build image)
FROM debian@sha256:f6957458017ec31c4e325a76f39d6323c4c21b0e31572efa006baa927a160891
MAINTAINER Flutter Developers <[email protected]>
RUN apt-get update -y && \
apt-get upgrade -y
# Install basics
RUN apt-get install -y --no-install-recommends \
git \
wget \
curl \
zip \
unzip \
apt-transport-https \
ca-certificates \
gnupg
# Add repo for chrome stable
RUN wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
RUN echo 'deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main' | \
tee /etc/apt/sources.list.d/google-chrome.list
# Add repo for gcloud sdk and install it
RUN echo "deb [signed-by=/usr/share/keyrings/cloud.google.gpg] https://packages.cloud.google.com/apt cloud-sdk main" | \
tee -a /etc/apt/sources.list.d/google-cloud-sdk.list
RUN curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | \
apt-key --keyring /usr/share/keyrings/cloud.google.gpg add -
RUN apt-get update && apt-get install -y google-cloud-sdk && \
gcloud config set core/disable_usage_reporting true && \
gcloud config set component_manager/disable_update_check true
# Add repo for OpenJDK 8 from JFrog.io
RUN wget -q -O - https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public | apt-key add -
RUN echo 'deb [arch=amd64] https://adoptopenjdk.jfrog.io/adoptopenjdk/deb bullseye main' | \
tee /etc/apt/sources.list.d/adoptopenjdk.list
# Install the dependencies needed for the rest of the build.
RUN apt-get update && apt-get install -y --no-install-recommends \
adoptopenjdk-8-hotspot \
build-essential \
default-jdk-headless \
gcc \
google-chrome-stable \
lib32stdc++6 \
libglu1-mesa \
libstdc++6 \
locales \
nodejs \
npm \
ruby \
ruby-dev && \
apt-get clean
ENV JAVA_HOME="/usr/lib/jvm/adoptopenjdk-8-hotspot-amd64"
# Install the Android SDK Dependency.
ENV ANDROID_SDK_URL="https://dl.google.com/android/repository/sdk-tools-linux-4333796.zip"
ENV ANDROID_TOOLS_ROOT="/opt/android_sdk"
RUN mkdir -p "${ANDROID_TOOLS_ROOT}"
RUN mkdir -p ~/.android
# Silence warning.
RUN touch ~/.android/repositories.cfg
ENV ANDROID_SDK_ARCHIVE="${ANDROID_TOOLS_ROOT}/archive"
RUN wget --progress=dot:giga "${ANDROID_SDK_URL}" -O "${ANDROID_SDK_ARCHIVE}"
RUN unzip -q -d "${ANDROID_TOOLS_ROOT}" "${ANDROID_SDK_ARCHIVE}"
# Suppressing output of sdkmanager to keep log size down
# (it prints install progress WAY too often).
RUN yes "y" | "${ANDROID_TOOLS_ROOT}/tools/bin/sdkmanager" "tools" > /dev/null
RUN yes "y" | "${ANDROID_TOOLS_ROOT}/tools/bin/sdkmanager" "build-tools;28.0.3" > /dev/null
RUN yes "y" | "${ANDROID_TOOLS_ROOT}/tools/bin/sdkmanager" "platforms;android-30" > /dev/null
RUN yes "y" | "${ANDROID_TOOLS_ROOT}/tools/bin/sdkmanager" "platform-tools" > /dev/null
RUN yes "y" | "${ANDROID_TOOLS_ROOT}/tools/bin/sdkmanager" "cmdline-tools;latest" > /dev/null
RUN yes "y" | "${ANDROID_TOOLS_ROOT}/tools/bin/sdkmanager" "extras;android;m2repository" > /dev/null
RUN yes "y" | "${ANDROID_TOOLS_ROOT}/tools/bin/sdkmanager" "extras;google;m2repository" > /dev/null
RUN yes "y" | "${ANDROID_TOOLS_ROOT}/tools/bin/sdkmanager" "patcher;v4" > /dev/null
RUN rm "${ANDROID_SDK_ARCHIVE}"
ENV PATH="${ANDROID_TOOLS_ROOT}/tools:${PATH}"
ENV PATH="${ANDROID_TOOLS_ROOT}/tools/bin:${PATH}"
# Silence warnings when accepting android licenses.
RUN mkdir -p ~/.android
RUN touch ~/.android/repositories.cfg
# Add npm to path.
ENV PATH="/usr/bin:${PATH}"
# Set locale to en_US
RUN locale-gen en_US "en_US.UTF-8" && DEBIAN_FRONTEND=noninteractive dpkg-reconfigure locales
ENV LANG en_US.UTF-8
# Install dependencies for desktop flutter run
RUN apt-get install -y --no-install-recommends \
clang \
cmake \
libgtk-3-dev \
ninja-build \
pkg-config \
x11-xserver-utils \
xauth \
xvfb && \
apt-get upgrade -y --no-install-recommends && \
apt-get clean
| null | null |
342 | 89a9660bad6598b1529e3162a04dd07c80203dd0 | Add bird deb to dockerfile. | Add bird deb to dockerfile.
| FROM fastlynet101/base
MAINTAINER [email protected]
LABEL fastly.net101.name=bird
WORKDIR /root
RUN dpkg -i ./bird_1.6.3-1+xenial+1_amd64.deb
RUN apt-get install -y inotify-tools netcat
RUN mkdir /run/bird
COPY ./run.sh /bin/run.sh
COPY ./birdwatcher /bin/birdwatcher
COPY ./webserver /bin/webserver
ENTRYPOINT ["/bin/run.sh"]
| FROM fastlynet101/base
MAINTAINER [email protected]
LABEL fastly.net101.name=bird
WORKDIR /root
ADD bird_1.6.3-1+xenial+1_amd64.deb /
RUN DEBIAN_FRONTEND=noninteractive dpkg -i /bird_1.6.3-1+xenial+1_amd64.deb
RUN apt-get install -y inotify-tools netcat
RUN mkdir /run/bird
COPY ./run.sh /bin/run.sh
COPY ./birdwatcher /bin/birdwatcher
COPY ./webserver /bin/webserver
ENTRYPOINT ["/bin/run.sh"]
| null |
2325 | dc1a5c687b1ec67581b535fe2c48b71eb431d4d4 | Bumped source to 20201214-8c2fdda | Bumped source to 20201214-8c2fdda
| FROM docker.pkg.github.com/dock0/arch/arch:20201214-b82e33b
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 | null |
2284 | 35ad5ec9de7041f4eacbb7b68e711a1524ef6d5b | bump shiny to 1.4.4 | bump shiny to 1.4.4
update shiny md5 hash
|
# docker build --no-cache -t math-server:latest --build-arg http_proxy="http://proxy:8080" --build-arg https_proxy="http://proxy:8080" .
# In case you're building the image behind a proxy, use
# docker build --no-cache -t math-server:latest --build-arg http_proxy="http://proxy:8080" --build-arg https_proxy="http://proxy:8080" .
# 8787 for RStudio
# 8000 for Jupyter
# # docker run -d -p 8787:8787 -p 8000:8000 --name ms1 math-server
FROM centos:7
MAINTAINER felipenoris <[email protected]>
WORKDIR /root
ENV JULIA_PKGDIR /usr/local/julia/share/julia/site
RUN echo "export PATH=/usr/local/sbin:/usr/local/bin:${PATH}" >> /etc/profile.d/local-bin.sh \
&& echo "export CPATH=/usr/include/glpk" >> /etc/profile.d/glpk-include.sh \
&& source /etc/profile
RUN yum update -y && yum install -y epel-release && yum clean all
RUN yum update -y && yum install -y \
p7zip \
p7zip-plugins \
bison \
bzip2 \
bzip2-devel \
cmake \
curl-devel \
expat-devel \
flex \
gcc \
gcc-c++ \
gcc-gfortran \
gettext-devel \
glibc-devel \
java-1.8.0-openjdk-devel \
lynx \
libcurl \
libcurl-devel \
libedit-devel libffi-devel \
libgcc \
libstdc++-static \
m4 \
make \
man \
nano \
nload \
htop \
openssl \
openssl098e \
openssl-devel \
patch \
perl-ExtUtils-MakeMaker \
svn \
unzip \
valgrind \
sqlite \
sqlite-devel \
vim \
wget \
zlib \
zlib-devel \
zip \
&& yum clean all
# GIT
# http://tecadmin.net/install-git-2-0-on-centos-rhel-fedora/#
ENV GIT_VER 2.9.3
RUN wget https://www.kernel.org/pub/software/scm/git/git-$GIT_VER.tar.gz \
&& tar xf git-$GIT_VER.tar.gz && cd git-$GIT_VER \
&& make -j"$(nproc --all)" prefix=/usr/local all \
&& make prefix=/usr/local -j"$(nproc --all)" install \
&& cd .. && rm -f git-$GIT_VER.tar.gz && rm -rf git-$GIT_VER
# Makes git use https by default
RUN git config --global url."https://".insteadOf git://
# llvm needs CMake 2.8.12.2 or higher
# https://cmake.org/download/
ENV CMAKE_VER_MAJ 3.6
ENV CMAKE_VER_MIN .1
ENV CMAKE_VER $CMAKE_VER_MAJ$CMAKE_VER_MIN
RUN wget https://cmake.org/files/v$CMAKE_VER_MAJ/cmake-$CMAKE_VER.tar.gz \
&& tar xf cmake-$CMAKE_VER.tar.gz && cd cmake-$CMAKE_VER \
&& ./bootstrap && make -j"$(nproc --all)" && make -j"$(nproc --all)" install \
&& cd .. && rm -rf cmake-$CMAKE_VER && rm -f cmake-$CMAKE_VER.tar.gz \
&& echo "export CMAKE_ROOT=/usr/local/share/cmake-$CMAKE_VER_MAJ" > /etc/profile.d/cmake-root.sh \
&& source /etc/profile
# Python 2
# https://github.com/h2oai/h2o-2/wiki/Installing-python-2.7-on-centos-6.3.-Follow-this-sequence-exactly-for-centos-machine-only
ENV PYTHON2_VER_MAJ 2.7
ENV PYTHON2_VER_MIN .11
ENV PYTHON2_VER $PYTHON2_VER_MAJ$PYTHON2_VER_MIN
RUN wget https://www.python.org/ftp/python/$PYTHON2_VER/Python-$PYTHON2_VER.tar.xz \
&& tar xf Python-$PYTHON2_VER.tar.xz \
&& cd Python-$PYTHON2_VER \
&& ./configure --prefix=/usr/local/python$PYTHON2_VER_MAJ --enable-shared --with-cxx-main=/usr/bin/g++ \
&& make -j"$(nproc --all)" \
&& make -j"$(nproc --all)" altinstall \
&& echo "/usr/local/lib" > /etc/ld.so.conf.d/usrLocalLib.conf \
&& ldconfig \
&& cd .. && rm -f Python-$PYTHON2_VER.tar.xz && rm -rf Python-$PYTHON2_VER
# pip for Python 2
RUN curl -O https://bootstrap.pypa.io/get-pip.py \
&& /usr/local/python$PYTHON2_VER_MAJ/bin/python$PYTHON2_VER_MAJ get-pip.py \
&& rm -f get-pip.py
# Python 3
ENV PYTHON3_VER_MAJ 3.5
ENV PYTHON3_VER_MIN .1
ENV PYTHON3_VER $PYTHON3_VER_MAJ$PYTHON3_VER_MIN
RUN wget https://www.python.org/ftp/python/$PYTHON3_VER/Python-$PYTHON3_VER.tar.xz \
&& tar xf Python-$PYTHON3_VER.tar.xz && cd Python-$PYTHON3_VER \
&& ./configure --prefix=/usr/local --enable-shared --with-cxx-main=/usr/bin/g++ \
&& echo "zlib zlibmodule.c -I\$(prefix)/include -L\$(exec_prefix)/lib -lz" >> ./Modules/Setup \
&& make -j"$(nproc --all)" \
&& make -j"$(nproc --all)" altinstall \
&& ln -s /usr/local/bin/python$PYTHON3_VER_MAJ /usr/local/bin/python3 \
&& ln -s /usr/local/bin/pip$PYTHON3_VER_MAJ /usr/local/bin/pip3 \
&& ldconfig \
&& cd .. && rm -f Python-$PYTHON3_VER.tar.xz && rm -rf Python-$PYTHON3_VER
# Upgrade pip
# https://pip.pypa.io/en/stable/installing/#upgrading-pip
RUN pip2 install -U pip
RUN pip3 install -U pip
# LLVM deps
# TODO: check if python-devel is needed
RUN yum -y install \
libedit-devel \
libffi-devel \
swig \
python-devel \
&& yum clean all
# LLVM
# Clang /tools/clang
# CompilerRT /projects/compiler-rt
# libc++ /projects/libcxx
# libc++abi /projects/libcxxabi
# lldb /tools/lldb
ENV LLVM_VER 3.7.1
RUN wget http://llvm.org/releases/$LLVM_VER/llvm-$LLVM_VER.src.tar.xz \
&& wget http://llvm.org/releases/$LLVM_VER/cfe-$LLVM_VER.src.tar.xz \
&& wget http://llvm.org/releases/$LLVM_VER/compiler-rt-$LLVM_VER.src.tar.xz \
&& wget http://llvm.org/releases/$LLVM_VER/libcxx-$LLVM_VER.src.tar.xz \
&& wget http://llvm.org/releases/$LLVM_VER/libcxxabi-$LLVM_VER.src.tar.xz \
&& wget http://llvm.org/releases/$LLVM_VER/lldb-$LLVM_VER.src.tar.xz \
&& mkdir llvm \
&& tar xf llvm-$LLVM_VER.src.tar.xz -C llvm --strip-components=1 \
&& mkdir llvm/tools/clang \
&& tar xf cfe-$LLVM_VER.src.tar.xz -C llvm/tools/clang --strip-components=1 \
&& mkdir llvm/projects/compiler-rt \
&& tar xf compiler-rt-$LLVM_VER.src.tar.xz -C llvm/projects/compiler-rt --strip-components=1 \
&& mkdir llvm/projects/libcxx \
&& tar xf libcxx-$LLVM_VER.src.tar.xz -C llvm/projects/libcxx --strip-components=1 \
&& mkdir llvm/projects/libcxxabi \
&& tar xf libcxxabi-$LLVM_VER.src.tar.xz -C llvm/projects/libcxxabi --strip-components=1 \
&& mkdir llvm/tools/lldb \
&& tar xf lldb-$LLVM_VER.src.tar.xz -C llvm/tools/lldb --strip-components=1 \
&& rm -f *tar.xz
# http://llvm.org/docs/CMake.html
# find / -iname 'ffi.h'
# cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_BUILD_TYPE=Release -DLLVM_BUILD_LLVM_DYLIB=ON -DLLVM_ENABLE_PIC=ON -DLLVM_ENABLE_FFI=ON -DFFI_INCLUDE_DIR=/usr/lib64/libffi-3.0.5/include ../llvm
RUN mkdir ~/llvm_build \
&& cd ~/llvm_build \
&& ../llvm/configure --enable-shared
RUN cd ~/llvm_build \
&& make ENABLE_OPTIMIZED=1 DISABLE_ASSERTIONS=1 -j"$(nproc --all)" \
&& make -j"$(nproc --all)" install \
&& ln -s /usr/local/lib/libLLVM-$LLVM_VER.so /usr/local/lib/libLLVM.so \
&& ldconfig \
&& cd .. && rm -rf llvm_build && rm -rf llvm
# node
ENV NODE_VER 6.3.1
RUN wget https://github.com/nodejs/node/archive/v$NODE_VER.tar.gz \
&& tar xf v$NODE_VER.tar.gz && cd node-$NODE_VER \
&& ./configure \
&& make -j"$(nproc --all)" \
&& make -j"$(nproc --all)" install \
&& cd .. && rm -f v$NODE_VER.tar.gz && rm -rf node-$NODE_VER
# reinstall npm with the lastest version
RUN npm cache clean \
&& curl -L https://npmjs.org/install.sh | sh
# Makes npm work behind proxy if http_proxy variable is set
RUN npm config set proxy ${http_proxy} \
&& npm config set https-proxy ${https_proxy} \
&& npm config set registry http://registry.npmjs.org/ \
&& npm set strict-ssl false
# TeX
RUN yum -y install perl-Tk perl-Digest-MD5 && yum clean all
ADD texlive.profile texlive.profile
# non-interactive http://www.tug.org/pipermail/tex-live/2008-June/016323.html
RUN wget http://mirror.ctan.org/systems/texlive/tlnet/install-tl-unx.tar.gz \
&& mkdir install-tl \
&& tar xf install-tl-unx.tar.gz -C install-tl --strip-components=1 \
&& ./install-tl/install-tl -profile ./texlive.profile \
&& rm -rf install-tl && rm -f install-tl-unx.tar.gz
# TODO: replace hardcoded 2015
RUN echo "export PATH=/usr/local/texlive/2015/bin/x86_64-linux:${PATH}" >> /etc/profile.d/local-bin.sh \
&& source /etc/profile
# R
RUN yum -y install \
lapack-devel \
blas-devel \
libicu-devel \
unixodbc-devel \
QuantLib \
QuantLib-devel \
boost \
boost-devel \
libxml2 \
libxml2-devel \
R \
&& yum clean all
# Set default CRAN Mirror
RUN echo 'options(repos = c(CRAN="http://www.vps.fmvz.usp.br/CRAN/"))' >> /usr/lib64/R/library/base/R/Rprofile
# RStudio
ENV RSTUDIO_VER 0.99.902
RUN wget https://download2.rstudio.org/rstudio-server-rhel-$RSTUDIO_VER-x86_64.rpm \
&& echo "aa018deb6c93501caa60e61d0339b338 rstudio-server-rhel-$RSTUDIO_VER-x86_64.rpm" > RSTUDIOMD5 \
&& RESULT=$(md5sum -c RSTUDIOMD5) \
&& echo ${RESULT} > ~/check-rstudio-md5.txt \
&& yum -y install --nogpgcheck rstudio-server-rhel-$RSTUDIO_VER-x86_64.rpm \
&& yum clean all \
&& rm -f rstudio-server-rhel-$RSTUDIO_VER-x86_64.rpm && rm -f RSTUDIOMD5
# Libreoffice
ENV LIBREOFFICE_VER 5.2.0
ENV LIBREOFFICE_VER_MINOR .4
RUN wget http://mirror.nbtelecom.com.br/tdf/libreoffice/stable/$LIBREOFFICE_VER/rpm/x86_64/LibreOffice_${LIBREOFFICE_VER}_Linux_x86-64_rpm.tar.gz \
&& echo "90c9b7b8aa6799ca1140a8d06c874838 LibreOffice_${LIBREOFFICE_VER}_Linux_x86-64_rpm.tar.gz" > LIBREOFFICEMD5 \
&& RESULT=$(md5sum -c LIBREOFFICEMD5) \
&& echo ${RESULT} > ~/check-libreoffice-md5.txt \
&& tar xf LibreOffice_${LIBREOFFICE_VER}_Linux_x86-64_rpm.tar.gz \
&& cd LibreOffice_${LIBREOFFICE_VER}${LIBREOFFICE_VER_MINOR}_Linux_x86-64_rpm/RPMS \
&& yum -y install *.rpm \
&& yum clean all \
&& cd && rm -f LIBREOFFICEMD5 && rm -f LibreOffice_${LIBREOFFICE_VER}_Linux_x86-64_rpm.tar.gz \
&& rm -rf LibreOffice_${LIBREOFFICE_VER}${LIBREOFFICE_VER_MINOR}_Linux_x86-64_rpm
# Shiny
ENV SHINY_VER 1.4.2.786
RUN R -e 'install.packages("shiny")' \
&& wget https://download3.rstudio.org/centos5.9/x86_64/shiny-server-$SHINY_VER-rh5-x86_64.rpm \
&& echo "45160b08eed65c89e0a9d03c58eba595 shiny-server-$SHINY_VER-rh5-x86_64.rpm" > SHINYSERVERMD5 \
&& RESULT=$(md5sum -c SHINYSERVERMD5) \
&& echo ${RESULT} > ~/check-shiny-server-md5.txt \
&& yum -y install --nogpgcheck shiny-server-$SHINY_VER-rh5-x86_64.rpm \
&& yum clean all \
&& cd && rm -f SHINYSERVERMD5 && rm -f shiny-server-$SHINY_VER-rh5-x86_64.rpm
# Julia
ENV JULIA_VER_MAJ 0.4
ENV JULIA_VER_MIN .6
ENV JULIA_VER $JULIA_VER_MAJ$JULIA_VER_MIN
RUN wget https://github.com/JuliaLang/julia/releases/download/v$JULIA_VER/julia-$JULIA_VER-full.tar.gz \
&& tar xf julia-$JULIA_VER-full.tar.gz
ADD julia-Make.user julia-$JULIA_VER/Make.user
ADD cpuid cpuid
RUN cd cpuid && make
RUN cpuid/cpuid >> julia-$JULIA_VER/Make.user
RUN cd julia-$JULIA_VER \
&& make -j"$(nproc --all)" \
&& make -j"$(nproc --all)" install \
&& cd .. && rm -rf julia-$JULIA_VER && rm -f julia-$JULIA_VER-full.tar.gz \
&& ln -s /usr/local/julia/bin/julia /usr/local/bin/julia
# Init package folder on root's home folder
RUN julia -e 'Pkg.init()'
# Jupyter
# Add python2.7 kernel: https://github.com/jupyter/jupyter/issues/71
RUN pip2 install \
IPython \
notebook \
ipykernel \
ipyparallel \
enum34 \
&& /usr/local/python2.7/bin/python2.7 -m ipykernel install
RUN pip3 install \
IPython \
jupyterhub \
notebook \
ipykernel \
ipyparallel \
enum34 \
&& python3 -m ipykernel install
RUN npm install -g configurable-http-proxy
# ipywidgets not working for now...
# ipywidgets
# https://ipywidgets.readthedocs.org/en/latest/dev_install.html
#RUN git clone https://github.com/ipython/ipywidgets
#RUN wget https://github.com/ipython/ipywidgets/archive/4.1.1.tar.gz \
#&& tar xf 4.1.1.tar.gz
#RUN cd ipywidgets-4.1.1 \
#&& pip2 install -v -e . \
#&& pip3 install -v -e . \
#&& cd jupyter-js-widgets \
# && npm install \
# && cd ../widgetsnbextension \
# && npm install \
# && npm run update:widgets \
# && pip2 install -v -e . \
# && pip3 install -v -e .
# RUN rm -rf ipywidgets-4.1.1 && rm -f 4.1.1.tar.gz
# Support for other languages
# https://github.com/ipython/ipython/wiki/IPython-kernels-for-other-languages
# Add Julia kernel
# https://github.com/JuliaLang/IJulia.jl
# https://github.com/JuliaLang/IJulia.jl/issues/341
RUN julia -e 'Pkg.add("IJulia"); using IJulia'
# registers global kernel
RUN cp -r ~/.local/share/jupyter/kernels/julia-$JULIA_VER_MAJ /usr/local/share/jupyter/kernels
# rewrite julia's kernel configuration
ADD julia-kernel.json /usr/local/share/jupyter/kernels/julia-$JULIA_VER_MAJ/kernel.json
# R
# http://irkernel.github.io/installation/
RUN yum -y install czmq-devel && yum clean all
RUN R -e 'install.packages(c("pbdZMQ", "devtools"))' \
&& R -e 'devtools::install_github(paste0("IRkernel/", c("repr", "IRdisplay", "IRkernel")))'
# Optional configuration file for svn
ADD svn-servers /etc/subversion/servers
# coin SYMPHONY
# https://projects.coin-or.org/SYMPHONY
ENV SYMPHONY_VER 5.6
RUN git clone --branch=stable/$SYMPHONY_VER https://github.com/coin-or/SYMPHONY SYMPHONY-$SYMPHONY_VER \
&& cd SYMPHONY-$SYMPHONY_VER \
&& git clone --branch=stable/0.8 https://github.com/coin-or-tools/BuildTools/ \
&& chmod u+x ./BuildTools/get.dependencies.sh \
&& ./BuildTools/get.dependencies.sh fetch --no-third-party \
&& ./configure \
&& make -j"$(nproc --all)" \
&& make -j"$(nproc --all)" install \
&& cd .. && rm -rf SYMPHONY-$SYMPHONY_VER
#################
## LIBS
#################
RUN yum -y install \
freetype-devel \
glpk-devel \
hdf5 \
lcms2-devel \
libjpeg-devel \
libpng \
libpng-devel \
libtiff-devel \
libwebp-devel \
libxslt-devel \
libxml2-devel \
libzip-devel \
pandoc \
tcl-devel \
tk-devel \
&& yum clean all
ADD libs libs
RUN cd libs && make && ./install_libs
RUN cd libs && source ./install_JSAnimation.sh
RUN cd libs && source ./install_excel_readers.sh
# http://ipyparallel.readthedocs.org/en/latest/
RUN ipcluster nbextension enable
####################
## Services
####################
# 8787 for RStudio
# 8000 for Jupyter
EXPOSE 8787 8000
CMD /usr/sbin/sssd && /usr/lib/rstudio-server/bin/rserver && jupyterhub --no-ssl
| null | null |
336 | 754b298aa221880457553f715846183812ca2c74 | Update Dockerfile | Update Dockerfile
| FROM ubuntu
MAINTAINER Justin Plock <[email protected]>
RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /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.3.0/snowizard-service-1.3.0.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/java-7-openjdk-amd64
# Snowizard port
EXPOSE 8080
# Administration port
EXPOSE 8180
CMD /usr/bin/java -d64 -server -jar /opt/snowizard/snowizard.jar server /etc/snowizard.yml
| FROM debian:jessie
MAINTAINER Justin Plock <[email protected]>
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && 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-application/1.4.0/snowizard-application-1.4.0.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/java-7-openjdk-amd64
# Snowizard port
EXPOSE 8080
# Administration port
EXPOSE 8180
CMD /usr/bin/java -d64 -server -jar /opt/snowizard/snowizard.jar server /etc/snowizard.yml
| null |
187 | cb4816475983c013f6d4bf4a8b85cc558e938f09 | Bumped source to 20201210-e8d1594 | Bumped source to 20201210-e8d1594
| null | null | null |
2182 | 30510e5c137abca1cf822921dd6277b43cd68e7f | Bump to Postfixadmin v3.0 | Bump to Postfixadmin v3.0
| FROM alpine
MAINTAINER Konstantin Jakobi <[email protected]>
ENV VERSION=2.93
EXPOSE 80
RUN apk add --no-cache bash curl dovecot mysql-client php-imap php-mysqli \
&& curl --location https://downloads.sourceforge.net/project/postfixadmin/postfixadmin/postfixadmin-${VERSION}/postfixadmin-${VERSION}.tar.gz | tar xzf - \
&& mv postfixadmin* /www \
&& mkdir /config
COPY config.php php.ini run.sh /
CMD /run.sh
| null | null |
393 | 84472153dacd449ae661acb55336c950fec05029 | Bumped source to 20200831-140ca1d | Bumped source to 20200831-140ca1d
| FROM docker.pkg.github.com/dock0/ssh/ssh:20200831-24f76e7
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:20200831-140ca1d
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 |
237 | a05ffc658881fd7122ac2d772fa8f1abc64d13b8 | Bumped source to 20200402-2cf0be5 | Bumped source to 20200402-2cf0be5
| FROM docker.pkg.github.com/dock0/arch/arch:20200402-3236609
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:20200402-2cf0be5
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 |
2272 | b258aa7c08677ff9d5089f98f6d3c44e7ffdefac | Bumped source to 20201001-e90cd1b | Bumped source to 20201001-e90cd1b
| FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20201001-7ceb967
MAINTAINER akerl <[email protected]>
RUN pacman -S --noconfirm s6 execline musl-amylum
ADD service /service
ADD init /init
CMD ["/init"]
| null | null |
Subsets and Splits