code
stringlengths
2
1.05M
repo_name
stringlengths
5
101
path
stringlengths
4
991
language
stringclasses
3 values
license
stringclasses
5 values
size
int64
2
1.05M
############################################################ # Dockerfile to build Traffic Server container images # as Edges for Traffic Control 1.4 # Based on CentOS 6.6 ############################################################ # For cache, you may either use (RAM or disk) block devices or disk directories # To...
jheitz200/traffic_control
infrastructure/docker/Traffic_Server_Edge/Dockerfile
Dockerfile
apache-2.0
9,454
# VERSION: 0.1 # DESCRIPTION: Create gparted container with its dependencies # AUTHOR: Jessica Frazelle <jess@docker.com> # COMMENTS: # This file describes how to build a gparted container with all # dependencies installed. It uses native X11 unix socket. # Tested on Debian Jessie # USAGE: # ...
openshift/dockerexec
vendor/src/github.com/docker/docker/contrib/desktop-integration/gparted/Dockerfile
Dockerfile
apache-2.0
930
FROM postgres:9 COPY . /docker-entrypoint-initdb.d/ ENV POSTGRES_USER=schokotaler POSTGRES_DB=schokotaler POSTGRES_PASSWORD=root
ro-kue/SchokoTaler_backend
DB_Docker/Dockerfile
Dockerfile
mit
128
FROM mysql:5.7 MAINTAINER Montana Mendy <montana@getprowl.com> COPY ./mysqlconf/ /etc/mysql/ VOLUME /var/log/mysql/
Montana/watchtower
Dockerfile
Dockerfile
mit
116
# Telehash simulator FROM ubuntu RUN apt-get update RUN apt-get install -y python-software-properties python g++ make netcat-traditional RUN add-apt-repository ppa:chris-lea/node.js RUN apt-get update RUN apt-get install -y nodejs ADD . /telehash RUN cd /telehash; npm install telehash optimist hiredis redis socket.i...
dvanduzer/Baudrillard
simulycra/Dockerfile
Dockerfile
mit
332
FROM openjdk:8-jre-alpine MAINTAINER Domonkos Czinke <domonkos.czinke@gmail.com> EXPOSE 9324 ENV ELASTICMQ_VERSION 0.12.0 COPY custom.conf /elasticmq/custom.conf ADD https://s3-eu-west-1.amazonaws.com/softwaremill-public/elasticmq-server-${ELASTICMQ_VERSION}.jar /elasticmq/server.jar RUN apk update \ && apk upgr...
cu12/docker-elasticmq
Dockerfile
Dockerfile
mit
644
FROM node:4.7.2 RUN mkdir /app WORKDIR /app ADD . /app RUN npm install CMD ["./node_modules/.bin/forever", "server.js"]
dumconstantin/crawler
Dockerfile
Dockerfile
mit
123
FROM node AS builder LABEL version="0.1.0" WORKDIR /ui RUN git clone https://github.com/Dreamacro/clash-dashboard.git \ && cd clash-dashboard \ && npm i && npm run build \ && cp -R dist/* /ui \ && cd /ui && rm -rf clash-dashboard FROM dreamacro/clash COPY --from=builder /ui /ui
maguowei/Dockerfiles
clash/Dockerfile
Dockerfile
mit
298
FROM 720913919698.dkr.ecr.us-east-1.amazonaws.com/node:8.11.3 RUN apk add --no-cache \ autoconf \ automake \ g++ \ gcc \ git \ make \ nasm \ python \ zlib-dev ONBUILD ARG NPM_TOKEN ONBUILD ARG NODE_ENV=production ONBUILD ENV NODE_ENV=${NODE_ENV} ONBUILD ARG NPM_LOG_LEVEL=error ON...
thredup/docker-node
8.11.3-builder/Dockerfile
Dockerfile
mit
673
FROM zappi/kubectl:1.5.3-1 RUN addgroup -g 9999 visualizer RUN adduser -S -D -u 9999 -G visualizer visualizer ARG K8S_VISUALIZER_VERSION="fdfd7db7ce9a670411b4a3c0e2b65c8a77eb184d" ARG K8S_VISUALIZER_PKG="${K8S_VISUALIZER_VERSION}.zip" ARG K8S_VISUALIZER_SHA="0db4f80503e3c3cc2fbabe9e94f07ea7e96b9906547c3257f3987015841...
Intellection/docker-kubernetes-visualizer
Dockerfile
Dockerfile
mit
869
FROM node:current-alpine RUN apk update \ && apk add bash \ && rm -rf /var/cache/apk/* RUN npm install -g jsonlint CMD ["tail", "-f", "/dev/null"]
km45/ansible_for_ubuntu
dockerfiles/node/Dockerfile
Dockerfile
mit
158
# GENERATED FROM Dockerfile.template-curl FROM vicamo/debian:jessie-i386 RUN apt-get update \ && apt-get install -y --no-install-recommends \ ca-certificates \ curl \ netbase \ wget \ && rm -rf /var/lib/apt/lists/* RUN set -ex; \ if ! command -v gpg > /dev/null; then \ apt-get update; \ apt-get install...
vicamo/docker-buildpack-deps
jessie/i386/curl/Dockerfile
Dockerfile
mit
417
FROM php:7.1.5-apache RUN apt-get update && apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libmcrypt-dev libpng12-dev \ && docker-php-ext-install -j$(nproc) iconv mcrypt && docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ \ && docker-php-ext-install -j$(nproc) gd mys...
trendsoft/bedrockd
Dockerfile
Dockerfile
mit
655
FROM centos:latest # Install development tools RUN yum -y update \ && yum -y groupinstall 'Development Tools' # Create a non-root user RUN useradd -m -p password gambler # Change to non-root user USER gambler ENV HOME /home/gambler WORKDIR $HOME # Install and build CDataFile RUN git clone https://github.com/d...
dmaddalone/crap-sim-centos
Dockerfile
Dockerfile
mit
751
FROM nfqlt/debian-stretch EXPOSE 8080 CMD exec /entrypoint.sh ADD build /build RUN bash /build/setup_docker.sh && rm -Rf /build
nfq-technologies/docker-images
birt45/Dockerfile
Dockerfile
mit
131
FROM ubuntu:latest MAINTAINER Anton Belov anton4@bk.ru # Let the conatiner know that there is no tty ENV DEBIAN_FRONTEND noninteractive # Use source.list with all repositories and Yandex mirrors. ADD sources.list /etc/apt/sources.list RUN sed -i 's|://.*\..*\.com|://ru.archive.ubuntu.com|' /etc/apt/sources.list RUN e...
belovanton/docker-nginx-magento
Dockerfile
Dockerfile
mit
5,722
FROM golang:1.3 RUN go get github.com/smotes/speedtest ENTRYPOINT ["speedtest"]
ricardorsierra/dockerfiles
speedtest/Dockerfile
Dockerfile
mit
82
FROM centos:7.4.1708 MAINTAINER NETHINKS GmbH <support@nethinks.com> ARG build_locale=de_DE ARG build_timezone=Europe/Berlin # set locales RUN localedef -c -i ${build_locale} -f UTF-8 ${build_locale}.utf-8 \ && rm /etc/localtime \ && ln -s /usr/share/zoneinfo/${build_timezone} /etc/localtime ENV LANG ${build...
NETHINKS/opennms-docker-env
images/postgres/Dockerfile
Dockerfile
mit
985
# Build a dev tools image with Python, NodeJS, PhantomJS, and # various editors and utilities. # # This exposes an SSH service. FROM royseto/pgbuild ENV DEBIAN_FRONTEND noninteractive # Set locale to US. Override in derivative image if needed. RUN apt-get update && apt-get install -y language-pack-en ENV LANGUAGE e...
royseto/devbase
Dockerfile
Dockerfile
mit
3,408
# AUTOGENERATED FILE FROM balenalib/raspberrypi3-64-debian:buster-run # remove several traces of debian python RUN apt-get purge -y python.* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # install python ...
nghiant2710/base-images
balena-base-images/python/raspberrypi3-64/debian/buster/3.8.6/run/Dockerfile
Dockerfile
apache-2.0
4,098
FROM golang:alpine MAINTAINER "Priyanka Sood <priyanka.sood@hpe.com>" ENV TERRAFORM_VERSION=0.13.6 ENV USER root RUN mkdir -p /usr/local/terraform RUN apk update && \ apk add curl jq python3 bash ca-certificates git openssl unzip wget && \ cd /tmp && \ wget https://releases.hashicorp.com/terraform/${TERR...
HewlettPackard/terraform-provider-oneview
Dockerfile
Dockerfile
apache-2.0
861
# AUTOGENERATED FILE FROM balenalib/jetson-tx2-ubuntu:bionic-build ENV NODE_VERSION 12.21.0 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \ gpg --keyserver h...
nghiant2710/base-images
balena-base-images/node/jetson-tx2/ubuntu/bionic/12.21.0/build/Dockerfile
Dockerfile
apache-2.0
2,759
# AUTOGENERATED FILE FROM balenalib/solidrun-imx6-ubuntu:xenial-run ENV GO_VERSION 1.16 # gcc for cgo RUN apt-get update && apt-get install -y --no-install-recommends \ g++ \ gcc \ libc6-dev \ make \ pkg-config \ git \ && rm -rf /var/lib/apt/lists/* RUN set -x \ && fetchDeps=' \ curl \ ' \ && apt-g...
nghiant2710/base-images
balena-base-images/golang/solidrun-imx6/ubuntu/xenial/1.16/run/Dockerfile
Dockerfile
apache-2.0
2,353
# AUTOGENERATED FILE FROM balenalib/revpi-core-3-ubuntu:disco-build ENV NODE_VERSION 10.24.1 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \ gpg --keyserver ...
nghiant2710/base-images
balena-base-images/node/revpi-core-3/ubuntu/disco/10.24.1/build/Dockerfile
Dockerfile
apache-2.0
2,763
FROM wellsie/centos7-phantomjs MAINTAINER Jono Wells <_oj.io> ENV CASPERJS_VERSION 1.1.0-beta3 RUN cd /usr/local && \ git clone -b phantomjs-2 https://github.com/n1k0/casperjs.git && \ ln -s /usr/local/casperjs/bin/casperjs /usr/bin/casperjs VOLUME /mnt/test WORKDIR /mnt/test CMD [ "/usr/bin/casperjs" ]
ojio/docker-images
casperjs/Dockerfile
Dockerfile
apache-2.0
317
# AUTOGENERATED FILE FROM balenalib/edge-ubuntu:bionic-build # remove several traces of debian python RUN apt-get purge -y python.* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # key 63C7CC90: public key...
resin-io-library/base-images
balena-base-images/python/edge/ubuntu/bionic/3.9.10/build/Dockerfile
Dockerfile
apache-2.0
4,831
# 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 u...
renesugar/arrow
dev/tasks/linux-packages/apt/ubuntu-bionic/Dockerfile
Dockerfile
apache-2.0
1,960
# AUTOGENERATED FILE FROM balenalib/photon-tx2-nx-fedora:33-run ENV GO_VERSION 1.16.14 # gcc for cgo RUN dnf install -y \ gcc-c++ \ gcc \ git \ && dnf clean all RUN mkdir -p /usr/local/go \ && curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \ && echo "5e59056e36704acb25809...
resin-io-library/base-images
balena-base-images/golang/photon-tx2-nx/fedora/33/1.16.14/run/Dockerfile
Dockerfile
apache-2.0
2,076
FROM docker:17.06 RUN apk add --no-cache \ git \ openssh-client
skoblenick/docker
17.06/git/Dockerfile
Dockerfile
apache-2.0
69
# AUTOGENERATED FILE FROM balenalib/isg-503-debian:bookworm-run # remove several traces of debian python RUN apt-get purge -y python.* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # install python depend...
resin-io-library/base-images
balena-base-images/python/isg-503/debian/bookworm/3.10.2/run/Dockerfile
Dockerfile
apache-2.0
4,092
# AUTOGENERATED FILE FROM balenalib/generic-aarch64-debian:sid-run ENV NODE_VERSION 15.6.0 ENV YARN_VERSION 1.22.4 RUN buildDeps='curl libatomic1' \ && set -x \ && for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --batch --keyserver...
nghiant2710/base-images
balena-base-images/node/generic-aarch64/debian/sid/15.6.0/run/Dockerfile
Dockerfile
apache-2.0
2,935
FROM shuyun/oracle-java8:latest MAINTAINER William Durand <william.durand1@gmail.com> ENV DEBIAN_FRONTEND noninteractive RUN apt-get update RUN apt-get install -y supervisor curl # Elasticsearch RUN \ apt-key adv --keyserver pool.sks-keyservers.net --recv-keys 46095ACC8548582C1A2699A9D27D666CD88E42B4 && \ i...
yangtao309/docker-registry-items
docker-elk/Dockerfile
Dockerfile
apache-2.0
1,589
# AUTOGENERATED FILE FROM balenalib/orange-pi-lite-ubuntu:focal-build ENV NODE_VERSION 15.7.0 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \ gpg --keyserver...
nghiant2710/base-images
balena-base-images/node/orange-pi-lite/ubuntu/focal/15.7.0/build/Dockerfile
Dockerfile
apache-2.0
2,763
# AUTOGENERATED FILE FROM balenalib/cubox-i-ubuntu:cosmic-run ENV GO_VERSION 1.15.11 # gcc for cgo RUN apt-get update && apt-get install -y --no-install-recommends \ g++ \ gcc \ libc6-dev \ make \ pkg-config \ git \ && rm -rf /var/lib/apt/lists/* RUN set -x \ && fetchDeps=' \ curl \ ' \ && apt-get ...
nghiant2710/base-images
balena-base-images/golang/cubox-i/ubuntu/cosmic/1.15.11/run/Dockerfile
Dockerfile
apache-2.0
2,353
# AUTOGENERATED FILE FROM balenalib/raspberrypi400-64-alpine:3.11-build # remove several traces of python RUN apk del python* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # key 63C7CC90: public key "Simo...
nghiant2710/base-images
balena-base-images/python/raspberrypi400-64/alpine/3.11/3.9.4/build/Dockerfile
Dockerfile
apache-2.0
4,844
# AUTOGENERATED FILE FROM balenalib/up-squared-debian:buster-build ENV GO_VERSION 1.16.3 RUN mkdir -p /usr/local/go \ && curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-amd64.tar.gz" \ && echo "951a3c7c6ce4e56ad883f97d9db74d3d6d80d5fec77455c6ada6c1f7ac4776d2 go$GO_VERSION.linux-amd64.tar.gz" |...
nghiant2710/base-images
balena-base-images/golang/up-squared/debian/buster/1.16.3/build/Dockerfile
Dockerfile
apache-2.0
2,014
# AUTOGENERATED FILE FROM balenalib/nanopc-t4-debian:buster-build ENV GO_VERSION 1.15.6 RUN mkdir -p /usr/local/go \ && curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \ && echo "f87515b9744154ffe31182da9341d0a61eb0795551173d242c8cad209239e492 go$GO_VERSION.linux-arm64.tar.gz" | ...
nghiant2710/base-images
balena-base-images/golang/nanopc-t4/debian/buster/1.15.6/build/Dockerfile
Dockerfile
apache-2.0
1,998
# AUTOGENERATED FILE FROM balenalib/npe-x500-m3-debian:bullseye-run # remove several traces of debian python RUN apt-get purge -y python.* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # install python de...
nghiant2710/base-images
balena-base-images/python/npe-x500-m3/debian/bullseye/3.8.6/run/Dockerfile
Dockerfile
apache-2.0
4,098
# AUTOGENERATED FILE FROM balenalib/asus-tinker-edge-t-fedora:35-build # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 RUN dnf install -y \ python3-pip \ python3-dbus \ && dnf clean all # install "virt...
resin-io-library/base-images
balena-base-images/python/asus-tinker-edge-t/fedora/35/3.9.7/build/Dockerfile
Dockerfile
apache-2.0
2,445
# AUTOGENERATED FILE FROM balenalib/nanopc-t4-ubuntu:xenial-build # remove several traces of debian python RUN apt-get purge -y python.* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # key 63C7CC90: publi...
resin-io-library/base-images
balena-base-images/python/nanopc-t4/ubuntu/xenial/3.8.12/build/Dockerfile
Dockerfile
apache-2.0
4,829
# AUTOGENERATED FILE FROM balenalib/nanopc-t4-debian:bullseye-build ENV NODE_VERSION 10.24.1 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --batch --keyserver keyserver.pgp.com --recv-keys "$key" || \ ...
nghiant2710/base-images
balena-base-images/node/nanopc-t4/debian/bullseye/10.24.1/build/Dockerfile
Dockerfile
apache-2.0
2,786
# AUTOGENERATED FILE FROM balenalib/jetson-xavier-nx-devkit-emmc-ubuntu:impish-run ENV NODE_VERSION 14.18.3 ENV YARN_VERSION 1.22.4 RUN buildDeps='curl libatomic1' \ && set -x \ && for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserve...
resin-io-library/base-images
balena-base-images/node/jetson-xavier-nx-devkit-emmc/ubuntu/impish/14.18.3/run/Dockerfile
Dockerfile
apache-2.0
2,926
# AUTOGENERATED FILE FROM balenalib/edge-debian:sid-build ENV GO_VERSION 1.17.7 RUN mkdir -p /usr/local/go \ && curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-amd64.tar.gz" \ && echo "02b111284bedbfa35a7e5b74a06082d18632eff824fd144312f6063943d49259 go$GO_VERSION.linux-amd64.tar.gz" | sha256su...
resin-io-library/base-images
balena-base-images/golang/edge/debian/sid/1.17.7/build/Dockerfile
Dockerfile
apache-2.0
2,002
# AUTOGENERATED FILE FROM balenalib/nanopi-neo-air-fedora:33-build # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 RUN dnf install -y \ python3-pip \ python3-dbus \ && dnf clean all # install "virtuale...
resin-io-library/base-images
balena-base-images/python/nanopi-neo-air/fedora/33/3.8.12/build/Dockerfile
Dockerfile
apache-2.0
2,442
# AUTOGENERATED FILE FROM balenalib/photon-xavier-nx-alpine:3.13-build ENV GO_VERSION 1.16.14 # set up nsswitch.conf for Go's "netgo" implementation # - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275 # - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf RUN [ ! -e /etc/nsswitch.con...
resin-io-library/base-images
balena-base-images/golang/photon-xavier-nx/alpine/3.13/1.16.14/build/Dockerfile
Dockerfile
apache-2.0
2,345
# AUTOGENERATED FILE FROM balenalib/bananapi-m1-plus-fedora:35-build # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 RUN dnf install -y \ python3-pip \ python3-dbus \ && dnf clean all # install "virtua...
resin-io-library/base-images
balena-base-images/python/bananapi-m1-plus/fedora/35/3.6.15/build/Dockerfile
Dockerfile
apache-2.0
2,444
########################################## # Dockerfile to run Pegasus # Based on Debian ########################################### FROM debian:jessie MAINTAINER Austin Ouyang RUN apt-get update \ && apt-get install -y vim \ && apt-get install -y openssh-client \ && apt-get install -y python \ && apt...
InsightDataScience/pegasus
Dockerfile
Dockerfile
apache-2.0
723
# AUTOGENERATED FILE FROM balenalib/imx8mm-var-dart-fedora:34-build ENV NODE_VERSION 10.23.1 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \ gpg --keyserver ...
nghiant2710/base-images
balena-base-images/node/imx8mm-var-dart/fedora/34/10.23.1/build/Dockerfile
Dockerfile
apache-2.0
2,758
#******************************************************************************* # Copyright 2015 Hewlett Packard Enterprise Development Company, L.P. # # 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 Lic...
Verigreen/dockerfiles
verigreen/2.0.0/Dockerfile
Dockerfile
apache-2.0
2,997
# AUTOGENERATED FILE FROM balenalib/artik10-ubuntu:xenial-build ENV NODE_VERSION 12.21.0 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \ gpg --keyserver ha.p...
nghiant2710/base-images
balena-base-images/node/artik10/ubuntu/xenial/12.21.0/build/Dockerfile
Dockerfile
apache-2.0
2,760
# AUTOGENERATED FILE FROM balenalib/via-vab820-quad-debian:sid-build # remove several traces of debian python RUN apt-get purge -y python.* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # key 63C7CC90: pu...
nghiant2710/base-images
balena-base-images/python/via-vab820-quad/debian/sid/3.8.9/build/Dockerfile
Dockerfile
apache-2.0
4,854
# AUTOGENERATED FILE FROM balenalib/raspberry-pi2-fedora:30-build # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 RUN dnf install -y \ python3-pip \ python3-dbus \ && dnf clean all # install "virtualen...
nghiant2710/base-images
balena-base-images/python/raspberry-pi2/fedora/30/3.6.12/build/Dockerfile
Dockerfile
apache-2.0
2,441
# AUTOGENERATED FILE FROM balenalib/up-core-debian:bullseye-build ENV Logging__Console__FormatterName=Json RUN apt-get update \ && apt-get install -y --no-install-recommends \ ca-certificates \ curl \ \ # .NET Core dependencies libc6 \ libgcc1 \ libgssapi-krb5-2 \ ...
resin-io-library/base-images
balena-base-images/dotnet/up-core/debian/bullseye/6.0-aspnet/build/Dockerfile
Dockerfile
apache-2.0
3,185
# AUTOGENERATED FILE FROM balenalib/odyssey-x86-alpine:3.14-run # remove several traces of python RUN apk del python* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # install python dependencies RUN apk ad...
resin-io-library/base-images
balena-base-images/python/odyssey-x86/alpine/3.14/3.10.0/run/Dockerfile
Dockerfile
apache-2.0
4,136
# AUTOGENERATED FILE FROM balenalib/ccimx8x-sbc-pro-ubuntu:cosmic-run # remove several traces of debian python RUN apt-get purge -y python.* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # install python ...
nghiant2710/base-images
balena-base-images/python/ccimx8x-sbc-pro/ubuntu/cosmic/3.8.6/run/Dockerfile
Dockerfile
apache-2.0
4,074
# AUTOGENERATED FILE FROM balenalib/jetson-xavier-nx-devkit-ubuntu:disco-build ENV NODE_VERSION 12.20.1 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \ gpg -...
nghiant2710/base-images
balena-base-images/node/jetson-xavier-nx-devkit/ubuntu/disco/12.20.1/build/Dockerfile
Dockerfile
apache-2.0
2,770
# AUTOGENERATED FILE FROM balenalib/raspberrypi400-64-alpine:3.13-run ENV GO_VERSION 1.15.6 # set up nsswitch.conf for Go's "netgo" implementation # - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275 # - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf RUN [ ! -e /etc/nsswitch.conf ...
nghiant2710/base-images
balena-base-images/golang/raspberrypi400-64/alpine/3.13/1.15.6/run/Dockerfile
Dockerfile
apache-2.0
2,474
FROM alpine ARG TARGETPLATFORM ARG BUILDPLATFORM RUN echo "I am running on $BUILDPLATFORM, building for $TARGETPLATFORM"
GoogleCloudPlatform/solutions-build-multi-architecture-images-tutorial
terraform/cloud-build/Dockerfile
Dockerfile
apache-2.0
121
# AUTOGENERATED FILE FROM balenalib/blackboard-tx2-fedora:35-run ENV NODE_VERSION 14.18.3 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \ gpg --keyserver key...
resin-io-library/base-images
balena-base-images/node/blackboard-tx2/fedora/35/14.18.3/run/Dockerfile
Dockerfile
apache-2.0
2,747
# AUTOGENERATED FILE FROM balenalib/beagleboard-xm-debian:stretch-build ENV GO_VERSION 1.17.7 RUN mkdir -p /usr/local/go \ && curl -SLO "http://resin-packages.s3.amazonaws.com/golang/v$GO_VERSION/go$GO_VERSION.linux-armv7hf.tar.gz" \ && echo "e4f33e7e78f96024d30ff6bf8d2b86329fc04df1b411a8bd30a82dbe60f408ba go$GO_V...
resin-io-library/base-images
balena-base-images/golang/beagleboard-xm/debian/stretch/1.17.7/build/Dockerfile
Dockerfile
apache-2.0
2,034
# AUTOGENERATED FILE FROM balenalib/imx8mm-var-dart-ubuntu:focal-build RUN apt-get update \ && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ ca-certificates \ \ # .NET Core dependencies libc6 \ libgcc1 \ libgssapi-krb5-2 \ libicu...
resin-io-library/base-images
balena-base-images/dotnet/imx8mm-var-dart/ubuntu/focal/3.1-runtime/build/Dockerfile
Dockerfile
apache-2.0
2,567
FROM micro/micro WORKDIR / # This is just a hack to download most of the dependencies micro and go micro has # We don't care it's not the latest version, just an approximation RUN mkdir go && cd go && git clone https://github.com/micro/micro && \ cd micro && go install COPY entrypoint.sh / RUN chmod 755 entrypoi...
micro/micro
service/runtime/cells/micro/Dockerfile
Dockerfile
apache-2.0
364
# AUTOGENERATED FILE FROM balenalib/floyd-nano-ubuntu:focal-run ENV NODE_VERSION 15.14.0 ENV YARN_VERSION 1.22.4 RUN buildDeps='curl libatomic1' \ && set -x \ && for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.com...
nghiant2710/base-images
balena-base-images/node/floyd-nano/ubuntu/focal/15.14.0/run/Dockerfile
Dockerfile
apache-2.0
2,912
FROM resnullius/alpine:3.5 MAINTAINER Jose-Luis Rivas <me@ghostbar.co> VOLUME /opt/repo VOLUME /opt/keys VOLUME /opt/conf VOLUME /opt/src VOLUME /opt/extrakeys WORKDIR /home/builder/src RUN apk-install alpine-sdk coreutils bash && \ rm /etc/abuild.conf && \ mkdir -p /var/cache/distfiles && \ chmod a+w /var/cac...
resnullius/docker-alpine-devel
versions/x86_64/3.5/Dockerfile
Dockerfile
mit
586
FROM docker.elastic.co/elasticsearch/elasticsearch:6.2.4 ENV xpack.security.enabled=false ENV ES_JAVA_OPTS="-Xms512m -Xmx512m" RUN bin/elasticsearch-plugin install ingest-attachment EXPOSE 9200 9300
kpmeen/symbiotic
docker/symbiotic/elasticsearch/Dockerfile
Dockerfile
apache-2.0
202
# Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under th...
3013216027/thrift
build/docker/ubuntu-trusty/Dockerfile
Dockerfile
apache-2.0
6,692
FROM ubuntu:14.04 RUN locale-gen en_US.UTF-8 RUN dpkg-reconfigure locales ENV LANG en_US.UTF-8 ENV LC_ALL en_US.UTF-8 RUN apt-get update; apt-get -y upgrade; apt-get clean RUN apt-get install -y git curl wget tar make; apt-get clean RUN apt-get install -y sqlite3 libsqlite3-dev; apt-get clean RUN apt-get install -...
wcamarao/bosh-vsphere-cpi-release
ci/docker/bosh.vsphere-cpi-release/Dockerfile
Dockerfile
apache-2.0
1,172
FROM ubuntu:14.04 ENV RUBY_MAJOR="2.2" \ RUBY_VERSION="2.2.2" \ DB_PACKAGES="libsqlite3-dev" \ RUBY_PACKAGES="ruby2.2 ruby2.2-dev" RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \ build-essential \ curl \ libffi-dev \ libgdbm-dev \ libncurses-dev \ ...
CenturyLinkLabs/ubuntu-rails
Dockerfile
Dockerfile
apache-2.0
1,370
# To use this container you may need to do the following: # https://askubuntu.com/a/1369504 # sudo add-apt-repository ppa:jacob/virtualisation #(for Ubuntu 20.04) # sudo apt-get update && sudo apt-get install qemu qemu-user qemu-user-static # https://stackoverflow.com/a/60667468 # docker run --rm --privileged multiarc...
fluent/fluent-bit
dockerfiles/Dockerfile
Dockerfile
apache-2.0
6,475
FROM golang:1.7.3 # libseccomp in jessie is not _quite_ new enough -- need backports version RUN echo 'deb http://httpredir.debian.org/debian jessie-backports main' > /etc/apt/sources.list.d/backports.list RUN apt-get update && apt-get install -y \ build-essential \ curl \ gawk \ iptables \ pkg-co...
Crazykev/cri-o
Dockerfile
Dockerfile
apache-2.0
1,602
FROM elixir:1.9.1 ADD ./ /phoenix WORKDIR /phoenix ENV MIX_ENV=prod RUN mix local.hex --force RUN mix local.rebar --force RUN mix deps.get --force --only prod RUN mix compile --force CMD ["elixir", "--erl", "+K true +sbwt very_long +swt very_low", "-S", "mix", "phx.server"]
zloster/FrameworkBenchmarks
frameworks/Elixir/phoenix/phoenix.dockerfile
Dockerfile
bsd-3-clause
279
FROM golang:1.5 EXPOSE 5001 ADD auth_server / ENTRYPOINT ["/auth_server"]
ethernetdan/docker_auth
auth_server/Dockerfile
Dockerfile
apache-2.0
74
FROM starefossen/github-pages:onbuild ONBUILD RUN git clone https://www.github.com/docker/docker.github.io docs ONBUILD WORKDIR docs ONBUILD RUN git checkout vnext-machine ONBUILD COPY . /usr/src/app CMD jekyll serve -d /_site -H 0.0.0.0 -P 4000
gdevillele/docker.github.io
_data/docsarchive/vnext-machine/Dockerfile
Dockerfile
apache-2.0
252
# Copyright (c) 2016-2022 Martin Donath <martin.donath@squidfunk.com> # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, c...
squidfunk/mkdocs-material
Dockerfile
Dockerfile
mit
2,504
FROM xavierdutreilh/python-gettext:3.7.0 ADD . /app WORKDIR /app RUN pip install -r requirements/production.txt RUN python manage.py collectstatic --noinput RUN python manage.py compilemessages
xavierdutreilh/robots.midgar.fr
services/backbone/Dockerfile
Dockerfile
mit
197
FROM ruby:2.2 COPY Gemfile /Gemfile RUN bundle install RUN useradd -u 1000 -M docker \ && mkdir -p /messages/sns \ && chown docker /messages/sns USER docker VOLUME /messages/sns EXPOSE 9292 # Note: We use thin, because webrick attempts to do a reverse dns lookup on every request # which slows the service down b...
feathj/docker-fake-sns
Dockerfile
Dockerfile
mit
532
FROM nodesource/fedora22-base MAINTAINER William Blankenship <wblankenship@nodesource.com> RUN curl -sL -o ns.rpm https://rpm.nodesource.com/pub_0.12/fc/22/x86_64/nodejs-0.12.14-1nodesource.fc22.x86_64.rpm \ && rpm -i --nosignature --force ns.rpm \ && rm -f ns.rpm RUN npm install -g pangyp\ && ln -s $(which pangyp...
nodesource/docker-node
fedora/22/node/0.12.14/Dockerfile
Dockerfile
mit
479
FROM php:5.6-apache RUN \ apt-get update && \ DEBIAN_FRONTEND=noninteractive apt-get install -y \ git \ ant \ php5-curl \ amavisd-new \ libcurl4-gnutls-dev \ libfreetype6-dev \ libjpeg62-turbo-dev \ libmcrypt-dev \ libpng12-dev \ libbz2-dev \ php-pear \ curl \ && rm -r /var/lib/apt/lists/...
Code4HR/hercules-dockerfile-base
Dockerfile
Dockerfile
mit
750
FROM minidocks/base:3.8 MAINTAINER Martin Hasoň <martin.hason@gmail.com> ENV HUGO_VERSION=0.53 RUN wget -O /tmp/hugo.tar.gz https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_${HUGO_VERSION}_Linux-64bit.tar.gz \ && tar xvzf /tmp/hugo.tar.gz -C /tmp && mv /tmp/hugo /usr/bin/hugo && clean COP...
microcontainers/microcontainers
hugo/0.53/Dockerfile
Dockerfile
mit
348
# Modified from: https://github.com/giovtorres/docker-centos7-slurm/blob/master/17.02.3/Dockerfile FROM centos:7 ENV SLURM_VERSION 17.02.3 ENV SLURM_DOWNLOAD_MD5 63f0d7d14c9ff1fbdecb46ee96712d83 ENV SLURM_DOWNLOAD_URL https://www.schedmd.com/downloads/archive/slurm-"$SLURM_VERSION".tar.bz2 RUN yum makecache fast \ ...
buchanae/funnel
tests/slurm/resources/Dockerfile
Dockerfile
mit
2,272
FROM node:6.10.2-slim RUN mkdir -p /usr/src/app WORKDIR /usr/src/app #COPY package.json /usr/src/app/ #RUN yarn COPY . /usr/src/app/ EXPOSE 3000 CMD [ "npm", "start" ]
classis/buzzerbutler
Dockerfile
Dockerfile
mit
168
FROM nodesource/vivid-base MAINTAINER William Blankenship <wblankenship@nodesource.com> RUN curl https://deb.nodesource.com/node/pool/main/n/nodejs/nodejs_0.10.41-1nodesource1~vivid1_amd64.deb > node.deb \ && dpkg -i node.deb \ && rm node.deb RUN npm install -g pangyp\ && ln -s $(which pangyp) $(dirname $(which pa...
nodesource/docker-node
ubuntu/vivid/node/0.10.41/Dockerfile
Dockerfile
mit
549
from robsyme/augustus:3.0.3 MAINTAINER Rob Syme <rob.syme@gmail.com> RUN apt-get update && apt-get install -yqq python ncbi-blast+ hmmer emboss #Busco RUN mkdir /opt/busco WORKDIR /opt/busco ADD http://busco.ezlab.org/files/BUSCO_v1.0.tar.gz /opt/busco/ RUN tar -xzvf BUSCO_v1.0.tar.gz \ && rm *.tar.gz \ && s...
robsyme/nextflow-annotate
Dockerfiles/busco/Dockerfile
Dockerfile
mit
979
FROM armel/busybox COPY tiller / CMD ["/tiller"]
luxas/kubernetes-on-arm
addons/images/tiller/Dockerfile
Dockerfile
mit
49
FROM tianon/centos:6.5 MAINTAINER Jasmine Hegman <jasmine@webpt.com> # Install dependencies RUN yum -y update RUN yum -y install bridge-utils wget dnsmasq build-essential tar # Install appropriate JDK RUN yum -y install java-1.7.0-openjdk.x86_64 # Install Druid WORKDIR /root/druid/ RUN curl http://static.druid....
r4j4h/docker-base--druid
Dockerfile
Dockerfile
mit
538
ARG REPO=mcr.microsoft.com/dotnet/runtime-deps FROM $REPO:3.1-focal-arm32v7 RUN apt-get update \ && apt-get install -y --no-install-recommends \ curl \ && rm -rf /var/lib/apt/lists/* # Install .NET Core RUN dotnet_version=3.1.10 \ && curl -SL --output dotnet.tar.gz https://dotnetcli.azureedge.net/...
MichaelSimons/dotnet-docker
src/runtime/3.1/focal/arm32v7/Dockerfile
Dockerfile
mit
787
FROM alpine:3 LABEL maintainer="joelnbarnham@gmail.com" RUN \ apk add --update \ python3 \ python3-dev \ py-pip \ build-base \ && \ pip install dumb-init && \ apk del \ python3 \ python3-dev \ py-pip \ build-base \ && \ rm -rf /var/cache/apk/* && \ : ENTRYPOINT ["dumb-init"] CMD ["/bin/sh"]
joelnb/dumb-init-docker
alpine-3/Dockerfile
Dockerfile
mit
317
FROM debian:wheezy RUN apt-get update -y && apt-get install --no-install-recommends -y -q \ curl \ zip \ build-essential \ ca-certificates \ git mercurial bzr \ && rm -rf /var/lib...
tcnksm/dockerfile-gox
1.5.1/Dockerfile
Dockerfile
mit
714
FROM gliderlabs/alpine:3.1 RUN apk update RUN apk add bash ADD loop.sh /loop.sh CMD [ "/loop.sh" ]
conjurinc/sdf-gen
examples/listy/webapp/identity/Dockerfile
Dockerfile
mit
100
FROM golang # Copy the local package files to the container's workspace. ADD . /go/src/github.com/ory/workshop-dbg # Build the outyet command inside the container. # (You may fetch or manage dependencies here, # either manually or with a tool like "godep".) RUN go install github.com/ory/workshop-dbg # Run the outyet...
ory-am/workshop-dbg
Dockerfile
Dockerfile
mit
411
FROM jboss/keycloak:1.9.0.Final ENV JAVA_OPTS "-Djava.security.egd=file:///dev/urandom" ENV REALM_DIR $JBOSS_HOME/realms ENV KC_USER_NAME "admin" ENV KC_USER_PASSWORD "admin123!" # Add wrapping docker entrypoint ADD scripts/docker-entrypoint.sh ${JBOSS_HOME}/bin/docker-entrypoint.sh # Add realm definition file ADD r...
wermington/apiman-test
tools/docker/keycloak/Dockerfile
Dockerfile
apache-2.0
404
# AUTOGENERATED FILE FROM balenalib/nitrogen6xq2g-ubuntu:bionic-build ENV NODE_VERSION 14.15.4 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \ gpg --keyserve...
nghiant2710/base-images
balena-base-images/node/nitrogen6xq2g/ubuntu/bionic/14.15.4/build/Dockerfile
Dockerfile
apache-2.0
2,766
# AUTOGENERATED FILE FROM balenalib/spacely-tx2-debian:jessie-build ENV NODE_VERSION 10.24.0 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --batch --keyserver keyserver.pgp.com --recv-keys "$key" || \ ...
nghiant2710/base-images
balena-base-images/node/spacely-tx2/debian/jessie/10.24.0/build/Dockerfile
Dockerfile
apache-2.0
2,784
# AUTOGENERATED FILE FROM balenalib/armv7hf-debian:sid-run # remove several traces of debian python RUN apt-get purge -y python.* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # install python dependencie...
nghiant2710/base-images
balena-base-images/python/armv7hf/debian/sid/3.5.10/run/Dockerfile
Dockerfile
apache-2.0
4,086
# AUTOGENERATED FILE FROM balenalib/imx7-var-som-debian:jessie-run ENV NODE_VERSION 10.23.1 ENV YARN_VERSION 1.22.4 RUN buildDeps='curl libatomic1' \ && set -x \ && for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --batch --keyserve...
nghiant2710/base-images
balena-base-images/node/imx7-var-som/debian/jessie/10.23.1/run/Dockerfile
Dockerfile
apache-2.0
2,944
# AUTOGENERATED FILE FROM balenalib/orangepi-plus2-fedora:30-build ENV NODE_VERSION 12.21.0 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \ gpg --keyserver h...
nghiant2710/base-images
balena-base-images/node/orangepi-plus2/fedora/30/12.21.0/build/Dockerfile
Dockerfile
apache-2.0
2,761
# AUTOGENERATED FILE FROM balenalib/jetson-xavier-nx-devkit-emmc-ubuntu:bionic-run # remove several traces of debian python RUN apt-get purge -y python.* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # in...
resin-io-library/base-images
balena-base-images/python/jetson-xavier-nx-devkit-emmc/ubuntu/bionic/3.8.12/run/Dockerfile
Dockerfile
apache-2.0
4,085
# AUTOGENERATED FILE FROM balenalib/beaglebone-green-gateway-debian:sid-build ENV GO_VERSION 1.16.14 RUN mkdir -p /usr/local/go \ && curl -SLO "http://resin-packages.s3.amazonaws.com/golang/v$GO_VERSION/go$GO_VERSION.linux-armv7hf.tar.gz" \ && echo "8a8e06b02a5e7339675cbbad9eb46a0db2cab7da21306de7c3a60d37a6a96022 ...
resin-io-library/base-images
balena-base-images/golang/beaglebone-green-gateway/debian/sid/1.16.14/build/Dockerfile
Dockerfile
apache-2.0
2,038
# AUTOGENERATED FILE FROM balenalib/colibri-imx6dl-debian:buster-build ENV Logging__Console__FormatterName=Json RUN apt-get update \ && apt-get install -y --no-install-recommends \ ca-certificates \ curl \ \ # .NET Core dependencies libc6 \ libgcc1 \ libgssapi-krb5-...
resin-io-library/base-images
balena-base-images/dotnet/colibri-imx6dl/debian/buster/6.0-aspnet/build/Dockerfile
Dockerfile
apache-2.0
3,173
# Copyright 2017 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,...
FeliciaLim/oss-fuzz
projects/llvm_libcxx/Dockerfile
Dockerfile
apache-2.0
783