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 mysql/mysql-server:5.7
MAINTAINER Debezium Community
#
# Add our scripts to the Docker entry point initialization directory
#
COPY init/* /docker-entrypoint-initdb.d/
#
# Overwrite the MySQL configuration file with ours
#
COPY mysql.cnf /etc/my.cnf
ENTRYPOINT ["/entrypoint.sh"]
CMD ["mysqld"]
| rhauch/debezium | debezium-connector-mysql/src/test/docker/Dockerfile | Dockerfile | apache-2.0 | 303 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-nx-devkit-ubuntu:focal-build
ENV GO_VERSION 1.16.14
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \
&& echo "5e59056e36704acb25809bcdb27191f27593cb7aba4d716b523008135a1e764a go$GO_VERSION.linux-ar... | resin-io-library/base-images | balena-base-images/golang/jetson-xavier-nx-devkit/ubuntu/focal/1.16.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,012 |
# AUTOGENERATED FILE
FROM balenalib/astro-tx2-alpine:3.12-run
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 ] && ec... | nghiant2710/base-images | balena-base-images/golang/astro-tx2/alpine/3.12/1.14.13/run/Dockerfile | Dockerfile | apache-2.0 | 2,468 |
# AUTOGENERATED FILE
FROM balenalib/coral-dev-alpine:edge-build
ENV NODE_VERSION 14.18.3
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 for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \... | resin-io-library/base-images | balena-base-images/node/coral-dev/alpine/edge/14.18.3/build/Dockerfile | Dockerfile | apache-2.0 | 2,950 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi3-64-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 63C7CC9... | resin-io-library/base-images | balena-base-images/python/raspberrypi3-64/debian/bullseye/3.7.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,863 |
FROM balenalib/armv7hf-ubuntu:bionic-run
LABEL io.balena.device-type="raspberrypi3"
RUN apt-get update && apt-get install -y --no-install-recommends \
software-properties-common \
&& add-apt-repository ppa:ubuntu-raspi2/ppa -y \
&& apt-get purge -y --auto-remove software-properties-common \
&& rm -rf /var/lib/apt... | nghiant2710/base-images | balena-base-images/device-base/raspberrypi3/ubuntu/bionic/run/Dockerfile | Dockerfile | apache-2.0 | 1,359 |
# AUTOGENERATED FILE
FROM balenalib/npe-x500-m3-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: pub... | nghiant2710/base-images | balena-base-images/python/npe-x500-m3/ubuntu/bionic/3.6.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,834 |
FROM openjdk:11 AS builder
COPY . /usr/src/openas2
WORKDIR /usr/src/openas2
# To test Locally builder environment:
# docker run --rm -it -v $(pwd):/usr/src/openas2 openjdk:11 bash
RUN rm -f Server/dist/*
RUN rm -f Remote/dist/*
RUN rm -f Bundle/dist/*
RUN ./mvnw clean package
RUN mkdir ./Runtime && unzip Server/dist/Op... | OpenAS2/OpenAs2App | Dockerfile | Dockerfile | bsd-2-clause | 1,097 |
FROM jvermillard/luadtls
MAINTAINER jvermillard@gmail.com
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update
RUN apt-get install -y git openjdk-7-jdk
RUN apt-get install -y wget
# maven 3.2.2
RUN cd /tmp && wget http://apache.org/dist/maven/maven-3/3.2.2/binaries/apache-maven-3.2.2-bin.tar.gz
RUN cd /opt && tar x... | jvermillard/scandium-test | test-container/Dockerfile | Dockerfile | bsd-3-clause | 508 |
# To build this docker image:
# sudo docker build .
#
# To run the image:
# sudo nvidia-docker run -it <image_id>
# Note: a more recent nvidia/cuda image means users must
# have a more recent CUDA install on their systems
#FROM nvidia/cuda:9.1-cudnn7-devel-ubuntu16.04
FROM nvidia/cuda:9.0-cudnn7-devel-ubuntu16.04
# I... | mila-iqia/babyai | Dockerfile | Dockerfile | bsd-3-clause | 656 |
# AUTOGENERATED FILE
FROM balenalib/photon-xavier-nx-debian:buster-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.
#
# Fo... | nghiant2710/base-images | balena-base-images/openjdk/photon-xavier-nx/debian/buster/11-jdk/build/Dockerfile | Dockerfile | apache-2.0 | 3,850 |
# AUTOGENERATED FILE
FROM balenalib/coral-dev-fedora:33-build
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/coral-dev/fedora/33/8-jdk/build/Dockerfile | Dockerfile | apache-2.0 | 1,319 |
# AUTOGENERATED FILE
FROM balenalib/raspberry-pi2-debian:stretch-run
# 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 so... | nghiant2710/base-images | balena-base-images/openjdk/raspberry-pi2/debian/stretch/11-jre/run/Dockerfile | Dockerfile | apache-2.0 | 3,854 |
# AUTOGENERATED FILE
FROM balenalib/armv7hf-alpine:3.12-build
# 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/armv7hf/alpine/3.12/8-jre/build/Dockerfile | Dockerfile | apache-2.0 | 1,760 |
FROM wouterd/java8
ADD discuss-jar-with-dependencies.jar /discuss.jar
ENTRYPOINT ["java", "-jar", "-Dmongo.host=mongo", "/discuss.jar"]
EXPOSE 8080
| caspark/docker-maven-plugin | src/it/sample-api-mongo-it/src/main/docker/Dockerfile | Dockerfile | apache-2.0 | 151 |
# AUTOGENERATED FILE
FROM balenalib/raspberry-pi-alpine:3.13-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 'dirna... | nghiant2710/base-images | balena-base-images/openjdk/raspberry-pi/alpine/3.13/8-jre/run/Dockerfile | Dockerfile | apache-2.0 | 1,761 |
# AUTOGENERATED FILE
FROM balenalib/via-vab820-quad-alpine:3.12-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 'di... | nghiant2710/base-images | balena-base-images/openjdk/via-vab820-quad/alpine/3.12/7-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 1,760 |
FROM keensoft/base:centos7-openjdk8-tomcat7
LABEL maintainer "mikel.asla@keensoft.es"
LABEL version "1.0"
LABEL description "This is alfresco-docker-template version 5.0.d"
RUN set -x \
&& yum install -y \
unzip \
wget \
&& yum clean all
ENV ALF_DOWNLOAD_URL http://dl.alfresco.com/release/community/5.0.d-build-... | keensoft/alfresco-50d-docker-template | 5.0.d/Dockerfile | Dockerfile | apache-2.0 | 671 |
FROM microsoft/windowsservercore
ADD HybridInstaller.ps1 /Windows/Temp/HybridInstaller.ps1
RUN powershell -executionpolicy bypass C:\Windows\Temp\HybridInstaller.ps1 -RunNative | larsiwer/Virtualization-Documentation | windows-container-samples/nodejs/Dockerfile | Dockerfile | mit | 176 |
FROM node:latest
RUN mkdir /nodeAppPostPg
ADD ./nodeAppPostPg /nodeAppPostPg
RUN mkdir /emailHandler
ADD ./emailHandler /emailHandler
RUN mkdir /smsHandler
ADD ./smsHandler /smsHandler
RUN mkdir /matchingEngine
ADD ./matchingEngine /matchingEngine
#ENTRYPOINT ["sh"]
| dmilet/backend | Dockerfile | Dockerfile | mit | 273 |
FROM clipper/py-rpc:latest
MAINTAINER Dan Crankshaw <dscrankshaw@gmail.com>
RUN pip install tensorflow==1.0
COPY containers/python/tf_cifar_container.py /container/
CMD ["python", "/container/tf_cifar_container.py"]
# vim: set filetype=dockerfile:
| nishadsingh1/clipper | TensorFlowCifarDockerfile | Dockerfile | apache-2.0 | 253 |
# Copyright 2017 The Kubernetes 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... | chentao1596/ingress | images/custom-error-pages/rootfs/Dockerfile | Dockerfile | apache-2.0 | 712 |
#
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/amd64/generate.sh"!
#
FROM ubuntu:trusty
RUN apt-get update && apt-get install -y apparmor bash-completion btrfs-tools build-essential cmake curl ca-certificates debhelper dh-apparmor dh-systemd git libapparmor-dev libdevmapper-dev pkg-config vim-common libsys... | mattaitchison/terraform-provider-convox | vendor/github.com/docker/docker/contrib/builder/deb/amd64/ubuntu-trusty/Dockerfile | Dockerfile | mit | 635 |
FROM php:5.6-apache
RUN apt-get update && apt-get install -y \
libfreetype6-dev \
libjpeg62-turbo-dev \
libmcrypt-dev \
libpng12-dev \
libicu-dev \
make \
php5-dev \
php-pear \
libcurl4-gnutls-dev \
&& docker-php-ext-install intl mbstring \
... | B-Galati/dockerfiles | php-apache-symfony/Dockerfile | Dockerfile | mit | 699 |
FROM centos:centos6
MAINTAINER kvaps <kvapss@gmail.com>
ENV SEAFILE_VERSION 5.0.2
RUN yum -y install tar epel-release
RUN curl -L https://bintray.com/artifact/download/seafile-org/seafile/seafile-server_${SEAFILE_VERSION}_x86-64.tar.gz | tar xz -C /usr/src/
WORKDIR /data
RUN yum -y upgrade
RUN yum -y install python-... | kvaps/docker-seafile | Dockerfile | Dockerfile | mit | 663 |
FROM nfnty/arch-mini:latest
MAINTAINER nfnty <docker@nfnty.se>
RUN ugid='880029' && \
groupadd --gid "${ugid}" contgrp && \
useradd --uid "${ugid}" --gid "${ugid}" --shell /usr/bin/false contusr
ENV VERSION_HEKA='0.10.0-6'
RUN pacman --sync --noconfirm --refresh --sysupgrade && \
pacman --sync --noconfirm... | nfnty/dockerfiles | images/arch-heka/latest/Dockerfile | Dockerfile | mit | 604 |
ARG REPO=mcr.microsoft.com/dotnet/runtime-deps
FROM $REPO:3.1.23-alpine3.15
# .NET Core globalization APIs will use invariant mode by default because DOTNET_SYSTEM_GLOBALIZATION_INVARIANT=true is set
# by the base runtime-deps image. See https://aka.ms/dotnet-globalization-alpine-containers for more information.
# In... | dotnet/dotnet-docker | src/runtime/3.1/alpine3.15/amd64/Dockerfile | Dockerfile | mit | 906 |
FROM andrewrademacher/haskell-base:0.1.0.0
MAINTAINER Andrew Rademacher <andrewrademacher@gmail.com>
RUN apt-get update
RUN apt-get install llvm freeglut3-dev -y
RUN mkdir /src
ADD . /src
WORKDIR /src
RUN cabal update
RUN cabal sandbox init
RUN cabal install --only-dependencies
RUN cabal configure -f llvm
RUN caba... | AndrewRademacher/game-of-life | Dockerfile | Dockerfile | mit | 504 |
# docker build -t gotthardp/lorawan-server .
# docker run --restart unless-stopped --detach --name lorawan --hostname lorawan \
# --volume /root/storage:/storage --publish 8081:8080/tcp --publish 1680:1680/udp gotthardp/lorawan-server
FROM tedsluis/raspbian.minimal.arm7
RUN apt-get update && apt-get install -y wget g... | gotthardp/lorawan-server | scripts/docker/raspbian.arm7/Dockerfile | Dockerfile | mit | 1,092 |
FROM node:latest
RUN npm install -g pm2@latest
VOLUME ["/app"]
ADD start /start
RUN chmod 755 /start
CMD ["/start"] | ziyasal/watch-tower | docker/Dockerfile | Dockerfile | mit | 117 |
FROM blacklabelops/jenkins-swarm
MAINTAINER Steffen Bleul <sbl@blacklabelops.com>
# Need root to build image
USER root
# install dev tools
RUN yum install -y \
unzip && \
yum clean all && rm -rf /var/cache/yum/*
# this envs are for maintaining java updates.
ENV JAVA_DISTRIBUTION=jdk
ENV JAVA_MAJOR_VERSION=8
... | blacklabelops/swarm | java-jdk-8-oracle/Dockerfile | Dockerfile | mit | 2,222 |
FROM debian:stable
MAINTAINER Kristian Larsson <kristian@spritelink.net>
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update -qy \
&& apt-get upgrade -qy \
&& apt-get install -y \
bridge-utils \
iproute2 \
python3-ipy \
tcpdump \
telnet \
&& rm -rf /var/lib/apt/lists/*
ADD xcon.py /
ENTRYPO... | holmahenkel/vrnetlab | vr-xcon/Dockerfile | Dockerfile | mit | 337 |
# michaloo/node-dev
#
# VERSION 0.0.1
FROM michaloo/node
MAINTAINER Michal Raczka me@michaloo.net
RUN apt-get update -y \
&& apt-get install -y curl git gcc make build-essential python
RUN npm install -g grunt-cli bower gulp
ENTRYPOINT ["/bin/bash"]
| michaloo/node-dev | Dockerfile | Dockerfile | mit | 273 |
ARG PHP_VERSION
FROM php:${PHP_VERSION}-alpine
ARG COMPOSER_FLAGS
COPY --from=composer:2 /usr/bin/composer /usr/bin/composer
WORKDIR /app
COPY composer.json ./
RUN composer update ${COMPOSER_FLAGS}
COPY ./src ./src
COPY ./tests ./tests
| yohang/CalendR | Dockerfile | Dockerfile | mit | 243 |
FROM davidva/unibuild-28
MAINTAINER David Va <davidva@tutanota.com>
RUN rm -rf united-build \
&& git clone https://github.com/kuboosoft/united-build.git \
&& cd united-build \
&& cp -f urpms / \
&& chmod a+x urpms \
&& chmod a+x /urpms \
&& ./urpms -g UnitedRPMs/opera -s opera.spec -r true -d 'dist .fc28' -c true ... | UnitedRPMs/unibuild-extended | Dockerfile | Dockerfile | mit | 360 |
# Generated automatically by update.sh
# Do no edit this file
FROM openjdk:8
RUN wget -O- "http://downloads.lightbend.com/scala/2.12.2/scala-2.12.2.tgz" \
| tar xzf - -C /usr/local --strip-components=1
VOLUME /app
WORKDIR /app
CMD ["scala"]
| bigtruedata/docker-scala | 2.12.2/Dockerfile | Dockerfile | mit | 249 |
# AUTOGENERATED FILE
FROM balenalib/generic-fedora:33-run
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.pool.sk... | nghiant2710/base-images | balena-base-images/node/generic/fedora/33/12.21.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,753 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx1-ubuntu:bionic-run
ENV NODE_VERSION 17.6.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... | resin-io-library/base-images | balena-base-images/node/jetson-tx1/ubuntu/bionic/17.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,906 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi2-debian:sid-run
ENV NODE_VERSION 15.10.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 k... | nghiant2710/base-images | balena-base-images/node/raspberrypi2/debian/sid/15.10.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,938 |
# AUTOGENERATED FILE
FROM balenalib/i386-alpine:3.12-run
ENV NODE_VERSION 17.6.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 \
6A010C5166006599AA17F0... | resin-io-library/base-images | balena-base-images/node/i386/alpine/3.12/17.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,011 |
# AUTOGENERATED FILE
FROM balenalib/parallella-hdmi-resin-alpine:3.13-run
ENV GO_VERSION 1.15.11
# 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.... | nghiant2710/base-images | balena-base-images/golang/parallella-hdmi-resin/alpine/3.13/1.15.11/run/Dockerfile | Dockerfile | apache-2.0 | 2,480 |
# AUTOGENERATED FILE
FROM balenalib/zc702-zynq7-debian:bullseye-run
ENV GO_VERSION 1.15.8
# 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... | nghiant2710/base-images | balena-base-images/golang/zc702-zynq7/debian/bullseye/1.15.8/run/Dockerfile | Dockerfile | apache-2.0 | 2,359 |
# AUTOGENERATED FILE
FROM balenalib/up-squared-debian:buster-run
ENV NODE_VERSION 14.16.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 --keyserver ... | nghiant2710/base-images | balena-base-images/node/up-squared/debian/buster/14.16.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,945 |
# AUTOGENERATED FILE
FROM balenalib/beagleboard-xm-debian:stretch-run
ENV NODE_VERSION 10.24.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 --keyse... | nghiant2710/base-images | balena-base-images/node/beagleboard-xm/debian/stretch/10.24.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,948 |
# AUTOGENERATED FILE
FROM balenalib/bananapi-m1-plus-debian:buster-build
ENV NODE_VERSION 14.15.4
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/bananapi-m1-plus/debian/buster/14.15.4/build/Dockerfile | Dockerfile | apache-2.0 | 2,793 |
FROM ubuntu:14.10
MAINTAINER Lemarinel Sebastien <lemarinel.s@gmail.com>
ENV DEBIAN_FRONTEND noninteractive
RUN mkdir -p /eexternal
VOLUME [ "/external/" ]
# Install packages needed
# - Apache 2 : server Http
# - Php5-fpm : FPM version of PHP
# - Php5-Cli : Php Cli
# - Supervisor : To manage multiple pro... | seb2411/docker-symfony | Dockerfile | Dockerfile | apache-2.0 | 1,914 |
# AUTOGENERATED FILE
FROM balenalib/floyd-nano-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... | resin-io-library/base-images | balena-base-images/python/floyd-nano/alpine/3.13/3.9.10/run/Dockerfile | Dockerfile | apache-2.0 | 4,128 |
# AUTOGENERATED FILE
FROM balenalib/isg-503-alpine:3.14-run
ENV GO_VERSION 1.17.7
# 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 ... | resin-io-library/base-images | balena-base-images/golang/isg-503/alpine/3.14/1.17.7/run/Dockerfile | Dockerfile | apache-2.0 | 2,464 |
# AUTOGENERATED FILE
FROM balenalib/var-som-mx6-fedora:36-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"... | resin-io-library/base-images | balena-base-images/python/var-som-mx6/fedora/36/3.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,439 |
# 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 agr... | coleca/jenkins-packer-agent | Dockerfile | Dockerfile | apache-2.0 | 2,585 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi400-64-debian:bullseye-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.... | nghiant2710/base-images | balena-base-images/dotnet/raspberrypi400-64/debian/bullseye/3.1-runtime/run/Dockerfile | Dockerfile | apache-2.0 | 2,536 |
# AUTOGENERATED FILE
FROM balenalib/generic-amd64-alpine:edge-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 ... | resin-io-library/base-images | balena-base-images/python/generic-amd64/alpine/edge/3.10.2/run/Dockerfile | Dockerfile | apache-2.0 | 4,138 |
# AUTOGENERATED FILE
FROM balenalib/raspberry-pi2-debian:bookworm-run
ENV NODE_VERSION 16.14.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 --keyse... | resin-io-library/base-images | balena-base-images/node/raspberry-pi2/debian/bookworm/16.14.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,943 |
# AUTOGENERATED FILE
FROM balenalib/ccimx8x-sbc-pro-ubuntu:cosmic-run
ENV NODE_VERSION 10.24.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.p... | nghiant2710/base-images | balena-base-images/node/ccimx8x-sbc-pro/ubuntu/cosmic/10.24.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,919 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-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/beaglebone-green/ubuntu/bionic/3.9.1/run/Dockerfile | Dockerfile | apache-2.0 | 4,075 |
# AUTOGENERATED FILE
FROM balenalib/jetson-nano-debian:sid-run
ENV NODE_VERSION 12.22.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 --keyserver ke... | nghiant2710/base-images | balena-base-images/node/jetson-nano/debian/sid/12.22.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,933 |
FROM balenalib/aarch64-alpine:3.15-build
LABEL io.balena.device-type="generic-aarch64"
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 im... | resin-io-library/base-images | balena-base-images/device-base/generic-aarch64/alpine/3.15/build/Dockerfile | Dockerfile | apache-2.0 | 1,024 |
# AUTOGENERATED FILE
FROM balenalib/intel-nuc-debian:bullseye-build
ENV GO_VERSION 1.14.14
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-amd64.tar.gz" \
&& echo "6f1354c9040d65d1622b451f43c324c1e5197aa9242d00c5a117d0e2625f3e0d go$GO_VERSION.linux-amd64.tar.gz"... | nghiant2710/base-images | balena-base-images/golang/intel-nuc/debian/bullseye/1.14.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,019 |
# AUTOGENERATED FILE
FROM balenalib/jetson-nano-2gb-devkit-fedora:32-run
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/jetson-nano-2gb-devkit/fedora/32/15.10.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,761 |
# AUTOGENERATED FILE
FROM balenalib/aarch64-ubuntu:impish-build
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 keys... | resin-io-library/base-images | balena-base-images/node/aarch64/ubuntu/impish/14.18.3/build/Dockerfile | Dockerfile | apache-2.0 | 2,750 |
# AUTOGENERATED FILE
FROM balenalib/isg-503-debian:bullseye-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 --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserver k... | resin-io-library/base-images | balena-base-images/node/isg-503/debian/bullseye/14.18.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,933 |
# AUTOGENERATED FILE
FROM balenalib/surface-go-debian:bullseye-run
ENV GO_VERSION 1.16.3
# 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-... | nghiant2710/base-images | balena-base-images/golang/surface-go/debian/bullseye/1.16.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,344 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx1-alpine:edge-build
ENV NODE_VERSION 15.6.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 for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \... | nghiant2710/base-images | balena-base-images/node/jetson-tx1/alpine/edge/15.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,955 |
# AUTOGENERATED FILE
FROM balenalib/surface-go-debian:bookworm-run
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu67 \
libssl1.1 \
... | resin-io-library/base-images | balena-base-images/dotnet/surface-go/debian/bookworm/5.0-sdk/run/Dockerfile | Dockerfile | apache-2.0 | 2,928 |
# AUTOGENERATED FILE
FROM balenalib/qemux86-64-fedora:31-build
ENV NODE_VERSION 12.22.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 ha.po... | nghiant2710/base-images | balena-base-images/node/qemux86-64/fedora/31/12.22.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,760 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi400-64-debian:jessie-run
# 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/raspberrypi400-64/debian/jessie/7-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 3,095 |
# AUTOGENERATED FILE
FROM balenalib/n510-tx2-fedora:31-run
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.pool.sk... | nghiant2710/base-images | balena-base-images/node/n510-tx2/fedora/31/15.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,745 |
# AUTOGENERATED FILE
FROM balenalib/photon-tx2-nx-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-arm64.tar.gz" \
&& echo "a5aa1ed17d45ee1d58b4a4099b12f8942acbd1dd09b2e9a6abb1c4898043c5f5 go$GO_VERSION.linux-arm64.tar.gz" |... | resin-io-library/base-images | balena-base-images/golang/photon-tx2-nx/debian/sid/1.17.7/build/Dockerfile | Dockerfile | apache-2.0 | 1,996 |
# AUTOGENERATED FILE
FROM balenalib/aarch64-debian:sid-build
ENV NODE_VERSION 15.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" || \
gpg --ba... | nghiant2710/base-images | balena-base-images/node/aarch64/debian/sid/15.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,772 |
FROM ppc64le/r-base
MAINTAINER "Yugandha Deshpande <yugandha@us.ibm.com>"
RUN apt-get update \
&& apt-get install git -y \
&& git clone https://github.com/cran/coin.git \
&& cd coin && git checkout 1.2-2 \
&& R -e 'install.packages("coin",dependencies= TRUE,repos="http://cran.rstudio.com/")' \
&& R ... | ppc64le/build-scripts | c/coin/Dockerfiles/latest_ubuntu_16.04/Dockerfile | Dockerfile | apache-2.0 | 434 |
# AUTOGENERATED FILE
FROM balenalib/photon-tx2-nx-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 Mc... | resin-io-library/base-images | balena-base-images/python/photon-tx2-nx/alpine/edge/3.8.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,839 |
# AUTOGENERATED FILE
FROM balenalib/asus-tinker-board-ubuntu:focal-run
ENV NODE_VERSION 14.15.4
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/asus-tinker-board/ubuntu/focal/14.15.4/run/Dockerfile | Dockerfile | apache-2.0 | 2,923 |
# AUTOGENERATED FILE
FROM balenalib/imx7-var-som-debian:jessie-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 --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserve... | nghiant2710/base-images | balena-base-images/node/imx7-var-som/debian/jessie/10.24.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,944 |
# AUTOGENERATED FILE
FROM balenalib/raspberry-pi2-debian:bullseye-run
ENV NODE_VERSION 10.24.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 --keyse... | nghiant2710/base-images | balena-base-images/node/raspberry-pi2/debian/bullseye/10.24.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,949 |
FROM balenalib/armv7hf-fedora:35-build
LABEL io.balena.device-type="raspberrypi3"
RUN dnf install -y \
less \
nano \
net-tools \
usbutils \
gnupg \
i2c-tools \
&& dnf clean all
RUN [ ! -d /.balena/messages ] && mkdir -p /.balena/messages; echo $'Here are a few details about this Docker image (For more in... | resin-io-library/base-images | balena-base-images/device-base/raspberrypi3/fedora/35/build/Dockerfile | Dockerfile | apache-2.0 | 1,000 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi-alpine:3.15-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 'dirnam... | resin-io-library/base-images | balena-base-images/openjdk/raspberrypi/alpine/3.15/8-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 1,756 |
# AUTOGENERATED FILE
FROM balenalib/etcher-pro-ubuntu:eoan-run
ENV NODE_VERSION 12.20.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.pgp.com ... | nghiant2710/base-images | balena-base-images/node/etcher-pro/ubuntu/eoan/12.20.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,910 |
# AUTOGENERATED FILE
FROM balenalib/jn30b-nano-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 depen... | nghiant2710/base-images | balena-base-images/python/jn30b-nano/debian/buster/3.5.10/run/Dockerfile | Dockerfile | apache-2.0 | 4,095 |
# AUTOGENERATED FILE
FROM balenalib/up-core-alpine:3.13-run
ENV NODE_VERSION 15.7.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 \
6A010C5166006599AA1... | nghiant2710/base-images | balena-base-images/node/up-core/alpine/3.13/15.7.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,027 |
# AUTOGENERATED FILE
FROM balenalib/kitra710-debian:stretch-run
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu57 \
libssl1.1 \
... | resin-io-library/base-images | balena-base-images/dotnet/kitra710/debian/stretch/3.1-aspnet/run/Dockerfile | Dockerfile | apache-2.0 | 3,129 |
# Welcome to the official Hue (http://gethue.com) developer Dockerfile
FROM ubuntu:trusty
MAINTAINER The Hue Team "https://github.com/cloudera/hue"
RUN apt-get install -y software-properties-common
RUN add-apt-repository -y ppa:webupd8team/java
RUN apt-get update -y
RUN echo oracle-java8-installer shared/accepted-ora... | lumig242/Hue-Integration-with-CDAP | tools/docker/hue-base/Dockerfile | Dockerfile | apache-2.0 | 976 |
# AUTOGENERATED FILE
FROM balenalib/imx8mm-var-dart-alpine:3.10-run
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/imx8mm-var-dart/alpine/3.10/1.14.13/run/Dockerfile | Dockerfile | apache-2.0 | 2,474 |
# AUTOGENERATED FILE
FROM balenalib/up-core-plus-alpine:3.11-build
ENV GO_VERSION 1.15.7
# 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/up-core-plus/alpine/3.11/1.15.7/build/Dockerfile | Dockerfile | apache-2.0 | 2,346 |
#runadock-itworks
#docker build -t runadock/itworks .
#docker run -d --name itworks -p 80:80 -p 443:443 runadock/itworks
FROM nginx
COPY src /usr/share/nginx/html
| runadock/dockerfiles | itworks/Dockerfile | Dockerfile | apache-2.0 | 164 |
FROM rocker/verse:3.3.1
RUN apt-get update && apt-get -y install --no-install-recommends jekyll ruby-rouge
WORKDIR /home/rstudio
EXPOSE 4000
ENV SERVE TRUE
CMD Rscript -e "dirs = c('.', 'readings', 'assignments', 'lectures'); servr::jekyll('website', serve=$SERVE, input = dirs, output = dirs, host = '0.0.0.0', port=... | ds421/rcds | Dockerfile | Dockerfile | bsd-2-clause | 527 |
FROM node:12-alpine
LABEL maintainer="Carlos Justiniano cjus@ieee.org"
EXPOSE 80
ENV UV_THREADPOOL_SIZE 64
HEALTHCHECK --interval=5s --timeout=3s CMD curl -f http://localhost:80/v1/router/health || exit 1
RUN apk add --update \
curl \
&& rm -rf /var/cache/apk/*
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
ADD .... | flywheelsports/hydra-router | Dockerfile | Dockerfile | mit | 475 |
FROM mongo:3.3.12
ADD mongodb/scripts/init_replicaset.js init_replicaset.js
| egrohs/Politicos | src/main/docker/mongodb/MongoDB.Dockerfile | Dockerfile | mit | 76 |
FROM debian:buster-slim
RUN apt-get update && apt-get install -y bash expect file openssh-client socat psmisc && apt autoclean
# Copy container files
COPY files /
RUN chmod a+x /entry.sh
# Setup environment variables; export SSH_AUTH_SOCK from socket directory
ENV SSH_KEY_DIR /tmp/.ssh
ENV SOCKET_DIR /tmp/.ssh-agent... | rfay/ddev | containers/ddev-ssh-agent/Dockerfile | Dockerfile | apache-2.0 | 682 |
# AUTOGENERATED FILE
FROM balenalib/var-som-mx6-debian:stretch-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 so... | nghiant2710/base-images | balena-base-images/openjdk/var-som-mx6/debian/stretch/8-jdk/build/Dockerfile | Dockerfile | apache-2.0 | 3,104 |
#
# Docker Stack - Docker stack to manage infrastructures
#
# Copyright 2014 devops.center
#
# 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
#
#... | devopscenter/docker-stack | web/php-nginx-pgpool/Dockerfile | Dockerfile | apache-2.0 | 1,209 |
FROM balenalib/armv7hf-ubuntu:focal-run
LABEL io.balena.device-type="imx6ul-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 ] && m... | nghiant2710/base-images | balena-base-images/device-base/imx6ul-var-dart/ubuntu/focal/run/Dockerfile | Dockerfile | apache-2.0 | 1,092 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-alpine:3.13-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 'd... | nghiant2710/base-images | balena-base-images/openjdk/beaglebone-green/alpine/3.13/8-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 1,761 |
#
# Before building this Dockerfile, BlueOcean needs to be built locally using Maven
# You can build everything needed and this Dockerfile by invoking `bin/build-in-docker.sh -m`
#
# Should be kept in sync with jenkins.properties of pom.xml
# Patch version is not to be considered, we prefer to base the image off the l... | alvarolobato/blueocean-plugin | Dockerfile | Dockerfile | mit | 962 |
# Copyright 2016 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 ... | cblecker/test-infra | images/git/Dockerfile | Dockerfile | apache-2.0 | 708 |
# Copyright 2019 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,... | skia-dev/oss-fuzz | projects/lodepng/Dockerfile | Dockerfile | apache-2.0 | 1,112 |
FROM fedora:latest
RUN dnf -y install docker git python-docker-py python-setuptools desktop-file-utils e2fsprogs flatpak koji python-pip python-backports-lzma osbs gssproxy && dnf clean all
RUN mkdir /tmp/atomic-reactor
ADD . /tmp/atomic-reactor
RUN cd /tmp/atomic-reactor && python setup.py install
CMD ["atomic-reactor... | vrutkovs/atomic-reactor | Dockerfile | Dockerfile | bsd-3-clause | 352 |
FROM ubuntu:20.04
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update -yqq && apt-get install -yqq software-properties-common > /dev/null
RUN LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php
RUN apt-get update -yqq > /dev/null && \
apt-get install -yqq nginx git unzip \
php7.4-cli php7.4-fpm php7.4-mysq... | sumeetchhetri/FrameworkBenchmarks | frameworks/PHP/phalcon/phalcon-mongodb.dockerfile | Dockerfile | bsd-3-clause | 917 |
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%base:%%KOLLA_TAG%%
MAINTAINER Kolla Project (https://launchpad.net/kolla)
VOLUME [ "/var/lib/glance" ]
CMD ["/bin/true"]
| jakedahn/kolla | docker/centos/source/glance/glance-data/Dockerfile | Dockerfile | apache-2.0 | 163 |
FROM ubuntu:18.04
RUN apt update -qq && \
apt install -yqq locales wget build-essential
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
ENV DEBIAN_FRONTEND noninteractive
ENV TROOT /cutelyst-benchmark-app
ENV CUTELYST_APP ${TROOT}/build/libcutelyst_benchmarks.so
COPY... | nbrady-techempower/FrameworkBenchmarks | frameworks/C++/cutelyst/cutelyst-thread-pg.dockerfile | Dockerfile | bsd-3-clause | 995 |
FROM java:openjdk-8-jdk
ENV hadoop_ver 2.6.1
ENV spark_ver 1.5.1
# Get Hadoop from US Apache mirror and extract just the native
# libs. (Until we care about running HDFS with these containers, this
# is all we need.)
RUN mkdir -p /opt && \
cd /opt && \
curl http://www.us.apache.org/dist/hadoop/common/hadoop-$... | xinxiaogang/kubernetes | examples/spark/images/base/Dockerfile | Dockerfile | apache-2.0 | 1,430 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.