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
40
27460554f5ebd6f04ab7668683d4979a9248e320
Update Docker image
Update Docker image
FROM node:11.12.0 WORKDIR /usr/src/app/ COPY package*.json ./ RUN npm install COPY . . EXPOSE 5000 CMD ["npm","start"]
FROM node:14.8.0-slim WORKDIR /usr/src/app/ COPY package*.json ./ RUN npm install COPY . . EXPOSE 5000 CMD ["npm","start"]
maintenance/other
2201
d37a541164eaa6e1b6bc63256e14714ea4c0eed1
Upgrade to Baleen 2.2.0
Upgrade to Baleen 2.2.0
# Use a Oracle JDK base image FROM committed/java MAINTAINER Dstl <https://github.com/dstl/baleen> # Baleen installation and configuration ENV BALEEN_VERSION 2.1.0 # Download the (English) OpenNLP Name Entity Recognition models RUN mkdir -p /opt/baleen/models \ && wget -q -P /opt/baleen/models/ http://opennlp.source...
null
bug fix
2099
cc934983dc64ebce40754aff75cc3a3be8465d84
Bumped source to 20200513-5a9ec88
Bumped source to 20200513-5a9ec88
FROM docker.pkg.github.com/dock0/arch/arch:20200512-2d69455 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
297
96e6b606d1567cfa1d5c2c029dd53d5e1031df16
#NAME?
#NAME?
FROM centos:centos6 # Enable EPEL for Node.js RUN rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm # Install Node.js and npm RUN yum install -y npm git RUN npm install bower -g # Bundle app source COPY . /src/twilio # Install client dependencies RUN cd /src/twilio; b...
FROM centos:centos6 # Enable EPEL for Node.js RUN rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm # Install Node.js and npm RUN yum install -y npm git RUN npm install bower -g # Bundle app source COPY . /src/twilio # Install client dependencies RUN cd /src/twilio; b...
maintenance/other
133
1aaa3177c5b8c85276c2d1395ca3c7d8c10c94e1
Run docker/update.sh
Run docker/update.sh
FROM alpine:3.2 RUN apk add --update \ curl \ && rm -rf /var/cache/apk/* ENV DOCKER_VERSION 1.9.0-dev ENV DOCKER_URL https://master.dockerproject.org/linux/amd64/docker-1.9.0-dev ENV DOCKER_SHA256 cb05d3e724c94be6c593f13d1e2f66a7f4482def75edd072b40d36d9423382ed RUN curl -fSL "${DOCKER_URL}" -o /usr/local/bin/docker ...
FROM alpine:3.2 RUN apk add --update \ curl \ && rm -rf /var/cache/apk/* ENV DOCKER_VERSION 1.9.0-dev ENV DOCKER_URL https://master.dockerproject.org/linux/amd64/docker-1.9.0-dev ENV DOCKER_SHA256 c5bcf49f7426123521e1a3ea26fa0bf41c88793437df5e894ab5b23ef74938d8 RUN curl -fSL "${DOCKER_URL}" -o /usr/local/bin/docker ...
maintenance/other
36
4c1e5a84665f724f5ce712f83aa730bb115d6375
Bumped source to 20200614-12dcdbe
Bumped source to 20200614-12dcdbe
FROM docker.pkg.github.com/dock0/ssh/ssh:20200614-2780f9b 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:20200614-12dcdbe 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 ...
code refactoring
2198
f84a3a887fd468cc408419d8dd93a389500ce9c0
Bumped source to 20200226-0c1391b
Bumped source to 20200226-0c1391b
FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20200226-6536815 MAINTAINER akerl <me@lesaker.org> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
null
Not enough inforamtion
176
0936f0a3771b87ff2831b94ab7c242ca8aba008f
Update default base image
Update default base image
# 3DCityDB PostGIS Dockerfile ################################################# # Official website https://www.3dcitydb.net # GitHub https://github.com/3dcitydb ############################################################################### # Base image ARG BASEIMAGE_TAG='14-3.2' FROM postgis/postg...
# 3DCityDB PostGIS Dockerfile ################################################# # Official website https://www.3dcitydb.net # GitHub https://github.com/3dcitydb ############################################################################### # Base image ARG BASEIMAGE_TAG='14-3.3' FROM postgis/postg...
maintenance/other
357
68ce09ad49fdbfc4b1042b1f855cd67f9ee32f91
Update Dockerfile
Update Dockerfile
FROM ubuntu:16.04 # Default is ASCII, but Discovery documents are UTF-8. ENV LANG C.UTF-8 RUN apt-get update # Install the latest stable version of git. RUN apt-get install -y software-properties-common RUN add-apt-repository -y ppa:git-core/ppa RUN apt-get update RUN apt-get install -y git RUN apt-get install -y cu...
FROM ubuntu:16.04 # Default is ASCII, but Discovery documents are UTF-8. ENV LANG C.UTF-8 RUN apt-get update # Install the latest stable version of git. RUN apt-get install -y software-properties-common RUN add-apt-repository -y ppa:git-core/ppa RUN apt-get update RUN apt-get install -y git RUN apt-get install -y cu...
feature addition
155
3803edf038cc6dda83a451b8db954c967234eded
Bumped source to 20210403-9d736da
Bumped source to 20210403-9d736da
FROM docker.pkg.github.com/dock0/service/service:20210403-5fd329c 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:20210403-9d736da 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
2322
47cdd15d537405b70a03f28a75d47048fa203772
add libnuma
add libnuma
FROM ubuntu:16.04 ARG PREFIX=/opt/rocm # Support multiarch RUN dpkg --add-architecture i386 # Add rocm repository RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y curl apt-utils wget RUN curl https://raw.githubusercontent.com/RadeonOpenCompute/ROCm-docker/develop/add-rocm.sh | bash # Install ...
null
code refactoring
146
9c99ee94114f3ded8d657a2128115f5829217159
add new WORKDIR to docker container
add new WORKDIR to docker container
FROM broadinstitute/java-baseimage MAINTAINER Broad Institute DSDE <dsde-engineering@broadinstitute.org> # Install ant, git for building RUN apt-get update && \ apt-get --no-install-recommends install -y --force-yes \ git \ ant && \ apt-get clean autoclean && \ apt-get autoremove -y # Assu...
FROM broadinstitute/java-baseimage MAINTAINER Broad Institute DSDE <dsde-engineering@broadinstitute.org> # Install ant, git for building RUN apt-get update && \ apt-get --no-install-recommends install -y --force-yes \ git \ ant && \ apt-get clean autoclean && \ apt-get autoremove -y # Assu...
maintenance/other
207
243a47d4b9f50463d247e9727f87edce03896036
dockerfile: upgrade to `sameersbn/ubuntu:14.04.20160218`
dockerfile: upgrade to `sameersbn/ubuntu:14.04.20160218`
FROM sameersbn/ubuntu:14.04.20160121 MAINTAINER sameer@damagehead.com ENV PG_APP_HOME="/etc/docker-postgresql"\ PG_VERSION=9.4 \ PG_USER=postgres \ PG_HOME=/var/lib/postgresql \ PG_RUNDIR=/run/postgresql \ PG_LOGDIR=/var/log/postgresql \ PG_CERTDIR=/etc/postgresql/certs ENV PG_BINDIR=/usr/lib/...
FROM sameersbn/ubuntu:14.04.20160218 MAINTAINER sameer@damagehead.com ENV PG_APP_HOME="/etc/docker-postgresql"\ PG_VERSION=9.4 \ PG_USER=postgres \ PG_HOME=/var/lib/postgresql \ PG_RUNDIR=/run/postgresql \ PG_LOGDIR=/var/log/postgresql \ PG_CERTDIR=/etc/postgresql/certs ENV PG_BINDIR=/usr/lib/...
maintenance/other
70
e1a7adbcc23619b956b86f8c905189f1d1920858
Bumped source to 20221008-095a533
Bumped source to 20221008-095a533
FROM ghcr.io/dock0/arch:20221008-060e903 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:20221008-095a533 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
58
050daae82daa14961bd060946a6062f1ac1e87bf
Bump ZIPKIN_VERSION to 1.27.0
Bump ZIPKIN_VERSION to 1.27.0
FROM openzipkin/jre-full:1.8.0_60 MAINTAINER OpenZipkin "http://zipkin.io/" RUN apk update && apk add curl ENV ZIPKIN_REPO https://jcenter.bintray.com ENV ZIPKIN_VERSION 1.26.1 # Use to set heap, trust store or other system properties. # Intentionally defaulted to empty string. ENV JAVA_OPTS= RUN mkdir /zipkin ADD ....
FROM openzipkin/jre-full:1.8.0_60 MAINTAINER OpenZipkin "http://zipkin.io/" RUN apk update && apk add curl ENV ZIPKIN_REPO https://jcenter.bintray.com ENV ZIPKIN_VERSION 1.27.0 # Use to set heap, trust store or other system properties. # Intentionally defaulted to empty string. ENV JAVA_OPTS= RUN mkdir /zipkin ADD ....
code refactoring
2129
8ae93e41951e649784f03f150468039f72e6703b
Bumped source to 20210920-21e1115
Bumped source to 20210920-21e1115
FROM docker.pkg.github.com/dock0/arch/arch:20210920-751967d 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
feature addition
234
09c59065959099daf24b0126ebb932a74d4194c7
Updated node to 9.7.0
Updated node to 9.7.0
FROM node:9.6.1 MAINTAINER Anthony Smith <anthony@sticksnleaves.com> ENV APP_HOME /usr/src/app RUN curl -L https://api.github.com/repos/npm/npm/tarball/latest -o npm.tar.gz RUN tar xzf npm.tar.gz RUN npm-npm-*/scripts/install.sh RUN rm -f npm.tar.gz RUN rm -rf npm-npm-*/ RUN curl -sS https://dl.yarnpkg.com/debian/p...
FROM node:9.7.0 MAINTAINER Anthony Smith <anthony@sticksnleaves.com> ENV APP_HOME /usr/src/app RUN curl -L https://api.github.com/repos/npm/npm/tarball/latest -o npm.tar.gz RUN tar xzf npm.tar.gz RUN npm-npm-*/scripts/install.sh RUN rm -f npm.tar.gz RUN rm -rf npm-npm-*/ RUN curl -sS https://dl.yarnpkg.com/debian/p...
code refactoring
137
a7b48effcac4fc45ffd984c5ada02b1d79d2a5ba
add a dockerfile to run this in a container as well
add a dockerfile to run this in a container as well
null
null
code refactoring
323
1bd5b2b4e4050c92e1c51d2124e5e235cf17e974
Updated Atlassian JIRA Software master branch to latest version 8.18.0
Updated Atlassian JIRA Software master branch to latest version 8.18.0
FROM openjdk:8-alpine # Configuration variables. ENV JIRA_HOME /var/atlassian/jira ENV JIRA_INSTALL /opt/atlassian/jira ENV JIRA_VERSION 8.16.1 # Install Atlassian JIRA and helper tools and setup initial home # directory structure. RUN set -x \ && apk add --no-cache curl xmlstarlet bash ttf-dejavu libc6-com...
FROM openjdk:8-alpine # Configuration variables. ENV JIRA_HOME /var/atlassian/jira ENV JIRA_INSTALL /opt/atlassian/jira ENV JIRA_VERSION 8.18.0 # Install Atlassian JIRA and helper tools and setup initial home # directory structure. RUN set -x \ && apk add --no-cache curl xmlstarlet bash ttf-dejavu libc6-com...
maintenance/other
2208
ca8e2c170bef1316cbe1e4b43113f8b59e23d7b0
Removes the RUN prefix before chown and changes ENTRYPOINT to CMD.
Removes the RUN prefix before chown and changes ENTRYPOINT to CMD.
FROM ubuntu:14.04 MAINTAINER Boggart <github.com/Boggart> ENV DEBIAN_FRONTEND noninteractive RUN locale-gen en_US.UTF-8 ENV LANG en_US.UTF-8 ENV LANGUAGE en_US.UTF-8 ENV LC_ALL en_US.UTF-8 # Nginx-PHP Installation RUN apt-get update RUN apt-get install -y nano curl wget build-essential software-properties-common RUN a...
null
maintenance/other
2123
ce988d9c12840e7885f153e43c98f319bb2caac4
Bumped source to 20200621-2c4c868
Bumped source to 20200621-2c4c868
FROM docker.pkg.github.com/dock0/service/service:20200621-e1a6ecd 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
38
ccba83f799d56b2bd0eda5f9ac242128de19659f
update pip3
update pip3
FROM phusion/baseimage:0.9.18 # look for new versions here: https://github.com/phusion/baseimage-docker/blob/master/Changelog.md # has 'python3', nothing linked to 'python'. # need gcc to compile psycopg2 # env: http://askubuntu.com/a/506635/69983 RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y...
FROM phusion/baseimage:0.9.18 # look for new versions here: https://github.com/phusion/baseimage-docker/blob/master/Changelog.md # has 'python3', nothing linked to 'python'. # need gcc to compile psycopg2 # env: http://askubuntu.com/a/506635/69983 RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y...
code refactoring
2061
46982085e43b97b114f9345bb6e9d48c2ad849af
Bumped source to 20200606-cb2d0e8
Bumped source to 20200606-cb2d0e8
FROM docker.pkg.github.com/dock0/ssh/ssh:20200606-d6a57a1 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
maintenance/other
158
cc81f7afb37caa179ef9d08b3e0b8757692f548c
refactor code to improve listing and deletion of quotes
refactor code to improve listing and deletion of quotes
FROM gliderlabs/alpine:3.3 MAINTAINER Karim Boumedhel <karimboumedhel@gmail.com> RUN apk add --no-cache python python-dev py-pip build-base \ && pip install PyTelegramBotAPI==3.6.2 ADD nickyabbot.py / VOLUME ["/tmp/troll/db"] CMD ["python", "-u", "/nickyabbot.py"]
FROM gliderlabs/alpine:3.6 MAINTAINER Karim Boumedhel <karimboumedhel@gmail.com> RUN apk add --no-cache python python-dev py-pip build-base \ && pip install PyTelegramBotAPI==3.6.2 ADD nickyabbot.py / CMD ["python", "-u", "/nickyabbot.py"]
code refactoring
2162
adfb715575c4f3c6b75e3cc0d7484af8e4220f15
Bumped source to 20210403-4680f5e
Bumped source to 20210403-4680f5e
FROM docker.pkg.github.com/dock0/service/service:20210403-6c16aa2 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
92
468a0d314718ec5c75ef338ef2603778be62dfc1
Update Dockerfile
Update Dockerfile expose Chateau's port
# BDH-admin # Uses Chateau to administer the ReThinkDB behind members.browncoats.info # Based on toscanini node.js image: github.com/toscanini/docker-nodejs FROM pshouse/nodejs-base MAINTAINER Patrick Shouse <shouse.patrick@gmail.com> RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/...
# BDH-admin # Uses Chateau to administer the ReThinkDB behind members.browncoats.info # Based on toscanini node.js image: github.com/toscanini/docker-nodejs FROM pshouse/nodejs-base MAINTAINER Patrick Shouse <shouse.patrick@gmail.com> RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/...
Not enough inforamtion
39
151d21c3937c7400b853e3e156444fc5e5166a42
Bumped source to 20210326-18e993d
Bumped source to 20210326-18e993d
FROM docker.pkg.github.com/dock0/arch/arch:20210326-9a3ae13 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:20210326-18e993d 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
46
013ceb661772825cbca1b1dbfe6ea8bf75a6f836
fix
fix Signed-off-by: Jess Frazelle <e0d1a862d8f31af605ecef8c92857b8938ba622e@microsoft.com>
FROM docker RUN apk install --no-cache \ bash \ ca-certificates \ curl \ tar COPY build.sh /usr/local/bin/build ENTRYPOINT ["build"]
FROM docker:latest RUN apk add --no-cache \ bash \ ca-certificates \ curl \ tar COPY build.sh /usr/local/bin/build ENTRYPOINT ["build"]
maintenance/other
2245
83f06999768fd33189b074f69cecb71ec73b5a30
Bumped source to 20220714-249350b
Bumped source to 20220714-249350b
FROM ghcr.io/dock0/arch:20220714-c994ea3 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
maintenance/other
264
c3a166534289b96c410a0cafcf261e4a9860284c
Bumped source to 20200413-8442c8f
Bumped source to 20200413-8442c8f
FROM docker.pkg.github.com/dock0/service/service:20200413-d96418c 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:20200413-8442c8f 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
2112
e06be915973de2c27445baaf1ac116be4a251a26
Bumped source to 20201016-2a8b256
Bumped source to 20201016-2a8b256
FROM docker.pkg.github.com/dock0/arch/arch:20201016-5c009b1 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
maintenance/other
189
3c4daa59cf6b47ed4a0a1f39bd3e5f2d3748995c
Fix issue of symbols not displaying in Linux
Fix issue of symbols not displaying in Linux The symbols would not display in the status bar due to missing fonts by default in the Docker container. This fix adds the dependency described in #505 Fixes #505
FROM ubuntu:20.04 LABEL app.name="WAIL" \ app.description="Web Archiving Integration Layer: One-Click User Instigated Preservation" \ app.license="MIT License" \ app.license.url="https://github.com/machawk1/wail/blob/osagnostic/LICENSE" \ app.repo.url="https://git...
FROM ubuntu:20.04 LABEL app.name="WAIL" \ app.description="Web Archiving Integration Layer: One-Click User Instigated Preservation" \ app.license="MIT License" \ app.license.url="https://github.com/machawk1/wail/blob/osagnostic/LICENSE" \ app.repo.url="https://git...
code refactoring
2267
2badc995204953c2bd0a6da02de5b9fa1e68080e
Bumped source to 20201006-e2e3866
Bumped source to 20201006-e2e3866
FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20201006-28efb17 MAINTAINER akerl <me@lesaker.org> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
null
code refactoring
2067
66feb17cb2ed964dbbf9fccd0b58ba290f714f36
Updated base to xaamin/php-cli:7.0
Updated base to xaamin/php-cli:7.0
FROM xaamin/php-cli MAINTAINER "Benjamín Martínez Mateos" <bmxamin@gmail.com> # Install PHP-FPM RUN apt-get -y update \ && DEBIAN_FRONTEND=noninteractive apt-get install -y \ php7.0-fpm \ libfcgi0ldbl \ # Remove temp files && apt-get clean \ && apt-get -y autoremove \ && rm -rf /v...
null
maintenance/other
2113
ffc1869250f653958f555b4b29647d55976d1f0c
Update Dockerfile
Update Dockerfile Provide sudo to be able to ad user to sudoers group and run commands from within goland as sudo.
FROM suckowbiz/base-av LABEL maintainer="Tobias Suckow <tobias@suckow.biz>" ENV VERSION_GO="1.12.9" \ VERSION_GOLAND="2019.2.1" \ VERSION_GOLANGCI_LINT="1.17.1" # Markdown preview requires javafx (wich requires libxslt). RUN apt-get install --quiet --quiet --yes --no-install-recommends \ build-essential \...
null
bug fix
400
6303ac7b6287630950ff7f2ff1f23a30230a1f0a
artifactory: update to Artifactory 5.11.1
artifactory: update to Artifactory 5.11.1 Change-Id: Id52d7481d051a09c590e3bdfeee7f9b5d4eabdae
FROM docker.bintray.io/jfrog/artifactory-pro:5.9.3 # specific to 5.1.46; revisit this when a new driver is released RUN curl -sL https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.46.tar.gz | \ tar -v --overwrite --directory /opt/jfrog/artifactory/tomcat/lib/ --strip 1 --wildcards -zx '*mys...
FROM docker.bintray.io/jfrog/artifactory-pro:5.11.1 # specific to 5.1.46; revisit this when a new driver is released RUN curl -sL https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.46.tar.gz | \ tar -v --overwrite --directory /opt/jfrog/artifactory/tomcat/lib/ --strip 1 --wildcards -zx '*my...
code refactoring
346
fb638b550c71ea7324ad9235854803f3e78c1b71
fixed bugs in docker image
fixed bugs in docker image
FROM dit4c/dit4c-container-fsl MAINTAINER Greg Kiar <gkiar@jhu.edu> RUN apt-get update && apt-get install -y python-dev python-setuptools python-numpy python-scipy zlib1g-dev python-matplotlib python-nose fsl ia32-libs RUN easy_install pip RUN pip install cython numpy coveralls wget nibabel nilearn dipy sklearn network...
FROM dit4c/dit4c-container-fsl MAINTAINER Greg Kiar <gkiar@jhu.edu> RUN apt-get update && apt-get install -y python-dev python-setuptools python-numpy python-scipy zlib1g-dev python-matplotlib python-nose fsl RUN easy_install pip RUN pip install cython numpy coveralls wget nibabel nilearn dipy sklearn networkx awscli b...
code refactoring
2309
afe6aa074757a4fd2e6f92ce74568919f6d0ce9c
Upgraded Kibana to 4.6.1
Upgraded Kibana to 4.6.1
FROM kibana:4.5.4 MAINTAINER PubNative Team <team@pubnative.net> RUN /opt/kibana/bin/kibana plugin --install kibana/timelion \ && /opt/kibana/bin/kibana plugin --install elastic/sense \ && /opt/kibana/bin/kibana plugin -i vectormap -u https://github.com/stormpython/vectormap/archive/master.zip \ && chown -...
null
maintenance/other
2069
c21e5a302a53ad7b694d7e5fb929b1a5266d9a29
update dockerfile
update dockerfile
######################################################################## # OSMnx Dockerfile # License: MIT, see full license in LICENSE.txt # Web: https://github.com/gboeing/osmnx # # Build an image from the dockerfile: # >>> docker build -t gboeing/osmnx . # # Push the built image to hub so others can pull/run it: # >...
null
maintenance/other
232
351cd31bc83f065906f9ce09984a4a33921720a7
Bumped source to 20200326-23b5da1
Bumped source to 20200326-23b5da1
FROM docker.pkg.github.com/dock0/service/service:20200326-212bc2c 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:20200326-23b5da1 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...
maintenance/other
206
44f00564355f8bd755b94d6db99f1c2e27492fe4
Bumped source to 20210416-b4928ed
Bumped source to 20210416-b4928ed
FROM docker.pkg.github.com/dock0/arch/arch:20210416-72a4d31 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:20210416-b4928ed 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"]
bug fix
2101
26df24a1be125e5f72218531fb39d09c00afaa97
Bumped source to 20210624-c4872e7
Bumped source to 20210624-c4872e7
FROM docker.pkg.github.com/dock0/arch/arch:20210624-76084af 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
feature addition
174
ad488cee4c9bc3cd595a383af423ca46dad9fb67
Fix typo
Fix typo
FROM ubuntu:14.04 ENV DEBIAN_FRONTEND noninteractive RUN apt-get update -q # Supervisor RUN apt-get install -y supervisor && \ mkdir -p /var/log/supervisor && \ mkdir -p /etc/supervisor/conf.d # NGINX RUN \ apt-get install -y nginx && \ echo "\ndaemon off;" >> /etc/nginx/nginx.conf && \ chown -R www-data:...
FROM ubuntu:14.04 ENV DEBIAN_FRONTEND noninteractive RUN apt-get update -q # Supervisor RUN apt-get install -y supervisor && \ mkdir -p /var/log/supervisor && \ mkdir -p /etc/supervisor/conf.d # NGINX RUN \ apt-get install -y nginx && \ echo "\ndaemon off;" >> /etc/nginx/nginx.conf && \ chown -R www-data:...
feature addition
126
ec12146e323a9016c42e456af1a2ef7eb4e22dca
Forgot to add the double ampersand.
Forgot to add the double ampersand.
FROM ubuntu:14.04 MAINTAINER P. Barrett Little <barrett@barrettlittle.com> # Download latest package lists & install dependencies RUN apt-get update \ DEBIAN_FRONTEND=noninteractive \ apt-get install -yq \ openjdk-7-jre-headless \ wget # Download version 1.4.2 of logstash RUN cd /tmp && \ wget htt...
FROM ubuntu:14.04 MAINTAINER P. Barrett Little <barrett@barrettlittle.com> # Download latest package lists & install dependencies RUN apt-get update && \ DEBIAN_FRONTEND=noninteractive \ apt-get install -yq \ openjdk-7-jre-headless \ wget # Download version 1.4.2 of logstash RUN cd /tmp && \ wget ...
maintenance/other
371
be89e110debdab79992f5050c2eaf1c2cbcf072b
Add package-lock.json to a2png/
Add package-lock.json to a2png/
FROM clojure:alpine RUN mkdir /app WORKDIR /app # build vt COPY vt/project.clj /app/vt/ RUN cd vt && lein deps COPY vt/src /app/vt/src COPY vt/resources /app/vt/resources RUN cd vt && lein cljsbuild once main # build a2png COPY a2png/project.clj /app/a2png/ RUN cd a2png && lein deps COPY a2png/src /app/a2png/src...
FROM clojure:alpine RUN mkdir /app WORKDIR /app # build vt COPY vt/project.clj /app/vt/ RUN cd vt && lein deps COPY vt/src /app/vt/src COPY vt/resources /app/vt/resources RUN cd vt && lein cljsbuild once main # build a2png COPY a2png/project.clj /app/a2png/ RUN cd a2png && lein deps COPY a2png/src /app/a2png/src...
code refactoring
339
870671a1e02317f56e77896219e2afbb3515ae9a
Bumped source to 20220522-8d540ef
Bumped source to 20220522-8d540ef
FROM ghcr.io/dock0/arch:20220522-3509354 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:20220522-8d540ef MAINTAINER akerl <me@lesaker.org> RUN pacman -S --needed --noconfirm base-devel vim-minimal tree ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
Not enough inforamtion
2221
686f1ef0561e01d9fdb1ebf0e9620fd90e3ad16d
Update AWS CLI version to 1.11.71
Update AWS CLI version to 1.11.71
FROM python:3.5-slim MAINTAINER Nikolay Rybak <mykola.rybak@gmail.com> RUN \ mkdir -p /aws && \ pip install --upgrade awscli==1.11.70 && \ rm -rf /root/.cache && \ rm -rf /var/lib/apt/lists/* WORKDIR /aws ENTRYPOINT ["aws"]
null
Not enough inforamtion
394
ea3a106227675f50bd915bc125160a862107595d
Update dockerfile
Update dockerfile
FROM ubuntu:16.04 # Install required packages RUN apt-get update -y && \ apt-get install -y \ python3-dev \ python3-pip \ unzip \ bzip2 \ wget \ curl \ pkg-config \ libgraphviz-dev \ graphviz # install clustalo RUN wget -O /clustalo http://w...
FROM ubuntu:16.04 # Install required packages RUN apt-get update -y && \ apt-get install -y \ python3-dev \ python3-pip \ unzip \ bzip2 \ wget \ curl \ pkg-config \ libgraphviz-dev \ graphviz # install clustalo RUN wget -O /clustalo http://w...
maintenance/other
282
cec4e42fef93acb83a1970346197057bdeafee49
Update Dockerfile
Update Dockerfile
FROM soiff/jdk:8u111 MAINTAINER 张仪 <wittcnezh@foxmail.com> WORKDIR /opt # Let's roll RUN apk add --update curl unzip RUN curl -skSL http://edas-public.oss-cn-hangzhou.aliyuncs.com/install_package/edas-config-center.zip -o /tmp/tmp.zip && \ unzip -x /tmp/tmp.zip && \ rm -rf /tmp/* WORKDIR /opt/edas-config-c...
FROM soiff/jdk:8u111 MAINTAINER 张仪 <wittcnezh@foxmail.com> WORKDIR /opt # Let's roll RUN apk add --update curl unzip RUN curl -skSL http://edas-public.oss-cn-hangzhou.aliyuncs.com/install_package/edas-config-center.zip -o /tmp/tmp.zip && \ unzip -x /tmp/tmp.zip && \ rm -rf /tmp/* WORKDIR /opt/edas-config-c...
feature addition
25
0fd4ead5023133b7780d9b791744135550aa4053
Bumped source to 20220409-3359f1c
Bumped source to 20220409-3359f1c
FROM ghcr.io/dock0/arch:20220409-4ea1148 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:20220409-3359f1c 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
9
a3b4a4d82fc80a366c2a4c7ff9e12fb84b0d277f
Adds missing ICU libraries (many R packages installation failing, starting with xml2)
Adds missing ICU libraries (many R packages installation failing, starting with xml2)
# PhenoMeNal H2020 # Microservices - IPO # VERSION 0.1 FROM ubuntu:14.04 MAINTAINER venkata chandrasekhar nainala (venkata@ebi.ac.uk / mailcs76@gmail.com) # Install R RUN echo "deb http://mirrors.ebi.ac.uk/CRAN/bin/linux/ubuntu trusty/" >> /etc/apt/sources.list && \ gpg --keyserver keyserver.ubuntu.com...
# PhenoMeNal H2020 # Microservices - IPO # VERSION 0.1 FROM ubuntu:14.04 MAINTAINER venkata chandrasekhar nainala (venkata@ebi.ac.uk / mailcs76@gmail.com) # Install R RUN echo "deb http://mirrors.ebi.ac.uk/CRAN/bin/linux/ubuntu trusty/" >> /etc/apt/sources.list && \ gpg --keyserver keyserver.ubuntu.com...
maintenance/other
417
b9785d75827e4ac2f4ab449fe349a94fee52eb28
Bumped source to 20210715-7d5e992
Bumped source to 20210715-7d5e992
FROM docker.pkg.github.com/dock0/arch/arch:20210714-8fd413d 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:20210715-7d5e992 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
84
b74952d55e76095f95649f95a52bed7e177731fd
Bumped source to 20200915-8578a2f
Bumped source to 20200915-8578a2f
FROM docker.pkg.github.com/dock0/ssh/ssh:20200915-9a62de6 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:20200915-8578a2f 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 ...
maintenance/other
104
ba8ce9e78c8a3e5a712592c80496ab32689dbfd4
Updated Atlassian JIRA master branch to latest version 7.9.0
Updated Atlassian JIRA master branch to latest version 7.9.0
FROM openjdk:8-alpine # Setup useful environment variables ENV CONF_HOME /var/atlassian/confluence ENV CONF_INSTALL /opt/atlassian/confluence ENV CONF_VERSION 7.8.3 ENV JAVA_CACERTS $JAVA_HOME/jre/lib/security/cacerts ENV CERTIFICATE $CONF_HOME/certificate # Install Atlassian Confluence and helper tools and...
FROM openjdk:8-alpine # Setup useful environment variables ENV CONF_HOME /var/atlassian/confluence ENV CONF_INSTALL /opt/atlassian/confluence ENV CONF_VERSION 7.9.0 ENV JAVA_CACERTS $JAVA_HOME/jre/lib/security/cacerts ENV CERTIFICATE $CONF_HOME/certificate # Install Atlassian Confluence and helper tools and...
maintenance/other
2319
28585fc18de7a9afbb385012d05e2894f6446511
Revert ruby bump for until Pivotal internal tools upgraded
Revert ruby bump for until Pivotal internal tools upgraded
FROM ubuntu:xenial # Versioning ENV PIP_INSTALL_VERSION 19.0.2 ENV PIP3_INSTALL_VERSION 8.1.1 ENV GO_LANG_VERSION 1.11.5 ENV MAVEN_VERSION 3.6.0 ENV SBT_VERSION 1.3.3 ENV GRADLE_VERSION 5.6.4 ENV RUBY_VERSION 2.7.0 ENV MIX_VERSION 1.0 ENV COMPOSER_ALLOW_SUPERUSER 1 # programs needed for building RUN apt-get update &&...
null
code refactoring
382
ae1ca25c380c26d99839fa1673ece7e3c4ac284e
Bump python from `4b0cd7c` to `5f83c6d`
Bump python from `4b0cd7c` to `5f83c6d` Bumps python from `4b0cd7c` to `5f83c6d`. Signed-off-by: dependabot-preview[bot] <5bdcd3c0d4d24ae3e71b3b452a024c6324c7e4bb@dependabot.com>
FROM python:3.7.4-slim@sha256:4b0cd7cc8a201bd8098adbb2f2ffef55eec1364297b0c1c6630cc4dee41739e3 ENV PYTHONUNBUFFERED=1 \ PYTHONPATH=/app/ \ PORT=8888 EXPOSE $PORT # add a non-privileged user for installing and running # the application RUN mkdir /app && \ chown 10001:10001 /app && \ groupadd --gid 100...
FROM python:3.7.4-slim@sha256:5f83c6d40f9e9696d965785991e9b85e4baef189c7ad1078483d15a8657d6cc0 ENV PYTHONUNBUFFERED=1 \ PYTHONPATH=/app/ \ PORT=8888 EXPOSE $PORT # add a non-privileged user for installing and running # the application RUN mkdir /app && \ chown 10001:10001 /app && \ groupadd --gid 100...
maintenance/other
101
dad83c5ad253e4a9fa8bf62d5723b1d4b8831869
Bump nginx from 1.16-alpine to 1.17.9-alpine in /client (#527)
Bump nginx from 1.16-alpine to 1.17.9-alpine in /client (#527) Bumps nginx from 1.16-alpine to 1.17.9-alpine. Signed-off-by: dependabot-preview[bot] <5bdcd3c0d4d24ae3e71b3b452a024c6324c7e4bb@dependabot.com> Co-authored-by: dependabot-preview[bot] <6a4c1c4838f800d1998274cd5234e1f65c55e90c@users.noreply.github.com>
FROM node:13.10-alpine as build ENV HOMOCHECKER_API_HOST homochecker-api WORKDIR /usr/src COPY . /usr/src COPY fonts/* /usr/src/dist/ RUN npm install && \ npm run build && \ rm -rf node_modules FROM nginx:1.16-alpine COPY conf /etc/nginx/conf.d COPY --from=build /usr/src/dist /var/www/html CMD ["/bin/ash", "-...
FROM node:13.10-alpine as build ENV HOMOCHECKER_API_HOST homochecker-api WORKDIR /usr/src COPY . /usr/src COPY fonts/* /usr/src/dist/ RUN npm install && \ npm run build && \ rm -rf node_modules FROM nginx:1.17.9-alpine COPY conf /etc/nginx/conf.d COPY --from=build /usr/src/dist /var/www/html CMD ["/bin/ash", ...
maintenance/other
81
47c7450f0fd66afb7403177fdd2851f6e98f32fd
GUACAMOLE-1110: Merge changes adding a guacd service group.
GUACAMOLE-1110: Merge changes adding a guacd service group.
# # 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...
# # 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...
maintenance/other
2126
6a234fe96b6036328394f2807b45c47ab44bc69d
Bumped source to 20211110-3230f12
Bumped source to 20211110-3230f12
FROM docker.pkg.github.com/dock0/arch/arch:20211110-18d16b7 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
maintenance/other
2147
51c25414844a05d4650703ff31eec55b15ec26c3
version 66.0.3346.8
version 66.0.3346.8
FROM ubuntu:14.04 LABEL maintainer "Alpeware <info@alpeware.com>" EXPOSE 9222 RUN apt-get update -qqy \ && apt-get -qqy install libnss3 libnss3-tools libfontconfig1 wget ca-certificates apt-transport-https inotify-tools \ && rm -rf /var/lib/apt/lists/* /var/cache/apt/* ENV CHROME_VERSION=66.0.3343.3 RUN wget -...
null
maintenance/other
132
bc7b26087fbcac476c5e1d27de7907811f6af997
Bump amazon/aws-cli from 2.4.14 to 2.4.15 (#394)
Bump amazon/aws-cli from 2.4.14 to 2.4.15 (#394)
FROM amazon/aws-cli:2.4.14 RUN mkdir -p ~/.aws/cli COPY alias /root/.aws/cli/alias ENTRYPOINT ["/usr/local/bin/aws"]
FROM amazon/aws-cli:2.4.15 RUN mkdir -p ~/.aws/cli COPY alias /root/.aws/cli/alias ENTRYPOINT ["/usr/local/bin/aws"]
code refactoring
222
fc147a29060881a8617fa022d0543ca7d3666682
Update youtube-dl to 2018.01.18
Update youtube-dl to 2018.01.18
FROM alpine:3.6 as ffmpeg-builder RUN apk add --no-cache \ coreutils \ openssl \ bash \ build-base \ autoconf \ automake \ libtool \ git \ yasm \ zlib-dev \ openssl-dev \ lame-dev \ libogg-dev \ libvpx-dev \ x265-dev # some -dev alpine packages lack .a files in 3.6 (some fixed in edge) R...
FROM alpine:3.6 as ffmpeg-builder RUN apk add --no-cache \ coreutils \ openssl \ bash \ build-base \ autoconf \ automake \ libtool \ git \ yasm \ zlib-dev \ openssl-dev \ lame-dev \ libogg-dev \ libvpx-dev \ x265-dev # some -dev alpine packages lack .a files in 3.6 (some fixed in edge) R...
feature addition
2274
ebcfdd248d4c01bda0318c25c42c68040fe97a6d
Updating version on contributed Docker image
Updating version on contributed Docker image
FROM ubuntu:16.04 # docker build -t dnanexus/dxwdl . # 1. DNANexus SDK (dx-toolkit) RUN apt-get update && apt-get install -y wget git openssl python python-dev g++ default-jdk RUN wget https://wiki.dnanexus.com/images/files/dx-toolkit-v0.276.0-ubuntu-16.04-amd64.tar.gz && \ tar -xzvf dx-toolkit-v0.276.0-ubuntu-16...
null
bug fix
2144
f219b6d4d9b4a1601bed2b85608afd8ad2cea1f2
Add app user to docker group
Add app user to docker group
FROM remind101/go:1.4 MAINTAINER Eric Holmes <eric@remind101.com> ENTRYPOINT ["/go/bin/empire"] CMD ["server"] EXPOSE 8080
null
code refactoring
2210
10c91223f684951ce390b2b776557d862576de09
debugging
debugging
FROM ubuntu:14.04 MAINTAINER Mark Hummel <mdh@raquette.com> #ENV DEBIAN_FRONTEND noninteractive #ENV MYSQL_HOST 127.0.0.1 #ENV MYSQL_PORT 3306 #ENV MYSQL_USER root #ENV RESTORE_DB_CHARSET utf8 #ENV RESTORE_DB_COLLATION utf8_bin #ENV S3_PATH mysql #ENV WAIT_FOR_SERVER yes # RUN apt-get update \ && apt-get install -...
null
code refactoring
2106
df760a09d99a43714b9227a80f90c829085e7dfa
Update Dockerfile
Update Dockerfile
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! # NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED. # PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE # !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! FROM wywincl/node-base:latest MAINTAINER wyincl <wywincl@126.com> USER root #================================...
null
maintenance/other
2293
4b1493cd957bb1fafbd455a74c86feff77ffa092
chore(deps): update telemark/docker-node-unoconv docker tag to v10.20.1
chore(deps): update telemark/docker-node-unoconv docker tag to v10.20.1
FROM telemark/docker-node-unoconv:10.14.0 #### Begin setup #### # Bundle app source COPY . /src # Change working directory WORKDIR /src # Install dependencies RUN npm install --production # Env variables ENV SERVER_PORT 3000 ENV PAYLOAD_MAX_SIZE 1048576 ENV PAYLOAD_TIMEOUT 120000 ENV TIMEOUT_SERVER 120000 ENV TIME...
null
bug fix
180
982bbb0d767fca8a632c42bc6e67792a2084bfc8
Bumped source to 20220517-6d76d5b
Bumped source to 20220517-6d76d5b
FROM ghcr.io/dock0/arch:20220517-0fd01f7 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:20220517-6d76d5b MAINTAINER akerl <me@lesaker.org> RUN pacman -S --needed --noconfirm base-devel vim-minimal tree ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
bug fix
2314
fe2e2227f3cf67c19ba640439d7ab68e93d407b3
Build fixes
Build fixes
FROM golang:1.7.4 # Dependencies RUN apt-get update && apt-get install --no-install-recommends -y build-essential \ zlib1g-dev pkg-config # Install libturbo-jpeg ADD https://sourceforge.net/projects/libjpeg-turbo/files/1.5.1/libjpeg-turbo-official_1.5.1_amd64.deb/download /tmp/libjpeg-turbo-official_1.5.1_amd64....
null
feature addition, bug fix
173
92b65e2462958ca7e184988255033873c670cfd9
fix slack
fix slack Signed-off-by: Jessica Frazelle <e0d1a862d8f31af605ecef8c92857b8938ba622e@docker.com>
# Run slack desktop app in a container # # docker run --rm -it \ #-v /etc/localtime:/etc/localtime:ro \ #-v /tmp/.X11-unix:/tmp/.X11-unix \ #-e DISPLAY=unix$DISPLAY \ #--device /dev/snd:/dev/snd \ #--name slack \ #jess/slack FROM debian:sid MAINTAINER Jessie Frazelle <jess@linux.com> RUN apt-get update && apt-get ins...
# Run slack desktop app in a container # # docker run --rm -it \ #-v /etc/localtime:/etc/localtime:ro \ #-v /tmp/.X11-unix:/tmp/.X11-unix \ #-e DISPLAY=unix$DISPLAY \ #--device /dev/snd:/dev/snd \ #--name slack \ #jess/slack FROM debian:sid MAINTAINER Jessie Frazelle <jess@linux.com> RUN apt-get update && apt-get ins...
code refactoring
2236
b05d85ff52200f905593cd186ad8264ef54cca2e
Fixed tabs/spaces and added comment
Fixed tabs/spaces and added comment
ARG BASE_TAG=latest ARG TENSORFLOW_VERSION=2.1.0 FROM gcr.io/kaggle-images/python-tensorflow-whl:${TENSORFLOW_VERSION}-py37-2 as tensorflow_whl FROM gcr.io/deeplearning-platform-release/base-cpu:${BASE_TAG} ADD clean-layer.sh /tmp/clean-layer.sh ADD patches/nbconvert-extensions.tpl /opt/kaggle/nbconvert-extensions.t...
null
maintenance/other
338
9fa96e9d0b5fc52a8fd49356064c560025e1bb11
remove ADD statement adding a fixed tnsnames.ora
remove ADD statement adding a fixed tnsnames.ora
FROM fabrizzio/docker-php:latest MAINTAINER Dieter Provoost <dieter.provoost@marlon.be> # Oracle instantclient ADD oracle/instantclient-basic-linux.x64-11.2.0.4.0.zip /tmp/instantclient-basic-linux.x64-11.2.0.4.0.zip ADD oracle/instantclient-sdk-linux.x64-11.2.0.4.0.zip /tmp/instantclient-sdk-linux.x64-11.2.0.4.0.zip ...
FROM fabrizzio/docker-php:latest MAINTAINER Dieter Provoost <dieter.provoost@marlon.be> # Oracle instantclient ADD oracle/instantclient-basic-linux.x64-11.2.0.4.0.zip /tmp/instantclient-basic-linux.x64-11.2.0.4.0.zip ADD oracle/instantclient-sdk-linux.x64-11.2.0.4.0.zip /tmp/instantclient-sdk-linux.x64-11.2.0.4.0.zip ...
maintenance/other
2219
0248a6d38985b3648d9add34190d66c9f1071032
Bumped source to 20201026-7fc9518
Bumped source to 20201026-7fc9518
FROM docker.pkg.github.com/dock0/arch/arch:20201026-758e489 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
maintenance/other
2244
4ef6f70df85a1d477f0a2031d19587d3ed90b9da
Bumped source to 20200429-324843c
Bumped source to 20200429-324843c
FROM docker.pkg.github.com/dock0/arch/arch:20200429-730c977 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
2213
7272571e69f7cdbe4d775856736c4e3acad9ae8e
Bumped source to 20201228-749f4f7
Bumped source to 20201228-749f4f7
FROM docker.pkg.github.com/dock0/ssh/ssh:20201228-772318f 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
code refactoring
256
133a8afa9f4b31c7692959c4650249ab969c10fe
python-nginx: Run upgrades after update
python-nginx: Run upgrades after update
# nginx # # (See README.md for instructions) FROM debian:jessie MAINTAINER Andrey Petrov "andrey.petrov@shazow.net" RUN apt-get update RUN apt-get install -y \ ca-certificates \ nginx \ --no-install-recommends \ && rm -rf /var/lib/apt/lists/* COPY conf.d/* /etc/nginx/conf.d/ EXPOSE 80 443 VOLU...
# nginx # # (See README.md for instructions) FROM debian:jessie MAINTAINER Andrey Petrov "andrey.petrov@shazow.net" RUN apt-get update && apt-get upgrade -y RUN apt-get install -y \ ca-certificates \ nginx \ --no-install-recommends \ && rm -rf /var/lib/apt/lists/* COPY conf.d/* /etc/nginx/conf....
bug fix
2311
ffafb7c25b749b72940469b9be8ad3737ff34399
Update Dockerfile
Update Dockerfile removed an update too much
FROM ubuntu # Bro 2.4beta MAINTAINER Daniel Guerra <daniel.guerra69@gmail.com> #prequisits RUN apt-get update && DEBIAN_FRONTEND=noninteractive #RUN apt-get -y upgrade && DEBIAN_FRONTEND=noninteractive RUN apt-get update && apt-get -y install libclick-0.4-dev ocl-icd-opencl-dev libboost-dev doxygen git libcurl4-gnu...
null
bug fix
364
dc142718a7b8ee190e3bb4cfd302c0e127e55266
fix adduser home directory configuration
fix adduser home directory configuration
FROM ubuntu:trusty MAINTAINER Jack Liu jackliu.lab@gmail.com # setup environment RUN locale-gen en_US.UTF-8 ENV LANG en_US.UTF-8 # setup sources.list RUN echo "deb http://packages.ros.org/ros/ubuntu trusty main" > /etc/apt/sources.list.d/ros-latest.list # setup keys RUN apt-key adv --keyserver hkp://ha.pool.sks-key...
FROM ubuntu:trusty MAINTAINER Jack Liu jackliu.lab@gmail.com # setup environment RUN locale-gen en_US.UTF-8 ENV LANG en_US.UTF-8 # setup sources.list RUN echo "deb http://packages.ros.org/ros/ubuntu trusty main" > /etc/apt/sources.list.d/ros-latest.list # setup keys RUN apt-key adv --keyserver hkp://ha.pool.sks-key...
maintenance/other
352
1e7b06065d00930a5a8ce6f8e8838429a34856c5
Fix: Moved ubuntu:trusty image download to Jenkins config
Fix: Moved ubuntu:trusty image download to Jenkins config
FROM cgeoffroy/dockernet ENV SON_EMU_IN_DOCKER 1 # ensure that we have the latest dockernet code base! WORKDIR / RUN rm -rf dockernet RUN git clone -b dockernet-sonata https://github.com/mpeuster/dockernet.git WORKDIR /dockernet RUN python setup.py develop WORKDIR /son-emu COPY . /son-emu/ # ensure that we have the...
FROM cgeoffroy/dockernet ENV SON_EMU_IN_DOCKER 1 # ensure that we have the latest dockernet code base! WORKDIR / RUN rm -rf dockernet RUN git clone -b dockernet-sonata https://github.com/mpeuster/dockernet.git WORKDIR /dockernet RUN python setup.py develop WORKDIR /son-emu COPY . /son-emu/ RUN cd /son-emu/ansible \...
code refactoring
271
f37d0591f0ca7f72124dd4abb3814f1eb21e6360
Bumped source to 20200218-9526737
Bumped source to 20200218-9526737
FROM docker.pkg.github.com/dock0/arch/arch:20200218-c0fa6f8 MAINTAINER akerl <me@lesaker.org> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
FROM docker.pkg.github.com/dock0/arch/arch:20200218-9526737 MAINTAINER akerl <me@lesaker.org> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
maintenance/other
287
3daed0466a092a5ce04924588b5ee976aebd175c
Bump alpine from 3.12.2 to 3.12.3 in /dockerfiles-builder
Bump alpine from 3.12.2 to 3.12.3 in /dockerfiles-builder Bumps alpine from 3.12.2 to 3.12.3. Signed-off-by: dependabot[bot] <5bdcd3c0d4d24ae3e71b3b452a024c6324c7e4bb@github.com>
FROM hairyhenderson/gomplate:v3.8.0-slim AS gomplate FROM hairyhenderson/bashbrew:latest AS bashbrew FROM docker:20.10.1 AS docker FROM mikefarah/yq:3.4.1 AS yq FROM alpine:3.12.2 AS runtime LABEL org.opencontainers.image.source https://github.com/hairyhenderson/dockerfiles RUN apk add --no-cache make bash git curl ...
FROM hairyhenderson/gomplate:v3.8.0-slim AS gomplate FROM hairyhenderson/bashbrew:latest AS bashbrew FROM docker:20.10.1 AS docker FROM mikefarah/yq:3.4.1 AS yq FROM alpine:3.12.3 AS runtime LABEL org.opencontainers.image.source https://github.com/hairyhenderson/dockerfiles RUN apk add --no-cache make bash git curl ...
maintenance/other
2323
7633546429f970d49c5925f1b048de48fb7bdff0
Bumped source to 20210320-6411eab
Bumped source to 20210320-6411eab
FROM docker.pkg.github.com/dock0/service/service:20210320-162d60a 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
263
9e569c83fd152656479790a1bc4a012091bb7549
Bumped source to 20200930-c8ab90a
Bumped source to 20200930-c8ab90a
FROM docker.pkg.github.com/dock0/arch/arch:20200930-68d49d0 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:20200930-c8ab90a 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"]
bug fix
2083
139180814980d785bd9f297051e091f47bb1b67e
Bump Dockerfile to 0.6.2-375-0bd96df7
Bump Dockerfile to 0.6.2-375-0bd96df7
FROM stellar/base:latest MAINTAINER Mat Schaffer <mat@stellar.org> ENV STELLAR_CORE_VERSION 0.6.2-374-c43ad535 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"]
null
maintenance/other
122
742d2943c134cd2f7f2976a008c0d38eb213471b
[php5-fpm] Dockerfile CMD fix
[php5-fpm] Dockerfile CMD fix
FROM cravler/php5-cli MAINTAINER Sergei Vizel <http://github.com/cravler> # Common environment variables ENV CONF_DIR_PHP5_FPM /etc/php5/fpm # All our dependencies, in alphabetical order (to ease maintenance) RUN apt-get update && apt-get install -y --no-install-recommends \ php5-fpm && \ # Remove cache ...
FROM cravler/php5-cli MAINTAINER Sergei Vizel <http://github.com/cravler> # Common environment variables ENV CONF_DIR_PHP5_FPM /etc/php5/fpm # All our dependencies, in alphabetical order (to ease maintenance) RUN apt-get update && apt-get install -y --no-install-recommends \ php5-fpm && \ # Remove cache ...
code refactoring
37
622d4c7472b7e952af30b7bab15bed8971cd0c74
Bumped source to 20200408-4392a9c
Bumped source to 20200408-4392a9c
FROM docker.pkg.github.com/dock0/arch/arch:20200408-c9c0516 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:20200408-4392a9c 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"]
feature addition
55
874e4ab883346e599e83e5b35679c8573cc614f0
update gosu to version 1.10
update gosu to version 1.10
FROM datagovsg/python-spark:2.7-1.6 MAINTAINER Chris Sng <chris@data.gov.sg> # Setup airflow RUN pip install --no-cache-dir airflow==1.8.0 psycopg2 ENV AIRFLOW_HOME /airflow WORKDIR ${AIRFLOW_HOME} # Setup airflow dags path ENV AIRFLOW_DAG ${AIRFLOW_HOME}/dags RUN mkdir -p ${AIRFLOW_DAG} # Install gosu ENV GOSU_VE...
FROM datagovsg/python-spark:2.7-1.6 MAINTAINER Chris Sng <chris@data.gov.sg> # Setup airflow RUN pip install --no-cache-dir airflow==1.8.0 psycopg2 ENV AIRFLOW_HOME /airflow WORKDIR ${AIRFLOW_HOME} # Setup airflow dags path ENV AIRFLOW_DAG ${AIRFLOW_HOME}/dags RUN mkdir -p ${AIRFLOW_DAG} # Install gosu ENV GOSU_VE...
maintenance/other
245
2cf48478174b138d18a44a9ec777173342c71528
Add Docker File to include NodeJS
Add Docker File to include NodeJS
FROM ubuntu RUN apt-get update RUN apt-get install -y build-essential python3 python3-pip haskell-platform curl RUN curl -sSL https://get.haskellstack.org/ | sh ENV PATH="/root/.local/bin:${PATH}" RUN stack setup RUN cabal update WORKDIR /testenv COPY . /testenv CMD ["make", "script_test"]
FROM ubuntu RUN apt-get update RUN apt-get install -y \ build-essential \ python3 \ python3-pip \ haskell-platform \ curl \ nodejs RUN curl -sSL https://get.haskellstack.org/ | sh ENV PATH="/root/.local/bin:${PATH}" RUN stack setup RUN cabal update WORKDIR /testenv COPY . /testenv CMD ["make", "script_test"]
code refactoring
23
47b6dd1ec4fb18078f91bf36bbafc2bf55863fbc
Bumped source to 20201219-dae2feb
Bumped source to 20201219-dae2feb
FROM docker.pkg.github.com/dock0/ssh/ssh:20201219-b59f33b 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:20201219-dae2feb 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 ...
code refactoring
6
0239ef660c899e25bd2745fb887b82d8234dd043
Update R version
Update R version
FROM r-base:3.4.1 LABEL maintainer="joelnbarnham@gmail.com" RUN \ Rscript -e "install.packages('ggplot2')" && \ Rscript -e "install.packages('randomForest')" && \ :
FROM r-base:4.1.3 LABEL maintainer="joelnbarnham@gmail.com" RUN \ Rscript -e "install.packages('ggplot2')" && \ Rscript -e "install.packages('randomForest')" && \ :
feature addition
107
8a9fdf43aef2224165fd5515ac13ea20a9b2fb23
Change Dockerfile to install dependencies last. Part of fixing multiple plugins support.
Change Dockerfile to install dependencies last. Part of fixing multiple plugins support.
FROM ramsproject/sideboard MAINTAINER RAMS Project "code@magfest.org" LABEL version.rams-core ="0.1" # install the requirements specified. # this will be a bit slow on first run but subsequently will be cached. COPY bower.json ./ RUN bower install --config.interactive=false --allow-root COPY requirements.txt ./ RUN pi...
FROM ramsproject/sideboard MAINTAINER RAMS Project "code@magfest.org" LABEL version.rams-core ="0.1" # add our code COPY . plugins/uber/ # go ahead and install base dependencies RUN paver install_deps
code refactoring, feature addition
121
b221aa7b1344abf043a7d8e79defb08d27b4a421
Added docker support for running worker or Web process by environment
Added docker support for running worker or Web process by environment
FROM ubuntu:trusty MAINTAINER ODL DevOps <mitx-devops@mit.edu> # Add package files ADD requirements.txt /tmp/requirements.txt ADD test_requirements.txt /tmp/test_requirements.txt ADD doc_requirements.txt /tmp/doc_requirements.txt ADD apt.txt /tmp/apt.txt WORKDIR /tmp # Install base packages RUN apt-get update RUN ap...
FROM ubuntu:trusty MAINTAINER ODL DevOps <mitx-devops@mit.edu> # Add package files ADD requirements.txt /tmp/requirements.txt ADD test_requirements.txt /tmp/test_requirements.txt ADD doc_requirements.txt /tmp/doc_requirements.txt ADD apt.txt /tmp/apt.txt WORKDIR /tmp # Install base packages RUN apt-get update RUN ap...
feature addition
2235
b4a25a3630c6201d320b87c33fa2e3cbabf4a33a
Update Dockerfile
Update Dockerfile adding missing cryptography and requests modules required for testing
FROM ubuntu:20.04 # Supresses unwanted user interaction (like "Please select the geographic area" when installing tzdata) ENV DEBIAN_FRONTEND=noninteractive ADD ./ /ccxt WORKDIR /ccxt # Update packages (use us.archive.ubuntu.com instead of archive.ubuntu.com — solves the painfully slow apt-get update) RUN sed -i 's/...
null
feature addition
2280
925122b51a89b1c581929a31b4378178c136fb56
Add the Azure CLI (#4816)
Add the Azure CLI (#4816)
# Copyright (c) Jupyter Development Team. # Distributed under the terms of the Modified BSD License. ARG BASE_IMAGE=tensorflow/tensorflow:1.13.2-py3-jupyter FROM $BASE_IMAGE ARG TF_SERVING_VERSION=0.0.0 ARG NB_USER=jovyan # TODO: User should be refactored instead of hard coded jovyan USER root ENV DEBIAN_FRONTEND...
null
maintenance/other
162
770c08a2cb4ff8833a2d08df500100e5ad68cdb7
add expose port
add expose port
FROM java:8 VOLUME /tmp ADD ulock-server-0.0.1-SNAPSHOT.war app.war RUN bash -c 'touch /app.jar' ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-jar","/app.war"]
FROM java:8 VOLUME /tmp EXPOSE 8080 ADD ulock-server-0.0.1-SNAPSHOT.war app.war RUN bash -c 'touch /app.jar' ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-jar","/app.war"]
code refactoring
399
59d72ea8e4fe4070d31a6de7457d96d3616f30fc
Bumped source to 20200618-45a041c
Bumped source to 20200618-45a041c
FROM docker.pkg.github.com/dock0/ssh/ssh:20200618-e717779 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:20200618-45a041c 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
2318
c8fac762f4544ae3b2167100ca212acd0887535a
Upgrade PG base dockerfile to 9.5 (#9)
Upgrade PG base dockerfile to 9.5 (#9)
FROM ubuntu:15.10 # This is a common docker file for flow that is used to create # containers running specific versions of an applications schema. This # container will be running postgresql with the application's schema # applied. # We make an assumption that there is a file named 'install.sh' in the # same director...
null
feature addition
2287
4e2b6a8209626ccdd506cee2b897ff97ee9397a6
reverted, unexpected error on docker hub
reverted, unexpected error on docker hub
FROM ubuntu:16.04 ENV DEBIAN_FRONTEND noninteractive # install dependencies RUN apt-get update && \ apt-get install -y sudo wget unzip openjdk-8-jdk git maven ecryptfs-utils mhddfs samba samba-common-bin && \ apt-get clean # install chrome RUN wget https://dl.google.com/linux/linux_signing_key.pub RUN apt-ke...
null
feature addition
2143
65e12bf9cddaa54f7a8fde8e3710cf5c2b1ee5b4
Added screen utility to the base image.
Added screen utility to the base image.
# jobber service base image FROM debian:wheezy MAINTAINER Mark Betz <betz.mark@gmail.com> # disable annoying warnings from installers ENV DEBIAN_FRONTEND noninteractive # install prerequisites and utils RUN apt-get update &&\ apt-get install -y\ build-essential\ checkinstall\ rsyslog\ curl\ wget\ git\ nano\ ...
null
maintenance/other
2136
f9ff4dda7c1730109c7fb2bdc51c0d1f2108205e
Version 4.4.13.1 added
Version 4.4.13.1 added
FROM dnhsoft/phpmyadmin-base:4.x ENV PMA_VERSION "4.4.13" RUN /install-pma.sh
null
maintenance/other