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
227
991cad469a3df54802ef8cc8d81f5e95386fcf0e
add ssh client for git ssh access
add ssh client for git ssh access
FROM alpine:3.4 MAINTAINER G.J.R. Timmer <gjr.timmer@gmail.com> ARG BUILD_DATE ARG VCS_REF LABEL \ nl.timmertech.build-date=${BUILD_DATE} \ nl.timmertech.name=alpine-sdk \ nl.timmertech.vendor=timmertech.nl \ nl.timmertech.vcs-url="https://github.com/GJRTimmer/docker-alpine-sdk.git" \ nl.timmertech.vcs-ref=${VCS_REF}...
FROM alpine:3.4 MAINTAINER G.J.R. Timmer <gjr.timmer@gmail.com> ARG BUILD_DATE ARG VCS_REF LABEL \ nl.timmertech.build-date=${BUILD_DATE} \ nl.timmertech.name=alpine-sdk \ nl.timmertech.vendor=timmertech.nl \ nl.timmertech.vcs-url="https://github.com/GJRTimmer/docker-alpine-sdk.git" \ nl.timmertech.vcs-ref=${VCS_REF}...
null
135
e93e1b76ec79a2195c2b6e53263478dbe9ea1c41
Update Dockerfile to Rails 5.0.0
Update Dockerfile to Rails 5.0.0
FROM rails:4.2.6 MAINTAINER Davide Bove <me@davidebove.com> ADD ./src /code WORKDIR /code ENV BUNDLE_PATH /box CMD /bin/bash
FROM rails:5.0.0 MAINTAINER Davide Bove <me@davidebove.com> ADD ./src /code WORKDIR /code ENV BUNDLE_PATH /box CMD ["/bin/bash"]
null
167
b88c4b43df7b149aff601c9f43cdff01f6cedac2
Bumped source to 20210719-5595c72
Bumped source to 20210719-5595c72
FROM docker.pkg.github.com/dock0/arch/arch:20210719-e784547 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:20210719-5595c72 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
141
12bcf2bedcc6a83102aec2006b18866580fc4126
Update the base image
Update the base image
FROM jedisct1/base-dev-rust-nightly:c44316d4a1ad0fe01ae366e163993aa3980c755f MAINTAINER Frank Denis ENV SERIAL 1 ENV DEBIAN_FRONTEND noninteractive RUN apt-get install -y \ libsnappy-dev ENV LIBRESSL_VERSION 2.2.5 ENV LIBRESSL_SHA256 e3caded0469d8dc64f4ca2fe8e499ada4dd014e84d1c5a71818d39e54e6c914b ENV LIBRESSL_D...
FROM jedisct1/base-dev-rust-nightly:34b4e66736a0fb65235feadbb5178d42bd09ed67 MAINTAINER Frank Denis ENV SERIAL 1 ENV DEBIAN_FRONTEND noninteractive RUN apt-get install -y \ libsnappy-dev ENV LIBRESSL_VERSION 2.2.5 ENV LIBRESSL_SHA256 e3caded0469d8dc64f4ca2fe8e499ada4dd014e84d1c5a71818d39e54e6c914b ENV LIBRESSL_D...
null
224
7855d3a05d1fa1f7ab96ee6ddccd66d5541fbf03
change confd binary url to get the version with ssl/tls memory problem fixed
change confd binary url to get the version with ssl/tls memory problem fixed
FROM salamandra/etcd ADD https://github.com/kelseyhightower/confd/releases/download/v0.6.0-alpha3/confd-0.6.0-alpha3-linux-amd64 /usr/local/bin/confd RUN chmod 0755 /usr/local/bin/confd RUN mkdir /etc/confd/conf.d/ -p RUN mkdir /etc/confd/templates/ -p
FROM salamandra/etcd # ADD https://github.com/kelseyhightower/confd/releases/download/v0.6.0-alpha3/confd-0.6.0-alpha3-linux-amd64 /usr/local/bin/confd ADD https://github.com/ricardosasilva/confd/releases/download/v0.6.0-alpha4/confd-0.6.0-alpha4-linux-amd64 /usr/local/bin/confd RUN chmod 0755 /usr/local/bin/confd RUN...
null
2253
f60c564e9500fd38c11ec3a8953742c87163843e
version updated
version updated
FROM airhacks/java LABEL maintainer="Adam Bien, adam-bien.com" description="Kibana" ENV INSTALL_DIR kibana RUN mkdir ${INSTALL_DIR} RUN curl https://artifacts.elastic.co/downloads/kibana/kibana-6.0.1-linux-x86_64.tar.gz | tar xvz -C ${INSTALL_DIR} --strip-components=1 ENTRYPOINT ${INSTALL_DIR}/bin/kibana EXPOSE 5601
null
null
195
2117899482da7ed6236913c5124afc6b075a4d11
Add CA certs to all-in-one image
Add CA certs to all-in-one image Signed-off-by: chandresh-pancholi <25dab51e580f04c0947224025fffefbe56ba05fb@gmail.com>
FROM scratch # Agent zipkin.thrift compact EXPOSE 5775/udp # Agent jaeger.thrift compact EXPOSE 6831/udp # Agent jaeger.thrift binary EXPOSE 6832/udp # Agent config HTTP EXPOSE 5778 # Collector HTTP EXPOSE 14268 # Collector gRPC EXPOSE 14250 # Web HTTP EXPOSE 16686 COPY ./cmd/all-in-one/all-in-one-linux /go/bin...
FROM alpine:latest as certs RUN apk add --update --no-cache ca-certificates FROM scratch COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt # Agent zipkin.thrift compact EXPOSE 5775/udp # Agent jaeger.thrift compact EXPOSE 6831/udp # Agent jaeger.thrift binary EXPOSE 6832/udp ...
null
2132
4320fbd88ee213e7b9db38161059681db930d1ee
Bump ipaddress package to fix SSL.Certificate Error
Bump ipaddress package to fix SSL.Certificate Error
# # Dockerfile for pman repository. # # Build with # # docker build -t <name> . # # For example if building a local version, you could do: # # docker build -t local/pman . # # In the case of a proxy (located at 192.168.13.14:3128), do: # # docker build --build-arg http_proxy=http://192.168.13.14:3128 --build-arg...
null
null
2063
6d19e7d10584094549119a4a297469ee5957e795
Remove version from docker file since it's tagged already
Remove version from docker file since it's tagged already
FROM debian:jessie-slim LABEL maintainer="david.muto@gmail.com" version="1.0.0" WORKDIR / ADD https://github.com/google/protobuf/releases/download/v3.3.0/protoc-3.3.0-linux-x86_64.zip ./ RUN apt-get -q -y update && \ apt-get -q -y install unzip && \ unzip protoc-3.3.0-linux-x86_64.zip -d ./usr/local && \ rm pro...
null
null
188
fe3862d94ee0f8a09114db979786ebf3c0fded44
Bump kubekins for kubeadm image
Bump kubekins for kubeadm image
# Copyright 2017 The Kubernetes Authors. # # 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 ...
# Copyright 2017 The Kubernetes Authors. # # 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 ...
null
2294
4d7d893a3be04a5564e1a2009864ea149725e7a4
Bumped source to 20211021-9c92104
Bumped source to 20211021-9c92104
FROM docker.pkg.github.com/dock0/arch/arch:20211021-b1fff7b 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
2231
e40a4059ad0b6c745cf7ee74b7727a9bcdc15021
Minor fixes to Dockerfile
Minor fixes to Dockerfile Signed-off-by: Aaron <64b2b6d12bfe4baae7dad3d018f8cbf6b0e7a044@jadja.eu>
FROM golang:1.12.7-alpine as builder ARG CADDY_VERSION="1.0.1" ENV GO111MODULE=on RUN apk add --no-cache git COPY caddy.go /go/build/caddy.go COPY go.mod /go/build/go.mod RUN cd /go/build && \ go build FROM alpine:3.10 RUN apk add --no-cache --no-progress curl tini ca-certificates COPY --from=builder /go/bu...
null
null
2085
0dce2e3ece366a6641ac570b50b99ad5430eb0ca
Bumped source to 20211117-612060d
Bumped source to 20211117-612060d
FROM docker.pkg.github.com/dock0/arch/arch:20211117-ebea708 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
2082
12a1697221511df7e400fc337a2f6a0a88dd5c29
Bumped source to 20211023-2d7fa18
Bumped source to 20211023-2d7fa18
FROM docker.pkg.github.com/dock0/arch/arch:20211023-0815b05 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
19
ea6f6cc96b207d8503a10cbe014e51d476aeb539
Bump to 0.10.14 and go 1.10
Bump to 0.10.14 and go 1.10
# # Build stage by @abiosoft https://github.com/abiosoft/caddy-docker # FROM golang:1.9-alpine as build ARG version="0.10.11" ARG plugins="" RUN apk add --no-cache git # caddy RUN git clone https://github.com/mholt/caddy -b "v${version}" /go/src/github.com/mholt/caddy \ && cd /go/src/github.com/mholt/caddy \ ...
# # Build stage by @abiosoft https://github.com/abiosoft/caddy-docker # FROM golang:1.10-alpine as build ARG version="0.10.14" ARG plugins="" RUN apk add --no-cache git # caddy RUN git clone https://github.com/mholt/caddy -b "v${version}" /go/src/github.com/mholt/caddy \ && cd /go/src/github.com/mholt/caddy \ ...
null
2092
054d00f7f73615c4d83788a5b2be0472f7c1e9a4
Update jenkins + plugins
Update jenkins + plugins
FROM jenkins:2.19.4-alpine COPY ref/init.groovy.d/executors.groovy /usr/share/jenkins/ref/init.groovy.d/executors.groovy RUN install-plugins.sh git:3.0.1 blueocean:1.0.0-b13 ansicolor:0.4.3 \ workflow-aggregator:2.4 pipeline-stage-view:2.4 cloudbees-folder:5.14 \ ec2:1.36 \ && echo 2.0 > /usr/share/jenkins/re...
null
null
111
42340ee22befc1eb9cd11cb696bf5bd6bac3c433
Upgrade confluent platform
Upgrade confluent platform
FROMubuntu:16.04 MAINTAINERNeal Hardesty <nealhardesty@yahoo.dot.com> # Install Oracle JDK 8 # http://www.webupd8.org/2014/03/how-to-install-oracle-java-8-in-debian.html RUN \ echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main" | tee /etc/apt/sources.list.d/webupd8team-java.list \ && echo "...
FROMubuntu:16.04 MAINTAINERNeal Hardesty <nealhardesty@yahoo.dot.com> # Install Oracle JDK 8 # http://www.webupd8.org/2014/03/how-to-install-oracle-java-8-in-debian.html RUN \ echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main" | tee /etc/apt/sources.list.d/webupd8team-java.list \ && echo "...
null
59
c2f21f87dd7677826ada3819a4533a689887b345
Bumped source to 20201116-c392ca8
Bumped source to 20201116-c392ca8
FROM docker.pkg.github.com/dock0/service/service:20201116-44643f6 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:20201116-c392ca8 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
2257
a6b464319983ea9ff787511f47c7b9241ebcd5a5
Updated with dnsutils
Updated with dnsutils
FROM debian MAINTAINER Marcel Grossmann <whatever4711@gmail.com> ENV DEBIAN_FRONTEND noninteractive ENV MININET_REPO git://github.com/mininet/mininet ENV MININET_INSTALLER ./mininet/util/install.sh ENV INSTALLER_SWITCHES -fbinptvwyx WORKDIR /tmp # Update and install minimal. RUN \ apt-get update \ --qui...
null
null
2307
082a73ee331d87ff1052441c214af9c3bc1a42a4
Bump NVM script version to 0.33.1 (#658)
Bump NVM script version to 0.33.1 (#658) https://github.com/creationix/nvm/releases/tag/v0.33.1
# #-------------------------------------------------------------------------- # Image Setup #-------------------------------------------------------------------------- # # To edit the 'workspace' base Image, visit its repository on Github # https://github.com/LaraDock/workspace # # To change its version, see the ava...
null
null
154
79a028ce11741a7665cdeab40171f7dca724fb4f
Bumped source to 20200816-dcc09bc
Bumped source to 20200816-dcc09bc
FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20200816-60b9c4b 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:20200816-dcc09bc MAINTAINER akerl <me@lesaker.org> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
null
99
55e20e7e2a583946eb7f05cf69c05842aa1ae08d
carriage return fix
carriage return fix
FROM alpine:edge # Note: # This is image is intended to be as small as possible MAINTAINER "Paolo D'Onorio De Meo <p.donoriodemeo@cineca.it>" RUN apk update && apk upgrade && apk add \ python3 jq\ bash vim curl wget less \ && rm -rf /var/cache/apk/* # Install easy install ENV EASY_REPO https://bootstrap....
FROM alpine:edge # Note: # This is image is intended to be as small as possible MAINTAINER "Paolo D'Onorio De Meo <p.donoriodemeo@cineca.it>" RUN apk update && apk upgrade && apk add \ python3 jq\ bash vim curl wget less \ && rm -rf /var/cache/apk/* # Install easy install ENV EASY_REPO https://bootstrap....
null
145
5241c3e60a204f764ecf3857415fc9a16e5399f9
fixes up to python
fixes up to python
FROM nvidia/cuda:9.1-cudnn7-devel-centos7 MAINTAINER r@fael.nl ENV LANG en_US.UTF-8 ENV LANGUAGE en_US.UTF-8 ENV LC_ALL en_US.UTF-8 RUN yum update RUN yum install -y wget \ unzip \ screen tmux \ ruby \ vim # C/C++ CMake Python RUN RUN ...
FROM nvidia/cuda:9.1-cudnn7-devel-centos7 ENV LANG en_US.UTF-8 ENV LANGUAGE en_US.UTF-8 ENV LC_ALL en_US.UTF-8 RUN yum groupinstall -y "Development tools" RUN yum install -y wget \ unzip \ screen tmux \ ruby \ vim # C/C++ CMake Python ...
null
258
852b728a02ba474f6948c2e9b019f8959cc11a9d
Attempt to fix Dockerfile
Attempt to fix Dockerfile
FROM node:12-alpine WORKDIR /src ADD . /src ARG env=production RUN yarn global add bower \ && bower install --allow-root \ && yarn WORKDIR /src EXPOSE 9090 ENV NODE_ENV $env CMD ["npm", "start"]
FROM node:12-slim WORKDIR /src ADD . /src ARG env=production RUN apt-get update \ && apt-get install build-essential git vim -y --no-install-recommends \ && rm -rf /var/lib/apt/lists/* RUN yarn global add bower \ && bower install --allow-root \ && yarn WORKDIR /src EXPOSE 9090 ENV NODE_ENV $env CMD ["npm",...
null
62
9d81ae8c9aed9b889130485f79e3c6788ee44f48
Bumped source to 20210708-032639e
Bumped source to 20210708-032639e
FROM docker.pkg.github.com/dock0/arch/arch:20210707-324d485 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:20210708-032639e 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
303
13e51f196e00eaa7140413b6b27c490ad322ea12
Bumped source to 20210130-a067386
Bumped source to 20210130-a067386
FROM docker.pkg.github.com/dock0/arch/arch:20210130-f647073 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:20210130-a067386 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
2097
d52fd80eea1515e83f85ba19640cd3601490484f
Bumped source to 20210119-0101695
Bumped source to 20210119-0101695
FROM docker.pkg.github.com/dock0/arch/arch:20210119-bab8ee8 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
null
197
c913a3cc143fb8342d0c8eaabf94109d71f37ca3
Update golang:1.10-alpine Docker digest to bb3108
Update golang:1.10-alpine Docker digest to bb3108
FROM golang:1.10-alpine@sha256:96e25c71acc7756adaa0c9237bc799dfba4c0a71409612b3111f20a79a9c4cc2 AS build RUN apk add --no-cache \ make \ git \ upx RUN mkdir -p /go/src/github.com/hairyhenderson/gomplate WORKDIR /go/src/github.com/hairyhenderson/gomplate COPY . /go/src/github.com/hairyhenderson/gomplate R...
FROM golang:1.10-alpine@sha256:bb31085d5c5db578edf3d4e5541cfb949b713bb7018bbac4dfd407b2017ef5b8 AS build RUN apk add --no-cache \ make \ git \ upx RUN mkdir -p /go/src/github.com/hairyhenderson/gomplate WORKDIR /go/src/github.com/hairyhenderson/gomplate COPY . /go/src/github.com/hairyhenderson/gomplate R...
null
267
b935793b060a3a920837ae0ae507115840b856d6
Update AWS CLI version to 1.10.53
Update AWS CLI version to 1.10.53
FROM python:3.5-slim MAINTAINER Nikolay Rybak <mykola.rybak@gmail.com> RUN \ mkdir -p /aws && \ pip install --upgrade awscli==1.10.52 && \ rm -rf /root/.cache && \ rm -rf /var/lib/apt/lists/* WORKDIR /aws ENTRYPOINT ["aws"]
FROM python:3.5-slim MAINTAINER Nikolay Rybak <mykola.rybak@gmail.com> RUN \ mkdir -p /aws && \ pip install --upgrade awscli==1.10.53 && \ rm -rf /root/.cache && \ rm -rf /var/lib/apt/lists/* WORKDIR /aws ENTRYPOINT ["aws"]
null
347
a063d2244249a62b8f5e0e0c28cc47dbcfa3b5ad
copy more files and add new entrypoint
copy more files and add new entrypoint
FROM alpine COPY add-user gen-cert output-crt /usr/local/sbin/ RUN apk update \ && apk add openssl \ && apk add apache2-utils ENTRYPOINT ["sh"]
FROM alpine COPY add-user del-user gen-cert output-crt output-auth sleep-forever /usr/local/sbin/ RUN apk update \ && apk add openssl \ && apk add apache2-utils ENTRYPOINT ["sleep-forever"]
null
2117
4d1cd9fce58dd9c7ab31bc183d0294d2afd1a40f
Fixed my fingers being overhasty
Fixed my fingers being overhasty
FROM frolvlad/alpine-glibc MAINTAINER Jannik Kolodziej <docker@jkolodziej.de> ENV FACTORIO_VERSION=0.12.31 \ MANAGER_VERSION=0.2.0 \ ADMIN_PASSWORD= VOLUME /opt/factorio/saves /opt/factorio/mods /security RUN apk add --no-cache curl tar unzip nginx WORKDIR /opt/ ADD "init.sh" "/opt/init.sh" ADD "nginx.conf...
null
null
2139
56484a6117e307b4b78c4f7c4c059b1e2d0720ee
update awestruct to ruby 2.3
update awestruct to ruby 2.3
FROM debian:jessie RUN apt-get update \ && apt-get install -y --no-install-recommends \ bzip2 \ ca-certificates \ curl \ libffi-dev \ libgdbm3 \ libssl-dev \ libyaml-dev \ procps \ zlib1g-dev \ && rm -rf /var/lib/apt/lists/* # skip installing gem documentation RUN mkdir -p /usr/local/etc \ && { \ echo 'install: --no...
null
null
299
47ecafd9d67eeb0cdef5d97fba305695885908f3
Fix dependencies
Fix dependencies
ARG BASE_IMAGE_TAG FROM wodby/alpine:${BASE_IMAGE_TAG} ARG MARIADB_VER ARG GALERA_VER ARG WSREP_VER ARG NPROC ENV MARIADB_VER="${MARIADB_VER}" \ GALERA_VER="${GALERA_VER}" \ BACKUPS_DIR="/mnt/backups" COPY patches /tmp/patches RUN set -xe; \ \ addgroup -g 101 -S mysql; \ adduser -u 100 -D -S -s...
ARG BASE_IMAGE_TAG FROM wodby/alpine:${BASE_IMAGE_TAG} ARG MARIADB_VER ARG GALERA_VER ARG WSREP_VER ARG NPROC ENV MARIADB_VER="${MARIADB_VER}" \ GALERA_VER="${GALERA_VER}" \ BACKUPS_DIR="/mnt/backups" COPY patches /tmp/patches RUN set -xe; \ \ addgroup -g 101 -S mysql; \ adduser -u 100 -D -S -s...
null
2127
62a19f1f0472341c1123f35917e443316e31b77a
docker build fix
docker build fix
FROM java:8 MAINTAINER EMC ADD build/dist/mongoose*.tgz /opt/ RUN ln -s /opt/mongoose* /opt/mongoose EXPOSE 1099,9020-9040 ENTRYPOINT ["java", "-jar", "/opt/mongoose/mongoose.jar"]
null
null
128
22f7f36a55a47a8740a68a88de82f43ac19eb37c
Fix Dockerfile
Fix Dockerfile
FROM node:argon CMD npm install && npm start
FROM node:argon # Create app directory RUN mkdir -p /usr/src/app WORKDIR /usr/src/app # Install app dependencies COPY package.json /usr/src/app/ ENV NODE_ENV production ENV NPM_CONFIG_PRODUCTION false ENV DEBUG app* ENV PORT 8080 ENV DATABASE_URL mongodb://heroku_72vsvrmw:rl7hd5113dkqf45fp6nd7ilfa0@ds033797.mlab.com:...
null
2081
e6333e2802f65c36ce6dad913aa4ac583319fcc0
Bump Dockerfile to 10.2.0-811-ea36d43e
Bump Dockerfile to 10.2.0-811-ea36d43e
FROM stellar/base:latest MAINTAINER Mat Schaffer <mat@stellar.org> ENV STELLAR_CORE_VERSION 10.2.0-810-54504c71 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
null
2075
afe8d2b9c9da520e1582c720928be76af4ea41f6
Bumped source to 20201124-36e8399
Bumped source to 20201124-36e8399
FROM docker.pkg.github.com/dock0/service/service:20201124-291f445 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
null
2249
5e7da2337763400ead5bbff17395a87ca31a547b
Upgraded to GoCD 17.1.0
Upgraded to GoCD 17.1.0
# We need edge for the xmlstarlet package right now. FROM alpine:3.5 MAINTAINER karel.bemelmans@unibet.com # Install more apk packages we might need RUN apk --no-cache --update add \ apache2-utils \ bash \ curl \ git \ openjdk8-jre \ subversion \ xmlstarlet \ && rm -rf /var/cache/apk/* # Add go user a...
null
null
82
ad2a3c7d6b3bae8f3843bd4cb1584e6315ca6d0b
Add ant-junit and bc to java container
Add ant-junit and bc to java container
# DOCKER-VERSION 1.1.0 #inherit from the default container, which have all the needed script to launch tasks FROM ingi/inginious-c-default # Add java 1.7 RUN yum install -y java-1.7.0-openjdk java-1.7.0-openjdk-devel ant
# DOCKER-VERSION 1.1.0 #inherit from the default container, which have all the needed script to launch tasks FROM ingi/inginious-c-default # Add java 1.7 RUN yum install -y java-1.7.0-openjdk java-1.7.0-openjdk-devel ant ant-junit bc
null
367
8a10596b9c86dc70dc597ac18011a5cbf2d2c38a
Bump amazon/aws-cli from 2.2.1 to 2.2.2 (#324)
Bump amazon/aws-cli from 2.2.1 to 2.2.2 (#324)
FROM amazon/aws-cli:2.2.1 RUN mkdir -p ~/.aws/cli COPY alias /root/.aws/cli/alias ENTRYPOINT ["/usr/local/bin/aws"]
FROM amazon/aws-cli:2.2.2 RUN mkdir -p ~/.aws/cli COPY alias /root/.aws/cli/alias ENTRYPOINT ["/usr/local/bin/aws"]
null
2207
188a520fdb7ccf190131a191da749c996f4c42e0
Bumped source to 20210701-a9f2016
Bumped source to 20210701-a9f2016
FROM docker.pkg.github.com/dock0/ssh/ssh:20210701-928277e 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
169
b86c0ce4751a39a655cfcba6300f4e7c80b3b1e5
Android client docker: version bump Go to 1.3.1
Android client docker: version bump Go to 1.3.1 Change-Id: Id3cce36343688c05eff220327534f7fa5880af5d
# Build environment in which to build the Camlistore Android app. # # This extends the Dockerfile from https://index.docker.io/u/wasabeef/android/ FROM wasabeef/android MAINTAINER bradfitz <brad@danga.com> # Found these from: android list sdk -u -e RUN android list sdk -u -e | grep build-tools- | perl -npe 's/.+"(.+)...
# Build environment in which to build the Camlistore Android app. # # This extends the Dockerfile from https://index.docker.io/u/wasabeef/android/ FROM wasabeef/android MAINTAINER bradfitz <brad@danga.com> # Found these from: android list sdk -u -e RUN android list sdk -u -e | grep build-tools- | perl -npe 's/.+"(.+)...
null
2254
f26f7948e954b8a5055812d538a5c2cd5f2dcaa7
Added libvshadow to libyal project configuration (#5698)
Added libvshadow to libyal project configuration (#5698)
# Copyright 2020 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing,...
null
null
365
43831b4ad82143d7532960157468d2c6f8447d3e
Bumped source to 20211210-5bd4e44
Bumped source to 20211210-5bd4e44
FROM docker.pkg.github.com/dock0/arch/arch:20211210-4b4802a 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:20211210-5bd4e44 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
387
a8408a41f49a626740c8ffa5f53cb360a15999e4
Update selenium/node-chrome:latest Docker digest to d9465ea
Update selenium/node-chrome:latest Docker digest to d9465ea
FROM selenium/node-chrome:latest@sha256:656a0c72255c756c39587578465841e0fc0fa8e4b5b3949e33fac3ca2eb0aa8a USER root RUN apt-get update -qqy \ && apt-get install -y git \ && rm -rf /var/lib/apt/lists/* /var/cache/apt/* \ && rm /bin/sh && ln -s /bin/bash /bin/sh \ && chown seluser /usr/local ENV NVM_DIR /usr/lo...
FROM selenium/node-chrome:latest@sha256:d9465eab867411e36b6e5befa2d6b5862288ff836e25bf4215d0afcdeca58279 USER root RUN apt-get update -qqy \ && apt-get install -y git \ && rm -rf /var/lib/apt/lists/* /var/cache/apt/* \ && rm /bin/sh && ln -s /bin/bash /bin/sh \ && chown seluser /usr/local ENV NVM_DIR /usr/lo...
null
2108
cc149592fcd5882fa933fa54bf7f8ef86784df78
Update Dockerfile
Update Dockerfile Updated acme-tiny client to fix license issue
FROM nginx MAINTAINER Weiyan Shao "lighteningman@gmail.com" WORKDIR /root ENV DOCKER_GEN_VERSION 0.7.0 ADD https://github.com/just-containers/s6-overlay/releases/download/v1.11.0.1/s6-overlay-amd64.tar.gz /tmp/ ADD https://github.com/jwilder/docker-gen/releases/download/$DOCKER_GEN_VERSION/docker-gen-linux-amd64-$D...
null
null
343
df029a98277a5811783c4f9a1569930aa10652a4
Bump golang from 1.16.2 to 1.16.3
Bump golang from 1.16.2 to 1.16.3 Bumps golang from 1.16.2 to 1.16.3. Signed-off-by: dependabot[bot] <5bdcd3c0d4d24ae3e71b3b452a024c6324c7e4bb@github.com>
null
null
null
2203
7ecf4a1d0cb7e4c973ff919997b11e5d3abcf552
:whale: bumped to latest php 7.10.0 base
:whale: bumped to latest php 7.10.0 base
FROM uqlibrary/docker-fpm70:14 RUN rpm --import http://li.nux.ro/download/nux/RPM-GPG-KEY-nux.ro && \ yum install -y http://li.nux.ro/download/nux/dextop/el7/x86_64/nux-dextop-release-0-5.el7.nux.noarch.rpm && \ yum install -y file && \ yum install -y mysql && \ yum install -y poppler-utils && \ yum install ...
null
null
351
ae642147090eb0ff64cd16a439d4845b15696fa5
Bump version of terraform and kubectl
Bump version of terraform and kubectl
FROM jenkins:1.625.3 MAINTAINER Marat Garafutdinov <marat.g@samsung.com> USER root COPY plugins.txt /usr/share/jenkins/plugins.txt COPY keys /root/.ssh/ RUN chmod 400 /root/.ssh/id_rsa # versions ENV TERRAFORM_VERSION 0.6.6 ENV TERRAFORM_EXECUTE_VERSION v0.0.2 ENV TERRAFORM_COREOSBOX_VERSION v0.0.1 ENV KUBERNETES_VER...
FROM jenkins:1.625.3 MAINTAINER Marat Garafutdinov <marat.g@samsung.com> USER root COPY plugins.txt /usr/share/jenkins/plugins.txt COPY keys /root/.ssh/ RUN chmod 400 /root/.ssh/id_rsa # versions ENV TERRAFORM_VERSION 0.6.8 ENV TERRAFORM_EXECUTE_VERSION v0.0.2 ENV TERRAFORM_COREOSBOX_VERSION v0.0.1 ENV KUBERNETES_VER...
null
179
8cedf26f34394042aa5cdeb49a30f284b242a471
Bumped source to 20200414-499f783
Bumped source to 20200414-499f783
FROM docker.pkg.github.com/dock0/arch/arch:20200414-e5fc19e 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:20200414-499f783 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
414
8e0da3b27c02bb45471161921e186790cf888fe9
update dockerfile for new pipenv stuffs
update dockerfile for new pipenv stuffs tested this running on docker locally, and also tested this on Heroku (no docker)
FROM ubuntu RUN apt-get update RUN apt-get install -y python python-pip build-essential libssl-dev libffi-dev python-dev WORKDIR /app ADD ./ /app RUN pip install -r ./requirements.txt CMD python run.py
FROM python:2 COPY . /app WORKDIR /app RUN pip install pipenv RUN pipenv install --system --deploy CMD ["gunicorn", "-b 0.0.0.0:5000", "wsgi"]
null
378
ebe5bc1e2cdabe5aae7ff28eb871409aac7b6fcd
fix(manager): gradle needs a jdk (#6006)
fix(manager): gradle needs a jdk (#6006)
ARG IMAGE=latest # Base image #============ FROM renovate/yarn:1.22.4@sha256:0115b2988eeb4b691a829ab118b5195f842167c78dcca0462d11e05cfbf19ad6 AS base LABEL maintainer="Rhys Arkins <rhys@arkins.net>" LABEL name="renovate" LABEL org.opencontainers.image.source="https://github.com/renovatebot/renovate" \ org.openc...
ARG IMAGE=latest # Base image #============ FROM renovate/yarn:1.22.4@sha256:0115b2988eeb4b691a829ab118b5195f842167c78dcca0462d11e05cfbf19ad6 AS base LABEL maintainer="Rhys Arkins <rhys@arkins.net>" LABEL name="renovate" LABEL org.opencontainers.image.source="https://github.com/renovatebot/renovate" \ org.openc...
null
2277
799b7e5daa1f2674c8cd776384ffc40ec4900d70
Bumped source to 20210403-72dc6c7
Bumped source to 20210403-72dc6c7
FROM docker.pkg.github.com/dock0/ssh/ssh:20210403-c4dcdef 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
2102
ce20fdd8074b6c86d684016879dc27481ef7c4c6
Bumped source to 20201222-dc7b1c0
Bumped source to 20201222-dc7b1c0
FROM docker.pkg.github.com/dock0/arch/arch:20201222-e042ba0 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
null
2262
f219e99407ea6bfb4021f496ca4aec95a9786c5e
chore(tests): install g++ since Docker Hub won't create a new image
chore(tests): install g++ since Docker Hub won't create a new image
FROM malept/electron-forge-container:latest RUN mkdir /code WORKDIR /code ADD . /code/
null
null
316
880252fdb5d10913c7aa0922331b359b713b64cf
Add libgconf-2-4 to Dockerfile because chromedriver depends on it
Add libgconf-2-4 to Dockerfile because chromedriver depends on it Trying to fix error in dotnet buildpack pipeline. Signed-off-by: Leah Hanson <59915d4d5a651c1df4fd522b917423b47c84f68b@pivotal.io>
FROM ruby:2.3.1-slim ENV LANG="C.UTF-8" COPY config/apt-key.gpg config/google-chrome-apt-key.pub /tmp/ RUN echo "deb http://packages.cloud.google.com/apt cloud-sdk-jessie main" | tee -a /etc/apt/sources.list.d/google-cloud-sdk.list \ && echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /...
FROM ruby:2.3.1-slim ENV LANG="C.UTF-8" COPY config/apt-key.gpg config/google-chrome-apt-key.pub /tmp/ RUN echo "deb http://packages.cloud.google.com/apt cloud-sdk-jessie main" | tee -a /etc/apt/sources.list.d/google-cloud-sdk.list \ && echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /...
null
47
c83f96d3049941ea0653aec9382d75956a28b7b5
Bumped source to 20200713-4a82ca8
Bumped source to 20200713-4a82ca8
FROM docker.pkg.github.com/dock0/ssh/ssh:20200713-ac2d221 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:20200713-4a82ca8 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
151
972c76a4001c76fbe330900d0c41393050c58908
Fix Redis server setup in docker file
Fix Redis server setup in docker file
FROM buildpack-deps:wheezy RUN groupadd --gid 1000 node \ && useradd --uid 1000 --gid node --shell /bin/bash --create-home node # gpg keys listed at https://github.com/nodejs/node RUN set -ex \ && for key in \ 9554F04D7259F04124DE6B476D5A82AC7E37093B \ 94AE36675C464D64BAFA68DD7434390BDBE9B9C5 \ 0034A0...
FROM buildpack-deps:wheezy RUN groupadd --gid 1000 node \ && useradd --uid 1000 --gid node --shell /bin/bash --create-home node # gpg keys listed at https://github.com/nodejs/node RUN set -ex \ && for key in \ 9554F04D7259F04124DE6B476D5A82AC7E37093B \ 94AE36675C464D64BAFA68DD7434390BDBE9B9C5 \ 0034A0...
null
2296
4cf002a92495e973bb1d7571e40e32b3b4697cbb
Run docker/update.sh
Run docker/update.sh
FROM alpine:3.3 RUN apk add --no-cache curl ENV DOCKER_VERSION 1.12.0-dev ENV DOCKER_URL https://master.dockerproject.org/linux/amd64/docker-1.12.0-dev.tgz ENV DOCKER_SHA256 3a45162f37f12f284815ec32a6a3bcbe4dffa181d768a924441a922451d99ff5 RUN set -x \ && curl -fSL "${DOCKER_URL}" -o docker.tgz \ && echo "${DOCKER_SH...
null
null
210
cd46c51f77fabac4abd60ca29f7da82faaaf2b5f
updated Dockerfile to use crate version 3.2.8
updated Dockerfile to use crate version 3.2.8
## -*- docker-image-name: "docker-crate" -*- # # Crate Dockerfile # https://github.com/crate/docker-crate # FROM centos:7 RUN groupadd crate && useradd -u 1000 -g crate -d /crate crate RUN curl --retry 8 -o /openjdk.tar.gz https://download.java.net/java/GA/jdk11/13/GPL/openjdk-11.0.1_linux-x64_bin.tar.gz \ && ec...
## -*- docker-image-name: "docker-crate" -*- # # Crate Dockerfile # https://github.com/crate/docker-crate # FROM centos:7 RUN groupadd crate && useradd -u 1000 -g crate -d /crate crate RUN curl --retry 8 -o /openjdk.tar.gz https://download.java.net/java/GA/jdk11/13/GPL/openjdk-11.0.1_linux-x64_bin.tar.gz \ && ec...
null
2098
ea4a3db25b8c1e1b4a4c20fd9627a2ed3150f028
update Dockerfile
update Dockerfile
#Docker App Auto Deployment Simple Weather App FROM ubuntu:14.04.4 MAINTAINER Tonia Thompson <writing@toniathompson.com> # Surpress Upstart errors/warning RUN dpkg-divert --local --rename --add /sbin/initctl RUN ln -sf /bin/true /sbin/initctl # Update base image # Add sources for latest nginx # Install software requ...
null
null
109
764ac96175d2da8d3a80a348a3f3c785d804459e
[cd] Update CIPD package versions used by `cd` Docker image
[cd] Update CIPD package versions used by `cd` Docker image Bug: skia:12544 Change-Id: I70e34fcbd1033fa8a276c1b252a0a5baa5ef8e13 Reviewed-on: https://skia-review.googlesource.com/c/buildbot/+/539061 Commit-Queue: Eric Boren <0e499112533c8544f0505ea0d08394fb5ad7d8fa@google.com> Reviewed-by: Ravi Mistry <9fa2e7438b8cb73...
ARG CIPD_ROOT="/cipd" FROM debian:bullseye as base RUN apt-get update && apt-get upgrade -y && apt-get install -y \ apt-transport-https \ ca-certificates \ clang-11 \ curl \ gnupg2 \ make \ patch \ software-properties-common \ && curl -fsSL https://download.docker.com/linux/debian/...
ARG CIPD_ROOT="/cipd" FROM debian:bullseye as base RUN apt-get update && apt-get upgrade -y && apt-get install -y \ apt-transport-https \ ca-certificates \ clang-11 \ curl \ gnupg2 \ make \ patch \ software-properties-common \ && curl -fsSL https://download.docker.com/linux/debian/...
null
2248
4a094c867c89d847fe52f97cf62e04d3e50d10e1
docker-compose.yml updates
docker-compose.yml updates
FROM node:7.8-alpine ENV USERNAME nodeuser RUN adduser -D $USERNAME && \ mkdir /code && \ chown $USERNAME:$USERNAME /code USER $USERNAME WORKDIR /code ARG NODE_ENV=production ENV NODE_ENV=${NODE_ENV} COPY yarn.lock package.json /code/ USER root RUN find /code -user 0 -print0 | xargs -0 chown $USERNAME:$US...
null
null
230
335f38711d8cf7621fd1b7fc9fd4efe59acd2ed9
Bumped source to 20201216-e99bf31
Bumped source to 20201216-e99bf31
FROM docker.pkg.github.com/dock0/arch/arch:20201216-170ce7b 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:20201216-e99bf31 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
294
dfc5473806e2771f1f45df623083b9ab32f9677a
Bumped source to 20200901-86f791f
Bumped source to 20200901-86f791f
FROM docker.pkg.github.com/dock0/service/service:20200901-f88737f 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:20200901-86f791f 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
2158
1bc6cf776a9091cd8c5e382fed1b7d897cd93529
Update Dockerfile
Update Dockerfile
# A docker file to run a ubuntu archive mirror FROM alpine:latest MAINTAINER Antoine GIRARD <antoine.girard@sapk.fr> ENV SYNCMODE="archive" RSYNCSOURCE="rsync://rsync.archive.ubuntu.com/ubuntu" BASEDIR="/var/www/ubuntuarchive/" # Could use in release mode SYNCMODE="releases" with RSYNCSOURCE="rsync://rsync.releases.ub...
null
null
310
cf9962b50a101684cd59a428043a4e64542e0065
Add CMD
Add CMD
FROM ubuntu:latest MAINTAINER Chen, Wenli <chenwenli@chenwenli.com> WORKDIR /tmp/work ENV PRJROOT=/tmp/work/w64 \ TARGET=x86_64-w64-mingw32 ENV PREFIX=${PRJROOT}/tools \ BUILD=${PRJROOT}/build-tools ENV TARGET_PREFIX=${PREFIX}/${TARGET} ENVMAKEOPTS="-j4 --quiet" COPY createdir.sh . RUN \ /bin/bash createdir.sh && ...
FROM ubuntu:latest MAINTAINER Chen, Wenli <chenwenli@chenwenli.com> WORKDIR /tmp/work ENV PRJROOT=/tmp/work/w64 \ TARGET=x86_64-w64-mingw32 ENV PREFIX=${PRJROOT}/tools \ BUILD=${PRJROOT}/build-tools ENV TARGET_PREFIX=${PREFIX}/${TARGET} ENVMAKEOPTS="-j4 --quiet" COPY createdir.sh . RUN \ /bin/bash createdir.sh && ...
null
236
38921903645d7bb218a7aeca8eabb301408bd8bf
Update to 6.5.0
Update to 6.5.0
# Logstash 6.4.3 # This image re-bundles the Docker image from the upstream provider, Elastic. FROM docker.elastic.co/logstash/logstash:6.4.3@sha256:392a232fdde65fb4821fc0d5e00ded19fec721226e1550bff4ab8ca84447d719 # The upstream image was built by: # https://github.com/elastic/logstash-docker/tree/6.4.3 # For a fu...
# Logstash 6.5.0 # This image re-bundles the Docker image from the upstream provider, Elastic. FROM docker.elastic.co/logstash/logstash:6.5.0@sha256:8735c7e6cb271dd064cb6fa4828750059d8b94cd92aed776e4291e100568a9e7 # The upstream image was built by: # https://github.com/elastic/logstash-docker/tree/6.5.0 # For a fu...
null
244
9c89d1768220e7b2698c8b0b1ed9871618f237fe
Optimize docker image size.
Optimize docker image size.
FROM l3iggs/archlinux-aur # Prefer to use the server at Samfundet, Trondheim. RUN sudo sed -i '1s/^/Server = http:\/\/mirror.archlinux.no\/$repo\/os\/$arch /' /etc/pacman.d/mirrorlist # Arch does not support "partial upgrades" so we must install every # Arch package in the same docker RUN command. RUN yaourt --noconf...
FROM l3iggs/archlinux-aur # Install the RISC-V toolchain from github and build from source # Using the latest RISC-V toolchain causes a compilation error when # building the RISC-V tests, but this revision is known to work. TODO: # debug compilation error. ENV TOOLCHAIN_REVISION f0addb7 RUN git clone https://github.c...
null
106
77d0b75d485c8a0c909e3bb57e918c669ff23e68
update libudev-dev
update libudev-dev
FROM ubuntu:16.04@sha256:97b54e5692c27072234ff958a7442dde4266af21e7b688e7fca5dc5acc8ed7d9 ENV LC_ALL=C.UTF-8 LANG=C.UTF-8 RUN apt-get update -q && \ apt-get install -qy \ git=1:2.7.4-0ubuntu1.7 \ wget=1.17.1-1ubuntu1.5 \ make=4.1-6 \ autotools-dev=20150820.1 \ autoconf=2.69...
FROM ubuntu:16.04@sha256:97b54e5692c27072234ff958a7442dde4266af21e7b688e7fca5dc5acc8ed7d9 ENV LC_ALL=C.UTF-8 LANG=C.UTF-8 RUN apt-get update -q && \ apt-get install -qy \ git=1:2.7.4-0ubuntu1.7 \ wget=1.17.1-1ubuntu1.5 \ make=4.1-6 \ autotools-dev=20150820.1 \ autoconf=2.69...
null
2073
18dfb91eab9d000b2199feec1fc636470bb13375
Bump Dockerfile to 0.1-192-e78aebbd
Bump Dockerfile to 0.1-192-e78aebbd
FROM stellar/base:latest MAINTAINER Mat Schaffer <mat@stellar.org> ENV STELLAR_CORE_VERSION 0.1-191-341fa19d 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
null
404
00648d5aef7a07eca7a8b8bd0350bbc838c02d31
Updated to ownCloud 8.1.0.
Updated to ownCloud 8.1.0.
FROM debian:jessie MAINTAINER Josh Chaney "josh@chaney.io" ADD misc/bootstrap.sh /usr/bin/ ADD configs/nginx_ssl.conf /root/ ADD configs/nginx.conf /root/ RUN dpkg-divert --local --rename --add /sbin/initctl && ln -sf /bin/true /sbin/initctl RUN DEBIAN_FRONTEND=noninteractive ;\ apt-get update && \ apt-get i...
FROM debian:jessie MAINTAINER Josh Chaney "josh@chaney.io" ADD misc/bootstrap.sh /usr/bin/ ADD configs/nginx_ssl.conf /root/ ADD configs/nginx.conf /root/ ENV OWNCLOUD_VERSION 8.1.0 RUN dpkg-divert --local --rename --add /sbin/initctl && ln -sf /bin/true /sbin/initctl RUN DEBIAN_FRONTEND=noninteractive ;\ apt-g...
null
2116
5c0ec432b33a66571b50f201d3e44307617ab4ca
Update to the latest version of the Heroku CLI
Update to the latest version of the Heroku CLI
FROM debian:jessie LABEL maintainer='Codeship Inc., <maintainers@codeship.com>' ENV CACHE_BUST='2017-08-07' \ JQ_VERSION='1.5' \ PATH="/usr/local/heroku/bin:${PATH}" RUN \ apt-get update && \ apt-get install -y --no-install-recommends \ bash \ curl \ ruby \ sudo \ wget && \ apt-get c...
null
null
2241
a57eefa3b8ce2f8a8e86075106011fd9978a7d15
Update youtube-dl to 2017.08.13
Update youtube-dl to 2017.08.13
FROM golang:1.8 MAINTAINER Mattias Wadman mattias.wadman@gmail.com ENV FFMPEG_VERSION=n3.3.3 ENV YDL_VERSION=2017.08.09 ENV TINI_VERSION=v0.14.0 ENV LISTEN=:8080 ENV FORMATS=/etc/formats.json RUN \ sed -i 's/main/main contrib non-free/g' /etc/apt/sources.list && \ apt-get update && \ apt-get -y install \ bu...
null
null
215
4d5f561266ce52988d832d70b618f3df73ece6bd
Add trailing slashes to the dirs in Dockerfile to allow older versions of docker to build
Add trailing slashes to the dirs in Dockerfile to allow older versions of docker to build
FROM ruby:2.3.0 RUN mkdir -p /srv/app WORKDIR /srv/app ADD Gemfile /srv/app ADD Gemfile.lock /srv/app RUN bundle install ADD . /srv/app RUN RAILS_ENV=production bin/rake assets:precompile EXPOSE 3000 CMD ["bin/unicorn", "-p", "3000", "-c", "config/unicorn.rb"]
FROM ruby:2.3.0 RUN mkdir -p /srv/app WORKDIR /srv/app ADD Gemfile /srv/app/ ADD Gemfile.lock /srv/app/ RUN bundle install ADD . /srv/app RUN RAILS_ENV=production bin/rake assets:precompile EXPOSE 3000 CMD ["bin/unicorn", "-p", "3000", "-c", "config/unicorn.rb"]
null
20
8ce5e48ca8deda91b64b78a3b0b2f5073bc4a9b0
Bumped source to 20200609-c4be92a
Bumped source to 20200609-c4be92a
FROM docker.pkg.github.com/dock0/arch/arch:20200609-c2fdda7 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:20200609-c4be92a 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
285
e0866f1904b335b143f04a7de7786d6351eac1e6
Bumped source to 20201013-a2201e2
Bumped source to 20201013-a2201e2
FROM docker.pkg.github.com/dock0/arch/arch:20201013-9e971d1 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-a2201e2 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
11
02ee9045f00c23178cb62335bcc33bf9acc3592e
Update kernel to 4.14.109
Update kernel to 4.14.109
FROM debian:stretch-slim SHELL ["/bin/bash", "-Eeuo", "pipefail", "-xc"] RUN apt-get update; \ apt-get install -y --no-install-recommends \ bash-completion \ bc \ ca-certificates \ cpio \ gcc \ git \ gnupg dirmngr \ golang-go \ kmod \ libc6-dev \ libelf-dev \ make \ p7zip-full \ patch \ squashfs-tools \ wget \ xorris...
FROM debian:stretch-slim SHELL ["/bin/bash", "-Eeuo", "pipefail", "-xc"] RUN apt-get update; \ apt-get install -y --no-install-recommends \ bash-completion \ bc \ ca-certificates \ cpio \ gcc \ git \ gnupg dirmngr \ golang-go \ kmod \ libc6-dev \ libelf-dev \ make \ p7zip-full \ patch \ squashfs-tools \ wget \ xorris...
null
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"]
null
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
null
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
null
297
96e6b606d1567cfa1d5c2c029dd53d5e1031df16
- Fixing demo-server dir name.
- Fixing demo-server dir 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...
null
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 ...
null
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 ...
null
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
null
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...
null
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...
null
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...
null
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
null
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...
null
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/...
null
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"]
null
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 ....
null
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
null
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...
null
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
null
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...
null
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
null
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
null
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...
null