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 <wadim.kruse@gmail.com> # Install curl RUN apt-get update && apt-get install -y curl # Create user RUN addgroup eventstore \ && adduser --ingroup eventstore --disabled-password --gecos "Database" eventstore \ && usermo...
# Dockerfile for EventStore # http://geteventstore.com/ FROM debian:jessie MAINTAINER Wadim Kruse <wadim.kruse@gmail.com> # Install curl RUN apt-get update && apt-get install -y curl # Create user RUN addgroup eventstore \ && adduser --ingroup eventstore --disabled-password --gecos "Database" eventstore \ && usermo...
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 ENTR...
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 ENTRYPOI...
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 <chaiyd.cn@gmail.com>" 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 yearni...
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/el...
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 <me@lesaker.org> 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 \ ...
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 \ ...
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 <anthony.romanovich@gmail.com> 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 http...
FROM ubuntu:12.04 MAINTAINER Anton Romanovich <anthony.romanovich@gmail.com> 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 http...
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/Chon...
# 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/Chon...
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-stor...
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-stor...
code refactoring
2181
10a5357b9ea6ab574c43153e85070566b21c1806
Dockerfile version bump
Dockerfile version bump
FROM debian:stretch MAINTAINER David Personette <dperson@gmail.com> # Install kibana RUN export DEBIAN_FRONTEND='noninteractive' && \ export url='https://artifacts.elastic.co/downloads/kibana' && \ export version='5.6.2' && \ export shasum='e9ef4f8dee16b1274d4b0399c0df938a5c99d450f8b8f8b1e56b341' && \ ...
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...
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 <mat@stellar.org> 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 <mat@stellar.org> 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 <me@lesaker.org> 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...
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 <jack@signalfuse.com> 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...
FROM phusion/baseimage:0.9.11 MAINTAINER Jack Lindamood <jack@signalfuse.com> 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...
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 <me@lesaker.org> 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 <me@lesaker.org> 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 <me@lesaker.org> 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 <me@lesaker.org> 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 <me@lesaker.org> 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...
FROM docker.pkg.github.com/dock0/service/service:20200619-d7233b1 MAINTAINER akerl <me@lesaker.org> 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...
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 <mykola.rybak@gmail.com> 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-awsc...
FROM python:3.6-slim MAINTAINER Nikolay Rybak <mykola.rybak@gmail.com> 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-awsc...
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 shogun@shogun-toolbox.org 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 ...
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 <michael.kahle@yahoo.de> ENV POSTGIS_MAJOR 2.5 #ENV POSTGIS_MAJOR 2.3 #ENV POSTGIS_VERSION 2.3.2+dfsg-1~exp2.pgdg80+1 #...
# 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 <michael.kahle@yahoo.de> ENV POSTGIS_MAJOR 2.5 #ENV POSTGIS_MAJOR 2.3 #ENV POSTGIS_VERSION 2.3.2+dfsg-1~exp2.pgdg80+1 #...
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 <me@lesaker.org> 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 <me@lesaker.org> 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 <me@lesaker.org> 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 <me@lesaker.org> 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 <think@hotmail.de> 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}"...
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 <me@lesaker.org> 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 <me@lesaker.org> 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 <me@lesaker.org> 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 <me@lesaker.org> 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 <john.dilts@enstratius.com> 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/...
FROM ubuntu:latest MAINTAINER John Dilts <john.dilts@enstratius.com> 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/...
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 MAINT...
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 <me@lesaker.org> 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 <me@lesaker.org> 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 <me@lesaker.org> 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...
FROM docker.pkg.github.com/dock0/service/service:20210717-656a897 MAINTAINER akerl <me@lesaker.org> 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...
code refactoring, bug fix
298
bd89aebe29cfad5d234b1d8c15fec73f25037089
add hadoop-base dockerfile
add hadoop-base dockerfile
FROM lsw1991abc/sshd:0.1 LABEL maintainer="lsw1991abc@gmail.com" 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....
FROM lsw1991abc/sshd:0.1 LABEL maintainer="lsw1991abc@gmail.com" 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 ...
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 "long@sanbi.ac.za" # Upda...
############################################################ # Dockerfile to build 16S rRNA diversity analysis ############################################################ # Set the base image to Ubuntu FROM ubuntu:latest # File Author / Maintainer MAINTAINER Long Yee "long@sanbi.ac.za" WORKDIR /root ##############...
feature addition
2156
6b6745df3012cdd34794f859f921a01a16acced1
Add missing php modules
Add missing php modules
FROM ubuntu MAINTAINER Samir L. Boulema <sboulema@gmail.com> 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/...
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 WOR...
null
bug fix
103
1adf6734d4631d78f9cc59b83cfbca8c7a2079cf
update 0.13.6
update 0.13.6
FROM alpine:edge MAINTAINER Sven Walter <sven@wltr.eu> 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/testi...
FROM alpine:edge MAINTAINER Sven Walter <sven@wltr.eu> 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/testi...
maintenance/other
30
e13800e616dd398d8cf10cdbcd36a2a03693638a
Fix spruce link in dockerimage
Fix spruce link in dockerimage Signed-off-by: Alan Moran <c0e0381e40435974913b100e98533438ffac68dd@allstate.com>
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_...
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_...
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 <me@lesaker.org> 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 <me@lesaker.org> 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...
FROM docker.pkg.github.com/dock0/service/service:20200807-07fff0c MAINTAINER akerl <me@lesaker.org> 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...
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 <322af3f2df10918c6ef5280f56be0b711278b1ae@dsr-corporation.com>
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 \...
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 \...
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 <antoine.girard@sapk.fr> #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...
# A docker file to run php-fpm server behind nginx or other frontend FROM alpine:edge MAINTAINER Antoine GIRARD <antoine.girard@sapk.fr> #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...
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 <me@lesaker.org> 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 <me@lesaker.org> 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 ...
# 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 ...
maintenance/other
216
3477297f1be0d05a99375e19562f11076d7b521e
Add php5-gd
Add php5-gd
FROM debian:jessie MAINTAINER andre487 "andrey.prokopyuk@gmail.com" 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 /...
FROM debian:jessie MAINTAINER andre487 "andrey.prokopyuk@gmail.com" 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/rewrit...
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 <me@lesaker.org> 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 <me@lesaker.org> 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 <me@lesaker.org> 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...
null
maintenance/other
86
95713ddc77c8a343930418f86ec8f2c4a3b65474
update dockerfile
update dockerfile
FROM node:7.10 MAINTAINER brook.shi iwxiaot@gmail.com 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 typescript@2.3.3 RUN npm install gulp -D...
FROM node:7.10 MAINTAINER brook.shi iwxiaot@gmail.com 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 typescript@2.3.3 RUN npm install gulp -D...
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 <me@lesaker.org> 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 <me@lesaker.org> 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) <buildbot@julialang.org> ENV JULIA_GPG 3673DF529D9049477F76B37566E3C7D...
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 <me@lesaker.org> 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 <me@lesaker.org> 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 ins...
# 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 \ ...
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 <me@lesaker.org> 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...
FROM docker.pkg.github.com/dock0/service/service:20200525-e38fbcf MAINTAINER akerl <me@lesaker.org> 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...
bug fix
413
6210e825a70b85ab48c07d699231cd995204b445
Upgrade the container to F23
Upgrade the container to F23 - use dnf - add missing package
FROM fedora:22 MAINTAINER jberkus@redhat.com 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 /tm...
FROM fedora:23 MAINTAINER jberkus@redhat.com 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/l...
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/z...
null
maintenance/other
2206
ddde3d570a242f9dacce38df1c2a456bd9b871d5
Fix build -- take 2
Fix build -- take 2
FROM delitescere/jdk:8 MAINTAINER Chris Phillipson <fastnsilver@gmail.com> 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...
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 sameer@damagehead.com 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 ...
FROM sameersbn/ubuntu:14.04.20160115 MAINTAINER sameer@damagehead.com 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 ...
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 <me@lesaker.org> 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 <me@lesaker.org> 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 <e0d1a862d8f31af605ecef8c92857b8938ba622e@microsoft.com>
FROM debian:buster LABEL maintainer "Jessie Frazelle <jess@linux.com>" 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 \ ...
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 ...
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 ...
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='cockpit-devel@lists.fedorahosted.org' RUN dnf -y update && \ dnf -y install \ 'dnf-command(builddep)' \ american-fuzzy-lop \ chromium-headless \ curl \ expect \ gcc \ gcc-c++ \ git \ gnupg \ jq \ ...
FROM fedora:30 LABEL maintainer='cockpit-devel@lists.fedorahosted.org' RUN dnf -y update && \ dnf -y install \ 'dnf-command(builddep)' \ american-fuzzy-lop \ chromium-headless \ curl \ expect \ gcc \ gcc-c++ \ git \ gnupg \ jq \ ...
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 * * ...
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 * * ...
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] <5bdcd3c0d4d24ae3e71b3b452a024c6324c7e4bb@github.com>
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.s...
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. # # ...
################################################################################ # 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. # # ...
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 <me@lesaker.org> 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 <me@lesaker.org> 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 <me@lesaker.org> 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...
FROM docker.pkg.github.com/dock0/service/service:20200522-1035b1c MAINTAINER akerl <me@lesaker.org> 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...
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 libff...
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/...
maintenance/other
246
6c42df1a31b680572a4fa732706cd27e604b8865
fix bug
fix bug
FROM alpine:3.4 MAINTAINER takafumiotake<tikutaka.dev@gmail.com> 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 \ ...
FROM alpine:3.4 MAINTAINER takafumiotake<tikutaka.dev@gmail.com> 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 \ ...
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 <me@lesaker.org> 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 ...
FROM docker.pkg.github.com/dock0/ssh/ssh:20200428-d2f18ec MAINTAINER akerl <me@lesaker.org> 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 ...
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...
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...
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...
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 <wyatt.pearsall@cfpb.gov> USER...
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 <me@lesaker.org> 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 <me@lesaker.org> 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, lizhongwen1989@gmail.com 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 --locati...
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...
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 nod...
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 <me@lesaker.org> 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 <me@lesaker.org> 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 <me@lesaker.org> 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 <me@lesaker.org> 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 <me@lesaker.org> 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 <robert@meinit.nl> 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 bas...
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...
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 <me@lesaker.org> 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 ...
null
null
44
b491f955c938e4b688236e7a53153f9514594e90
update zoo
update zoo Signed-off-by: Mark McCahill <e3696564e7a7433e50b70b6d9fcacd26c7505e6a@duke.edu>
# mccahill/r-studio # # VERSION 1.4 FROM ubuntu:18.04 MAINTAINER Mark McCahill "mark.mccahill@duke.edu" 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 ...
# mccahill/r-studio # # VERSION 1.4 FROM ubuntu:18.04 MAINTAINER Mark McCahill "mark.mccahill@duke.edu" 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 ...
null
300
1324476da8d000b901c9863b7e324f3010f7db38
add slapd.
add slapd.
FROM debian:wheezy MAINTAINER Semen Pisarev <s.a.pisarev@gmail.com> 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 HOSTN...
FROM debian:wheezy MAINTAINER Semen Pisarev <s.a.pisarev@gmail.com> 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 HOSTN...
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 <me@lesaker.org> 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 ...
FROM docker.pkg.github.com/dock0/ssh/ssh:20200311-426bedf MAINTAINER akerl <me@lesaker.org> 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 ...
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 <flokli@flokli.de> 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/ap...
FROM ubuntu:yakkety MAINTAINER Florian Klink <flokli@flokli.de> 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/ap...
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 developmen...
null
null
342
89a9660bad6598b1529e3162a04dd07c80203dd0
Add bird deb to dockerfile.
Add bird deb to dockerfile.
FROM fastlynet101/base MAINTAINER dbarroso@fastly.com 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 ["...
FROM fastlynet101/base MAINTAINER dbarroso@fastly.com 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 ./birdwat...
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 <me@lesaker.org> 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://pr...
null
null
336
754b298aa221880457553f715846183812ca2c74
Update Dockerfile
Update Dockerfile
FROM ubuntu MAINTAINER Justin Plock <justin@plock.net> 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/snowiz...
FROM debian:jessie MAINTAINER Justin Plock <justin@plock.net> 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/snowi...
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 <konstantin.jakobi@gmail.com> 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 ...
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 <me@lesaker.org> 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 ...
FROM docker.pkg.github.com/dock0/ssh/ssh:20200831-140ca1d MAINTAINER akerl <me@lesaker.org> 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 ...
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 <me@lesaker.org> 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 <me@lesaker.org> 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 <me@lesaker.org> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
null
null