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
FROM ubuntu:trusty-20160217 # Derived from https://github.com/heroku/stack-images/blob/master/Dockerfile RUN echo 'deb http://archive.ubuntu.com/ubuntu trusty main' >/etc/apt/sources.list &&\ echo 'deb http://archive.ubuntu.com/ubuntu trusty-security main' >>/etc/apt/sources.list &&\ echo 'deb http://archive....
benbjohnson/flynn
util/cedarish/Dockerfile
Dockerfile
bsd-3-clause
5,161
FROM functions/alpine:latest ENV fprocess "/bin/cat"
rgee0/faas
sample-functions/echo/Dockerfile
Dockerfile
mit
53
# # 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 us...
apache/kylin
docker/dockerfile/cluster/nodemanager/Dockerfile
Dockerfile
apache-2.0
1,032
# AUTOGENERATED FILE FROM balenalib/imx8m-var-dart-ubuntu:bionic-build # A few reasons for installing distribution-provided OpenJDK: # # 1. Oracle. Licensing prevents us from redistributing the official JDK. # # 2. Compiling OpenJDK also requires the JDK to be installed, and it gets # really hairy. # # For ...
nghiant2710/base-images
balena-base-images/openjdk/imx8m-var-dart/ubuntu/bionic/11-jdk/build/Dockerfile
Dockerfile
apache-2.0
3,108
# AUTOGENERATED FILE FROM balenalib/nitrogen8mm-fedora:33-run RUN dnf -y update \ && dnf clean all \ && dnf -y install \ gzip \ java-1.8.0-openjdk \ java-1.8.0-openjdk-devel \ tar \ && dnf clean all # set JAVA_HOME ENV JAVA_HOME /usr/lib/jvm/java-openjdk CMD ["echo","'No CMD command was set in Dockerfile!...
nghiant2710/base-images
balena-base-images/openjdk/nitrogen8mm/fedora/33/8-jdk/run/Dockerfile
Dockerfile
apache-2.0
1,317
FROM balenalib/aarch64-debian:stretch-build LABEL io.balena.device-type="imx8mm-var-dart" RUN apt-get update && apt-get install -y --no-install-recommends \ less \ kmod \ nano \ net-tools \ ifupdown \ iputils-ping \ i2c-tools \ usbutils \ && rm -rf /var/lib/apt/lists/* RUN [ ! -d /.balena/messages ] ...
nghiant2710/base-images
balena-base-images/device-base/imx8mm-var-dart/debian/stretch/build/Dockerfile
Dockerfile
apache-2.0
1,100
FROM golang:1.9-alpine RUN apk update && \ apk add \ build-base \ file \ git && \ rm -rf /var/cache/apk/* RUN mkdir /app RUN mkdir /out ADD . /app WORKDIR /app ENV PROGRAM go-utils RUN go get "github.com/davecgh/go-spew/spew" RUN go get "github.com/stretchr/testify/assert" RUN go get "github.com/bboortz/go...
bboortz/go-utils
vendor/github.com/bboortz/go-utils/Dockerfile
Dockerfile
bsd-3-clause
408
# Copyright 2019 The TensorFlow Authors. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applica...
tensorflow/tensorflow
tensorflow/tools/dockerfiles/dockerfiles/onednn/centos-8-devel-mpi-horovod-jupyter.Dockerfile
Dockerfile
apache-2.0
5,086
FROM gssapiproxy/ubuntu-gssapi-kerberos ENV CLIENT CLIENT_HAS_LIBS_IS_CONFIGURED RUN sed -i.bak1 -e "s/\[realms\]/\[realms\]\n${REALM} = {\n kdc = ${HOST}\n admin_server = ${HOST}\n default_domain = ${HOST}\n}/" /etc/krb5.conf && \ sed -i.bak2 -e "s/\[domain_realm\]/\[domain_realm\]\n.${HOST} = ${REALM}\n${HOST} ...
ashetty1/kedge
vendor/github.com/openshift/origin/test/extended/testdata/gssapi/ubuntu/kerberos_configured/Dockerfile
Dockerfile
apache-2.0
483
FROM node:8-alpine EXPOSE 3000 ARG NODE_ENV ENV NODE_ENV $NODE_ENV RUN mkdir /app WORKDIR /app ADD package.json yarn.lock /app/ RUN yarn --pure-lockfile ADD . /app CMD ["yarn", "docker:start"]
danielfsousa/express-rest-es2017-boilerplate
Dockerfile
Dockerfile
mit
197
FROM centos:centos7 MAINTAINER chomado <chomado@gmail.com> RUN yum update -y && \ yum install -y \ scl-utils \ http://ftp.tsukuba.wide.ad.jp/Linux/fedora/epel/7/x86_64/e/epel-release-7-5.noarch.rpm \ https://www.softwarecollections.org/en/scls/rhscl/rh-php56/epel-7-x86_64/download/rhscl-rh-...
chomado/chomado_bot
Dockerfile
Dockerfile
mit
947
FROM node:14-alpine WORKDIR /app COPY . /app RUN npm install && npm run build EXPOSE 10086 CMD ["npm", "start"]
lzghzr/bilive_client
Dockerfile
Dockerfile
mit
114
FROM ubuntu:16.04 RUN apt-get update && apt-get upgrade -y CMD /bin/bash
AllenBiehle/jumbo
generic-unix/docker/dockerfiles/allen-dockerfiles/base/Dockerfile
Dockerfile
mit
73
FROM node:argon-alpine ENV EXPOSE_PORT=80 # Create app directory RUN mkdir -p /usr/src/app WORKDIR /usr/src/app # Install app dependencies COPY package.json /usr/src/app/ RUN npm install # Bundle app source COPY . /usr/src/app EXPOSE 80 CMD [ "npm", "start" ]
jecho/url_shortener
gomicroservices_frontend/Dockerfile
Dockerfile
mit
265
FROM ubuntu:14.04 MAINTAINER Zsolt Demi <zsolt.demi@madtatu.com> ENV DEBIAN_FRONTEND noninteractive RUN apt-get install -y -q apache2 libapache2-mod-php5 ;\ a2enmod rewrite RUN apt-get clean ADD etc/apache2/sites-available/000-default.conf /etc/apache2/sites-available/000-default.conf ENV DEBIAN_FRONTEND dial...
madtatu/ubuntu-docker
Dockerfile
Dockerfile
mit
612
# # Dockerfile for pptp-arm # FROM easypi/alpine-arm:edge MAINTAINER EasyPi Software Foundation RUN apk add --no-cache \ --repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ \ pptpclient COPY docker-entrypoint.sh /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"]
dprasanthv/DockerFiles
pptp/arm/Dockerfile
Dockerfile
mit
297
FROM debian:jessie # add our user and group first to make sure their IDs get assigned consistently, regardless of whatever dependencies get added RUN groupadd -r mysql && useradd -r -g mysql mysql RUN mkdir /docker-entrypoint-initdb.d # FATAL ERROR: please install the following Perl modules before executing /usr/loc...
ntk1000/microservice-sandbox
datastore/mysql/Dockerfile
Dockerfile
mit
2,199
FROM centos MAINTAINER SAEKI Yoshiyasu <@laclefyoshi> WORKDIR /tmp RUN yum install -y java-1.7.0-openjdk-devel.x86_64 tar.x86_64 ENV JAVA_HOME /usr/lib/jvm/java RUN curl -O http://ftp.tsukuba.wide.ad.jp/software/apache/zookeeper/zookeeper-3.4.6/zookeeper-3.4.6.tar.gz RUN tar zxvf zookeeper-3.4.6.tar.gz RUN cp zookeepe...
laclefyoshi/druid_book
coreos-vagrant/codes/docker/zookeeper/Dockerfile
Dockerfile
mit
535
FROM ruby:2.4.3 RUN apt-get update -qq && \ apt-get install -y \ libxml2-dev \ libxslt1-dev \ mysql-client \ nodejs \ cmake && \ apt-get clean && \ gem install bundler ENV RAILS_ENV production ENV APP_HOME /opt/tvarkau-vilniu ENV MYSQL_HOST mysql ENV MYSQL_PORT 3306 WORKDIR $APP_HOME ADD Gemfile* $A...
vilnius/tvarkau-vilniu-ms
Dockerfile
Dockerfile
mit
456
# Start with Ubuntu base image FROM ubuntu:14.04 MAINTAINER Kai Arulkumaran <design@kaixhin.com> # Install build-essential, git, wget and other dependencies RUN apt-get update && apt-get install -y \ build-essential \ git \ graphviz \ liblapack-dev \ libopenblas-dev \ libopencv-dev \ python-dev \ pytho...
Kaixhin/dockerfiles
mxnet/Dockerfile
Dockerfile
mit
727
FROM python:3 MAINTAINER Watsh Rajneesh <watsh.rajneesh@sjsu.edu> WORKDIR /pycli ADD ./amigo.py /pycli ADD ./requirements.txt /pycli RUN pip install -r requirements.txt CMD ["python", "./amigo.py"]
sjsucohort6/amigo-chatbot
pycli/Dockerfile
Dockerfile
mit
200
FROM ubuntu MAINTAINER Nikolas Vourlakis <nvourlakis@gmail.gr> RUN apt-get -y update RUN apt-get -y install nodejs RUN apt-get -y install npm RUN apt-get -y install git RUN alias node="nodejs" ADD . /src WORKDIR /src RUN git clone https://github.com/kabitakis/github-analytics.git WORKDIR /src/github-analytics RUN npm...
sonaht/github-analytics
Dockerfile
Dockerfile
mit
574
ARG REPO=mcr.microsoft.com/dotnet/runtime FROM $REPO:3.1.23-buster-slim-arm64v8 # Install ASP.NET Core RUN aspnetcore_version=3.1.23 \ && curl -fSL --output aspnetcore.tar.gz https://dotnetcli.azureedge.net/dotnet/aspnetcore/Runtime/$aspnetcore_version/aspnetcore-runtime-$aspnetcore_version-linux-arm64.tar.gz \ ...
dotnet/dotnet-docker
src/aspnet/3.1/buster-slim/arm64v8/Dockerfile
Dockerfile
mit
667
FROM nodesource/fedora22-base MAINTAINER William Blankenship <wblankenship@nodesource.com> RUN curl -sL -o ns.rpm https://rpm.nodesource.com/pub_5.x/fc/22/x86_64/nodejs-5.1.1-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/5.1.1/Dockerfile
Dockerfile
mit
476
FROM python:latest MAINTAINER Juti Noppornpitak <jnopporn@shiroyuki.com> ENV revision 20170322.2212 ENV app_path /opt/app # Retrieve the list RUN apt-get update # Python 3 RUN apt-get install -y libtiff5-dev libjpeg-dev zlib1g-dev libfreetype6-dev liblcms2-dev libwebp-dev tcl8.6-dev tk8.6-dev # Clean up RUN apt-get...
shiroyuki/com.shiroyuki.www
Dockerfile
Dockerfile
mit
727
FROM alpine:latest MAINTAINER Philip O'Toole <philip.otoole@yahoo.com> ENV RQLITE_VERSION=6.8.2 RUN apk update && \ apk --no-cache add curl tar && \ curl -L https://github.com/rqlite/rqlite/releases/download/v${RQLITE_VERSION}/rqlite-v${RQLITE_VERSION}-linux-amd64-musl.tar.gz -o rqlite-v${RQLITE_VERSION}-linu...
rqlite/rqlite-docker
6.8.2/Dockerfile
Dockerfile
mit
849
FROM golang:1.4.1-onbuild WORKDIR /go/src/github.com/tirami/udadisi-engine ADD . /go/src/github.com/tirami/udadisi-engine/ # go get all of the dependencies # install the app RUN go install github.com/tirami/udadisi-engine EXPOSE 8080 CMD [] ENTRYPOINT ["/go/bin/udadisi-engine"]
tirami/udadisi-engine
Dockerfile
Dockerfile
cc0-1.0
284
# AUTOGENERATED FILE FROM balenalib/imx6ul-var-dart-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 # install python ...
nghiant2710/base-images
balena-base-images/python/imx6ul-var-dart/ubuntu/bionic/2.7.18/run/Dockerfile
Dockerfile
apache-2.0
4,448
# AUTOGENERATED FILE FROM balenalib/revpi-core-3-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 dep...
nghiant2710/base-images
balena-base-images/python/revpi-core-3/debian/buster/3.9.4/run/Dockerfile
Dockerfile
apache-2.0
4,095
# AUTOGENERATED FILE FROM balenalib/npe-x500-m3-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: public...
nghiant2710/base-images
balena-base-images/python/npe-x500-m3/debian/sid/3.5.10/build/Dockerfile
Dockerfile
apache-2.0
4,852
# AUTOGENERATED FILE FROM balenalib/iot-gate-imx8-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 "virtualen...
resin-io-library/base-images
balena-base-images/python/iot-gate-imx8/fedora/35/3.9.7/build/Dockerfile
Dockerfile
apache-2.0
2,440
# AUTOGENERATED FILE FROM balenalib/amd64-fedora:31-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 "virtualenv", sinc...
nghiant2710/base-images
balena-base-images/python/amd64/fedora/31/3.5.10/build/Dockerfile
Dockerfile
apache-2.0
2,448
# AUTOGENERATED FILE FROM balenalib/generic-armv7ahf-ubuntu:focal-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 ...
resin-io-library/base-images
balena-base-images/python/generic-armv7ahf/ubuntu/focal/3.10.0/run/Dockerfile
Dockerfile
apache-2.0
4,071
FROM python:3.8-buster LABEL maintainer="Sebastian Ramirez <tiangolo@gmail.com>" COPY install-nginx-debian.sh / RUN bash /install-nginx-debian.sh # Install requirements COPY requirements.txt /tmp/requirements.txt RUN pip install --no-cache-dir -r /tmp/requirements.txt EXPOSE 80 # Expose 443, in case of LTS / HTTP...
tiangolo/uwsgi-nginx-docker
docker-images/python3.8.dockerfile
Dockerfile
apache-2.0
2,184
FROM ubuntu:14.04.1 ENV VERSION 7.4.0-alpha1 ENV DISTRO tomcat ENV SERVER apache-tomcat-7.0.62 ENV LIB_DIR /camunda/lib/ ENV SERVER_CONFIG /camunda/conf/server.xml ENV NEXUS https://app.camunda.com/nexus/service/local/artifact/maven/redirect # install oracle java RUN echo "deb http://ppa.launchpad.net/webupd8team/jav...
nagyistoce/docker-camunda-bpm-platform
Dockerfile
Dockerfile
apache-2.0
1,311
# AUTOGENERATED FILE FROM balenalib/via-vab820-quad-debian:bookworm-build ENV NODE_VERSION 17.6.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" ||...
resin-io-library/base-images
balena-base-images/node/via-vab820-quad/debian/bookworm/17.6.0/build/Dockerfile
Dockerfile
apache-2.0
2,788
# AUTOGENERATED FILE FROM balenalib/jetson-nano-emmc-alpine:3.10-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 "Simon...
nghiant2710/base-images
balena-base-images/python/jetson-nano-emmc/alpine/3.10/3.7.9/build/Dockerfile
Dockerfile
apache-2.0
4,843
# AUTOGENERATED FILE FROM balenalib/jetson-nano-2gb-devkit-ubuntu:eoan-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 py...
nghiant2710/base-images
balena-base-images/python/jetson-nano-2gb-devkit/ubuntu/eoan/3.7.9/run/Dockerfile
Dockerfile
apache-2.0
4,077
# AUTOGENERATED FILE FROM balenalib/orange-pi-lite-ubuntu:focal-run RUN apt-get update \ && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ ca-certificates \ \ # .NET Core dependencies libc6 \ libgcc1 \ libgssapi-krb5-2 \ libicu66 ...
resin-io-library/base-images
balena-base-images/dotnet/orange-pi-lite/ubuntu/focal/3.1-sdk/run/Dockerfile
Dockerfile
apache-2.0
2,945
# AUTOGENERATED FILE FROM balenalib/jn30b-nano-alpine:3.11-build ENV GO_VERSION 1.14.13 # 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/jn30b-nano/alpine/3.11/1.14.13/build/Dockerfile
Dockerfile
apache-2.0
2,339
# This is an auto generated Dockerfile for ros:desktop # generated from docker_images_ros2/create_ros_image.Dockerfile.em FROM ros:galactic-ros-base-focal # install ros2 packages RUN apt-get update && apt-get install -y --no-install-recommends \ ros-galactic-desktop=0.9.3-2* \ && rm -rf /var/lib/apt/lists/*
ruffsl/docker_images
ros/galactic/ubuntu/focal/desktop/Dockerfile
Dockerfile
apache-2.0
319
# Copyright 2015 Google Inc. All Rights Reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or a...
googlearchive/gcloud-golang-todos
main/Dockerfile
Dockerfile
apache-2.0
989
# AUTOGENERATED FILE FROM balenalib/nanopi-neo-air-ubuntu:eoan-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 dep...
nghiant2710/base-images
balena-base-images/python/nanopi-neo-air/ubuntu/eoan/3.7.9/run/Dockerfile
Dockerfile
apache-2.0
4,069
# AUTOGENERATED FILE FROM balenalib/odroid-u3+-debian:buster-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: publ...
resin-io-library/base-images
balena-base-images/python/odroid-u3+/debian/buster/3.9.10/build/Dockerfile
Dockerfile
apache-2.0
4,854
# AUTOGENERATED FILE FROM balenalib/blackboard-tx2-debian:sid-build ENV NODE_VERSION 12.22.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/blackboard-tx2/debian/sid/12.22.1/build/Dockerfile
Dockerfile
apache-2.0
2,781
# AUTOGENERATED FILE FROM balenalib/up-board-debian:buster-run RUN apt-get update \ && apt-get install -y --no-install-recommends \ ca-certificates \ curl \ \ # .NET Core dependencies libc6 \ libgcc1 \ libgssapi-krb5-2 \ libicu63 \ libssl1.1 \ ...
nghiant2710/base-images
balena-base-images/dotnet/up-board/debian/buster/5.0-runtime/run/Dockerfile
Dockerfile
apache-2.0
2,954
FROM gcr.io/deeplearning-platform-release/base-cpu RUN pip install kfp==1.6.6 RUN pip install google-cloud-aiplatform==1.3.0 ENTRYPOINT ["/bin/bash"]
GoogleCloudPlatform/asl-ml-immersion
notebooks/kubeflow_pipelines/cicd/solutions/kfp-cli_vertex/Dockerfile
Dockerfile
apache-2.0
150
# Copyright 2021 Google LLC # # 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, ...
googlefonts/oss-fuzz
projects/libecc/Dockerfile
Dockerfile
apache-2.0
1,080
# AUTOGENERATED FILE FROM balenalib/genericx86-64-ext-ubuntu:disco-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 --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver....
nghiant2710/base-images
balena-base-images/node/genericx86-64-ext/ubuntu/disco/10.23.1/run/Dockerfile
Dockerfile
apache-2.0
2,926
# AUTOGENERATED FILE FROM balenalib/odroid-xu4-alpine:3.11-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 add...
nghiant2710/base-images
balena-base-images/python/odroid-xu4/alpine/3.11/3.8.6/run/Dockerfile
Dockerfile
apache-2.0
4,130
# AUTOGENERATED FILE FROM balenalib/raspberrypi3-64-alpine:3.13-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 ap...
nghiant2710/base-images
balena-base-images/python/raspberrypi3-64/alpine/3.13/3.9.4/run/Dockerfile
Dockerfile
apache-2.0
4,135
# AUTOGENERATED FILE FROM balenalib/vab820-quad-alpine:3.14-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 "Simon McVi...
resin-io-library/base-images
balena-base-images/python/vab820-quad/alpine/3.14/3.10.2/build/Dockerfile
Dockerfile
apache-2.0
4,837
# AUTOGENERATED FILE FROM balenalib/orangepi-plus2-debian:stretch-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/orangepi-plus2/debian/stretch/3.8.6/run/Dockerfile
Dockerfile
apache-2.0
4,099
# AUTOGENERATED FILE FROM balenalib/qemux86-64-alpine:3.13-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 add...
nghiant2710/base-images
balena-base-images/python/qemux86-64/alpine/3.13/2.7.18/run/Dockerfile
Dockerfile
apache-2.0
4,581
# AUTOGENERATED FILE FROM balenalib/coral-dev-fedora:33-run # 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 \ python-pip \ python-dbus \ && dnf clean all # install "virtualenv", sinc...
nghiant2710/base-images
balena-base-images/python/coral-dev/fedora/33/2.7.18/run/Dockerfile
Dockerfile
apache-2.0
2,428
# AUTOGENERATED FILE FROM balenalib/colibri-imx6dl-debian:bullseye-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...
resin-io-library/base-images
balena-base-images/python/colibri-imx6dl/debian/bullseye/3.7.12/build/Dockerfile
Dockerfile
apache-2.0
4,862
# AUTOGENERATED FILE FROM balenalib/imx8mm-var-dart-alpine:edge-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 "Simon ...
nghiant2710/base-images
balena-base-images/python/imx8mm-var-dart/alpine/edge/3.9.1/build/Dockerfile
Dockerfile
apache-2.0
4,842
# AUTOGENERATED FILE FROM balenalib/via-vab820-quad-ubuntu:eoan-run ENV NODE_VERSION 10.24.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...
nghiant2710/base-images
balena-base-images/node/via-vab820-quad/ubuntu/eoan/10.24.0/run/Dockerfile
Dockerfile
apache-2.0
2,919
# AUTOGENERATED FILE FROM balenalib/generic-aarch64-fedora:34-run # 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...
resin-io-library/base-images
balena-base-images/python/generic-aarch64/fedora/34/3.8.12/run/Dockerfile
Dockerfile
apache-2.0
2,438
# AUTOGENERATED FILE FROM balenalib/blackboard-tx2-debian:bullseye-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...
resin-io-library/base-images
balena-base-images/python/blackboard-tx2/debian/bullseye/3.9.10/build/Dockerfile
Dockerfile
apache-2.0
4,862
# AUTOGENERATED FILE FROM balenalib/photon-xavier-nx-alpine:edge-run ENV GO_VERSION 1.16 # 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/photon-xavier-nx/alpine/edge/1.16/run/Dockerfile
Dockerfile
apache-2.0
2,469
# AUTOGENERATED FILE FROM balenalib/nitrogen6x-fedora:30-run 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 --keyserver ha.pool...
nghiant2710/base-images
balena-base-images/node/nitrogen6x/fedora/30/14.15.4/run/Dockerfile
Dockerfile
apache-2.0
2,753
# AUTOGENERATED FILE FROM balenalib/var-som-mx6-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 depende...
resin-io-library/base-images
balena-base-images/python/var-som-mx6/debian/sid/3.6.15/run/Dockerfile
Dockerfile
apache-2.0
4,086
# AUTOGENERATED FILE FROM balenalib/aarch64-debian:buster-build ENV NODE_VERSION 12.20.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" || \ gpg ...
nghiant2710/base-images
balena-base-images/node/aarch64/debian/buster/12.20.1/build/Dockerfile
Dockerfile
apache-2.0
2,780
# AUTOGENERATED FILE FROM balenalib/artik710-ubuntu:bionic-build ENV NODE_VERSION 15.6.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/artik710/ubuntu/bionic/15.6.0/build/Dockerfile
Dockerfile
apache-2.0
2,755
# AUTOGENERATED FILE FROM balenalib/nanopi-neo-air-fedora:35-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_VERSIO...
resin-io-library/base-images
balena-base-images/golang/nanopi-neo-air/fedora/35/1.17.7/build/Dockerfile
Dockerfile
apache-2.0
2,026
# AUTOGENERATED FILE FROM balenalib/beaglebone-black-ubuntu:cosmic-build ENV GO_VERSION 1.15.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 "16da0e296dabb6c1199ccaa2de1a83e679ae2512263f6e05923319f4903beac1 go$GO_...
nghiant2710/base-images
balena-base-images/golang/beaglebone-black/ubuntu/cosmic/1.15.7/build/Dockerfile
Dockerfile
apache-2.0
2,034
# AUTOGENERATED FILE FROM balenalib/artik533s-ubuntu:eoan-build ENV GO_VERSION 1.15.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 "16da0e296dabb6c1199ccaa2de1a83e679ae2512263f6e05923319f4903beac1 go$GO_VERSION.l...
nghiant2710/base-images
balena-base-images/golang/artik533s/ubuntu/eoan/1.15.7/build/Dockerfile
Dockerfile
apache-2.0
2,023
# AUTOGENERATED FILE FROM balenalib/beaglebone-black-alpine:3.13-run ENV NODE_VERSION 14.16.0 ENV YARN_VERSION 1.22.4 # Install dependencies RUN apk add --no-cache libgcc libstdc++ libuv \ && apk add --no-cache libssl1.0 || apk add --no-cache libssl1.1 RUN buildDeps='curl' \ && set -x \ && for key in \ 6A010C516...
nghiant2710/base-images
balena-base-images/node/beaglebone-black/alpine/3.13/14.16.0/run/Dockerfile
Dockerfile
apache-2.0
3,031
# AUTOGENERATED FILE FROM balenalib/beaglebone-green-ubuntu:cosmic-build ENV NODE_VERSION 15.10.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 --keyse...
nghiant2710/base-images
balena-base-images/node/beaglebone-green/ubuntu/cosmic/15.10.0/build/Dockerfile
Dockerfile
apache-2.0
2,769
# AUTOGENERATED FILE FROM balenalib/generic-armv7ahf-debian:stretch-build ENV NODE_VERSION 14.18.3 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" |...
resin-io-library/base-images
balena-base-images/node/generic-armv7ahf/debian/stretch/14.18.3/build/Dockerfile
Dockerfile
apache-2.0
2,789
FROM arm32v7/ubuntu:xenial LABEL io.balena.architecture="armv7hf" LABEL io.balena.qemu.version="6.0.0+balena1-arm" COPY qemu-arm-static /usr/bin RUN apt-get update && apt-get install -y --no-install-recommends \ sudo \ ca-certificates \ findutils \ gnupg \ dirmngr \ inetutils-ping \ netbase \ curl \...
resin-io-library/base-images
balena-base-images/armv7hf/ubuntu/xenial/run/Dockerfile
Dockerfile
apache-2.0
2,871
# Copyright (c) 2015 The Pycroft Authors. See the AUTHORS file. # This file is part of the Pycroft project and licensed under the terms of # the Apache License, Version 2.0. See the LICENSE file for details. # syntax=docker/dockerfile:1.3 FROM agdsn/pycroft-base USER root WORKDIR / COPY etc/apt /etc/apt # Install De...
agdsn/pycroft
docker/dev.Dockerfile
Dockerfile
apache-2.0
793
FROM ubuntu:trusty EXPOSE 24007 EXPOSE 24007/udp EXPOSE 24008 EXPOSE 24008/udp EXPOSE 49152 EXPOSE 49153-59153 EXPOSE 2222 VOLUME ["/data/glusterfs"] ENTRYPOINT ["/glusterfs/start.sh"] RUN mkdir -p /var/run/sshd && chmod 755 /var/run/sshd RUN apt-get update -y RUN apt-get install -y openssh-server RUN apt-get in...
liubin/docker-images
glusterfs/Dockerfile
Dockerfile
apache-2.0
606
FROM balenalib/amd64-alpine:3.14-run LABEL io.balena.device-type="up-core" RUN apk add --update \ less \ nano \ net-tools \ ifupdown \ usbutils \ gnupg \ && rm -rf /var/cache/apk/* RUN [ ! -d /.balena/messages ] && mkdir -p /.balena/messages; echo $'Here are a few details about this Docker image (For mor...
resin-io-library/base-images
balena-base-images/device-base/up-core/alpine/3.14/run/Dockerfile
Dockerfile
apache-2.0
1,025
# AUTOGENERATED FILE FROM balenalib/jetson-tx2-nx-devkit-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 63C7...
resin-io-library/base-images
balena-base-images/python/jetson-tx2-nx-devkit/ubuntu/bionic/3.10.2/build/Dockerfile
Dockerfile
apache-2.0
4,840
FROM fedora:30 LABEL com.jfrog.artifactory.retention.maxCount="25" ################################################### # create data directories and volumes ################################################### WORKDIR / RUN mkdir /data ENV CURL_HOME /etc ################################################### # setup bu...
bmwcarit/joynr
docker/joynr-runtime-environment-base/Dockerfile
Dockerfile
apache-2.0
4,220
FROM gradle:5.4.1-jdk11 as gradle USER root WORKDIR /ratpack COPY build.gradle build.gradle COPY src src RUN gradle shadowJar FROM openjdk:11.0.3-jre-slim WORKDIR /ratpack COPY --from=gradle /ratpack/build/libs/ratpack-all.jar app.jar CMD ["java", "-server", "-XX:+UseNUMA", "-XX:+UseParallelGC", "-jar", "app.jar"]
Dith3r/FrameworkBenchmarks
frameworks/Java/ratpack/ratpack.dockerfile
Dockerfile
bsd-3-clause
317
FROM keensoft/base:centos7-openjdk8-tomcat7 LABEL maintainer "mikel.asla@keensoft.es" LABEL version "1.0" LABEL description "This is alfresco-docker-template version 201602-GA" RUN set -x \ && yum install -y \ unzip \ wget \ && yum clean all ENV ALF_DOWNLOAD_URL http://dl.alfresco.com/release/community/201602-b...
keensoft/alfresco-50d-docker-template
201602-GA/Dockerfile
Dockerfile
apache-2.0
732
# AUTOGENERATED FILE FROM balenalib/up-core-alpine:edge-run # Default to UTF-8 file.encoding ENV LANG C.UTF-8 # add a simple script that can auto-detect the appropriate JAVA_HOME value # based on whether the JDK or only the JRE is installed RUN { \ echo '#!/bin/sh'; \ echo 'set -e'; \ echo; \ echo 'dirname "$...
nghiant2710/base-images
balena-base-images/openjdk/up-core/alpine/edge/8-jdk/run/Dockerfile
Dockerfile
apache-2.0
1,767
# AUTOGENERATED FILE FROM balenalib/raspberry-pi-debian:bullseye-build # A few reasons for installing distribution-provided OpenJDK: # # 1. Oracle. Licensing prevents us from redistributing the official JDK. # # 2. Compiling OpenJDK also requires the JDK to be installed, and it gets # really hairy. # # For ...
nghiant2710/base-images
balena-base-images/openjdk/raspberry-pi/debian/bullseye/11-jdk/build/Dockerfile
Dockerfile
apache-2.0
3,850
FROM ubuntu:19.10 RUN apt update -yqq RUN apt install -yqq \ git pkg-config build-essential cmake zlib1g-dev \ libsqlite3-dev libmariadbclient-dev wget ADD ./ /lwan WORKDIR /lwan RUN mkdir mimalloc && \ wget https://github.com/microsoft/mimalloc/archive/acb03c54971c4b0a43a6d17ea55a9d5feb88972f.tar.gz -O - | ta...
stefanocasazza/FrameworkBenchmarks
frameworks/C/lwan/lwan.dockerfile
Dockerfile
bsd-3-clause
983
FROM ruby:2.3.0-onbuild RUN mkdir data EXPOSE 9292 ENTRYPOINT ["rackup", "--host", "0.0.0.0"]
sewichi/geminabox
Dockerfile
Dockerfile
mit
95
# # THIS FILE IS AUTOGENERATED; SEE "contrib/builder/rpm/amd64/generate.sh"! # FROM andrewh5u/fedora-docker-base-25_beta:1.1 RUN dnf install -y @development-tools fedora-packager RUN dnf install -y btrfs-progs-devel device-mapper-devel glibc-static libseccomp-devel libselinux-devel libtool-ltdl-devel pkgconfig selinu...
stevvooe/docker
contrib/builder/rpm/amd64/fedora-25/Dockerfile
Dockerfile
apache-2.0
651
# TODO
GoogleCloudPlatform/mlops-on-gcp
workshops/kfp-caip-sklearn/lab-03-kfp-cicd/exercises/kfp-cli/Dockerfile
Dockerfile
apache-2.0
8
FROM sumeetchhetri/ffead-cpp-base:6.0 ENV IROOT=/installs WORKDIR / CMD ./run_ffead.sh ffead-cpp-6.0-sql emb postgresql-raw-async memory
lneves/FrameworkBenchmarks
frameworks/C++/ffead-cpp/ffead-cpp-postgresql-raw-async.dockerfile
Dockerfile
bsd-3-clause
140
# Generated automatically by update.sh # Do no edit this file FROM bigtruedata/scala:2.12.3-alpine # Install build dependencies RUN apk add --no-cache --virtual=.dependencies tar wget Run wget -O- "https://github.com/sbt/sbt/releases/download/v0.13.16/sbt-0.13.16.tgz" \ | tar xzf - -C /usr/local --strip-compone...
bigtruedata/docker-sbt
0.13.16/alpine/2.12.3/Dockerfile
Dockerfile
mit
449
FROM ubuntu:trusty-20150814 #RUN apt-get update && apt-get install -y --no-install-recommends \
ben--/tesht
do/test-docker/Dockerfile
Dockerfile
mit
97
FROM nicolargo/glances:latest MAINTAINER @adrien-f <adrien.fillon@gmail.com> VOLUME /config EXPOSE 61208/tcp CMD python -m glances -w -C /config/glances.conf
adrien-f/unraid-docker-templates
Dockerfiles/glances/Dockerfile
Dockerfile
mit
160
FROM go:base RUN yum install -y git \ && git clone https://github.com/heisedebaise/wormhole.git \ && cd wormhole \ && chmod +x bin/*.sh \ && sh bin/install.sh WORKDIR /wormhole EXPOSE 2048 EXPOSE 8192 EXPOSE 8443 ENTRYPOINT [ "bin/run.sh" ]
heisedebaise/docker
wormhole:latest/Dockerfile
Dockerfile
mit
260
FROM ubuntu MAINTAINER SvenDowideit@docker.com # Add the PostgreSQL PGP key to verify their Debian packages. # It should be the same key as https://www.postgresql.org/media/keys/ACCC4CF8.asc RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8 # Add PostgreSQL's reposi...
arruda/wowa
.pgserver/Dockerfile
Dockerfile
mit
2,262
FROM ierceg/node-dev:6.9.5 ADD . /app
getlazy/lazy
source/tests/Dockerfile
Dockerfile
mit
38
FROM microsoft/aspnet:4.6.2 # disable DNS caching to account for services changing their IP address RUN reg add HKLM\SYSTEM\CurrentControlSet\Services\DNS\Parameters\MaxCacheTtl /v 0 ARG source WORKDIR /inetpub/wwwroot COPY ${source:-obj/Docker/publish} .
SteveLasker/LiftShiftModernize
Web/Dockerfile
Dockerfile
mit
256
############################################################ # Dockerfile to run an OrientDB (Graph) Container ############################################################ FROM openjdk:8-jdk-alpine MAINTAINER OrientDB LTD (info@orientdb.com) # Override the orientdb download location with e.g.: # docker build -t mi...
orientechnologies/orientdb-docker
2.2/x86_64/alpine/Dockerfile
Dockerfile
mit
1,581
FROM elixir:1.3.0 ARG BASIC_AUTH_USER ARG BASIC_AUTH_PASSWORD # Set up deploy user and working directory RUN adduser --disabled-password --gecos '' deploy RUN apt-get update && \ apt-get -y install sudo # install Node.js (>= 6.0.0) and NPM in order to satisfy brunch.io dependencies # See http://www.phoenixfra...
izakp/APR
Dockerfile
Dockerfile
mit
1,296
FROM nginx:latest MAINTAINER Rémy Greinhofer <remy.greinhofer@gmail.com # Copy custom configuration file. COPY nginx.conf /etc/nginx/nginx.conf
rgreinho/craigomatic
docker/nginx/Dockerfile
Dockerfile
mit
146
FROM python:3.6 MAINTAINER Thomas Darr <me@thomasd.se> (https://thomasd.se/) # Paths are relative to /usr/src/app. WORKDIR /usr/src/app # Copy requirements.txt and install dependencies. COPY ["requirements.txt", "."] RUN ["pip", "install", "--no-cache-dir", "-r", "requirements.txt"] # Run the import script. CMD ["py...
trdarr/apk2
import/Dockerfile
Dockerfile
apache-2.0
340
# AUTOGENERATED FILE FROM balenalib/colibri-imx6dl-ubuntu:eoan-build ENV GO_VERSION 1.15.6 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 "7f60787d9d94ed040e2d58f7715a4dc1cdb9f9160504aec810712a7e20446bb7 go$GO_VERS...
nghiant2710/base-images
balena-base-images/golang/colibri-imx6dl/ubuntu/eoan/1.15.6/build/Dockerfile
Dockerfile
apache-2.0
2,028
# The container includes: # # azukiapp/node: # * Node 0.12.0 # * NPM 2.1.11 # FROM azukiapp/web-based MAINTAINER Azuki <support@azukiapp.com> RUN set -ex \ && for key in \ 9554F04D7259F04124DE6B476D5A82AC7E37093B \ 94AE36675C464D64BAFA68DD7434390BDBE9B9C5 \ 0034A06D9D9B0064CE8ADF6BF1747F4AD2306D93 \ ...
azukiapp/docker-node
4/Dockerfile
Dockerfile
apache-2.0
1,069
# AUTOGENERATED FILE FROM balenalib/n510-tx2-alpine:3.11-run ENV GO_VERSION 1.15.8 # 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 ] && echo...
nghiant2710/base-images
balena-base-images/golang/n510-tx2/alpine/3.11/1.15.8/run/Dockerfile
Dockerfile
apache-2.0
2,465