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:14.04.2
MAINTAINER Adnan Issadeen <adnan.issadeen@live.com>
RUN apt-get update && apt-get install wget curl sqlite3 nginx vim -y --force-yes
RUN apt-get install mysql-server php5 php5-cli php5-fpm php5-curl php5-common php5-gd php5-mysql -y --force-yes
ADD nginxfile /etc/nginx/sites-available/phpapp
RUN r... | spartakode/my-docker-repos | php/phpsymfonymysql/Dockerfile | Dockerfile | mit | 750 |
FROM boot2docker/boot2docker
ADD . $ROOTFS/data/
WORKDIR /
RUN git clone https://git.kernel.org/pub/scm/linux/kernel/git/shemminger/bridge-utils.git && \
cd bridge-utils && \
autoconf && \
./configure && \
make && \
make DESTDIR=$ROOTFS install && \
ln -s ../local/sbin/brctl $ROOTFS/usr/sbin/br... | kennethjiang/YANS | boot2docker/Dockerfile | Dockerfile | mit | 599 |
FROM ubuntu:14.04.3
MAINTAINER tobilg <fb.tools.github@gmail.com>
RUN apt-get update && apt-get install -yq --no-install-recommends --force-yes \
openjdk-7-jre-headless \
wget \
libsasl2-dev \
libapr1-dev \
libsvn-dev \
libcurl4-nss-dev
# Mesos ENV vars
ENV MESOS_BUILD_VERSION 0.23.0
# Mesos... | tobilg/docker-mesos-spark-shell | Dockerfile | Dockerfile | mit | 1,427 |
FROM remp/telegraf:1.17.3
ENV DOCKERIZE_VERSION v0.6.1
RUN apk update
RUN apk add ca-certificates
RUN update-ca-certificates
RUN apk add openssl
RUN apk add wget
RUN wget https://github.com/jwilder/dockerize/releases/download/$DOCKERIZE_VERSION/dockerize-linux-amd64-$DOCKERIZE_VERSION.tar.gz \
&& tar -C /usr/loc... | remp2020/remp | Docker/telegraf/Dockerfile | Dockerfile | mit | 583 |
FROM quay.io/netguru/ng-ruby:2.3.0
RUN /opt/passenger/install
RUN /opt/node/install
# bundle dependencies
RUN apt-get update
RUN apt-get install -y libpq-dev
RUN apt-get install -y imagemagick
# set timezone
RUN echo 'Europe/Warsaw' > /etc/timezone && dpkg-reconfigure --frontend noninteractive tzdata
ENV APP_HOME /... | netguru/people | docker/production/Dockerfile | Dockerfile | mit | 738 |
FROM tensorflow/tensorflow:1.1.0
RUN apt-get update
RUN apt-get -y install git
RUN pip install pdoc
RUN pip install mako
RUN pip install markdown
RUN pip install pytest
RUN pip install pytest-sugar
| cgarciae/tfinterface | docker/python27.dockerfile | Dockerfile | mit | 201 |
FROM ubuntu:trusty
MAINTAINER Roman Zubatyuk <zubatyuk@gmail.com>
COPY deb/squid3-common_3* deb/squid3_3* /root/
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
libecap2 libgssapi-krb5-2 libkrb5-3 libldap-2.4-2 libltdl7 libnetfilter-conntrack3 \
... | zubatyuk/docker-containers | squid3-ssl/Dockerfile | Dockerfile | mit | 753 |
FROM ubuntu:14.04
MAINTAINER David Reay <dcrbsltd@gmail.com>
# Install Ruby 2.2
ENV RUBY_MAJOR 2.2
ENV RUBY_VERSION 2.2.4
ENV RUBY_DOWNLOAD_SHA256 b6eff568b48e0fda76e5a36333175df049b204e91217aa32a65153cc0cdcb761
ENV RUBYGEMS_VERSION 2.5.1
# skip installing gem documentation
RUN echo 'install: --no-document\nupdate: -... | dcrbsltd/docker-ruby | Dockerfile | Dockerfile | mit | 1,540 |
#
# Base image for compiling and running Ceylon applications
#
FROM ceylon/ceylon-base:jre8-debian
MAINTAINER Tako Schotanus <tako@ceylon-lang.org>
ENV CEYLON_VERSION 1.2.1
LABEL org.ceylon-lang.dockerfile.description="Base image for compiling and running Ceylon applications" \
org.ceylon-lang.dockerfile.vendor=... | ceylon-docker/ceylon | 1.2.1/1.2.1-jre8-debian/Dockerfile | Dockerfile | apache-2.0 | 686 |
# AUTOGENERATED FILE
FROM balenalib/cubox-i-fedora:30-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 "virtualenv", sinc... | nghiant2710/base-images | balena-base-images/python/cubox-i/fedora/30/3.8.9/run/Dockerfile | Dockerfile | apache-2.0 | 2,429 |
# AUTOGENERATED FILE
FROM balenalib/fincm3-debian:sid-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_VERSION.linux... | resin-io-library/base-images | balena-base-images/golang/fincm3/debian/sid/1.17.7/build/Dockerfile | Dockerfile | apache-2.0 | 2,018 |
FROM balenalib/armv7hf-debian:bullseye-build
LABEL io.balena.device-type="raspberrypi2"
RUN echo "deb http://archive.raspbian.org/raspbian bullseye main contrib non-free rpi firmware" >> /etc/apt/sources.list \
&& apt-key adv --batch --keyserver keyserver.ubuntu.com --recv-key 0x9165938D90FDDD2E \
&& echo "deb http... | resin-io-library/base-images | balena-base-images/device-base/raspberrypi2/debian/bullseye/build/Dockerfile | Dockerfile | apache-2.0 | 1,535 |
# AUTOGENERATED FILE
FROM balenalib/spacely-tx2-alpine:3.12-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.conf ] && ... | nghiant2710/base-images | balena-base-images/golang/spacely-tx2/alpine/3.12/1.15.11/run/Dockerfile | Dockerfile | apache-2.0 | 2,470 |
# AUTOGENERATED FILE
FROM balenalib/rockpi-4b-rk3399-ubuntu:bionic-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 ... | resin-io-library/base-images | balena-base-images/openjdk/rockpi-4b-rk3399/ubuntu/bionic/11-jre/run/Dockerfile | Dockerfile | apache-2.0 | 3,106 |
FROM balenalib/aarch64-alpine:3.14-run
LABEL io.balena.device-type="n510-tx2"
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 ... | resin-io-library/base-images | balena-base-images/device-base/n510-tx2/alpine/3.14/run/Dockerfile | Dockerfile | apache-2.0 | 1,013 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen6xq2g-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/nitrogen6xq2g/debian/stretch/3.1-sdk/run/Dockerfile | Dockerfile | apache-2.0 | 2,914 |
FROM centos:centos6
# Enable EPEL for Node.js
RUN rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
# Install Node.js and npm
RUN yum install -y npm
COPY . /src
RUN cd /src; npm install; npm start
EXPOSE 8080
| XTalandier/angular-starter-tests | Dockerfile | Dockerfile | apache-2.0 | 260 |
# AUTOGENERATED FILE
FROM balenalib/surface-pro-6-ubuntu:focal-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/surface-pro-6/ubuntu/focal/2.7.18/build/Dockerfile | Dockerfile | apache-2.0 | 5,212 |
# AUTOGENERATED FILE
FROM balenalib/photon-nano-fedora:34-run
ENV NODE_VERSION 14.16.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.poo... | nghiant2710/base-images | balena-base-images/node/photon-nano/fedora/34/14.16.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,750 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-fedora:34-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 keys... | resin-io-library/base-images | balena-base-images/node/jetson-xavier/fedora/34/14.18.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,746 |
# AUTOGENERATED FILE
FROM balenalib/odroid-u3+-debian:stretch-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_VERSI... | nghiant2710/base-images | balena-base-images/golang/odroid-u3+/debian/stretch/1.15.7/build/Dockerfile | Dockerfile | apache-2.0 | 2,030 |
# AUTOGENERATED FILE
FROM balenalib/spacely-tx2-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.co... | resin-io-library/base-images | balena-base-images/node/spacely-tx2/ubuntu/bionic/17.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,907 |
# AUTOGENERATED FILE
FROM balenalib/up-board-ubuntu:bionic-run
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu60 \
libssl1.1 \
libstd... | resin-io-library/base-images | balena-base-images/dotnet/up-board/ubuntu/bionic/3.1-aspnet/run/Dockerfile | Dockerfile | apache-2.0 | 3,131 |
FROM jazzwang/bigtop-hive
MAINTAINER Jazz Wang <jazzwang.tw@gmail.com>
COPY app/ /app/
RUN /app/setup
ENTRYPOINT ["/app/init-sqoop"]
| jazzwang/docker-pool | bigtop-sqoop/Dockerfile | Dockerfile | apache-2.0 | 136 |
# AUTOGENERATED FILE
FROM balenalib/nanopc-t4-debian:buster-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 ke... | nghiant2710/base-images | balena-base-images/node/nanopc-t4/debian/buster/15.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,935 |
# AUTOGENERATED FILE
FROM balenalib/surface-pro-6-alpine:3.11-build
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.conf ]... | nghiant2710/base-images | balena-base-images/golang/surface-pro-6/alpine/3.11/1.15.11/build/Dockerfile | Dockerfile | apache-2.0 | 2,349 |
# AUTOGENERATED FILE
FROM balenalib/up-core-plus-debian:stretch-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/up-core-plus/debian/stretch/14.15.4/build/Dockerfile | Dockerfile | apache-2.0 | 2,794 |
FROM octohost/wintersmith-nginx
WORKDIR /srv/www
RUN npm install wintersmith-ejs -g
ADD . /srv/www/
RUN wintersmith build
EXPOSE 80
CMD nginx | octohost/wintersmith | Dockerfile | Dockerfile | apache-2.0 | 145 |
FROM golang:1.4
MAINTAINER Kyle Lemons <kyle@kylelemons.net>
### Early steps
# We do these early, so that they're cached for simpler development.
### Remote dependencies
# We follow up the keys by pulling down remote dependencies, so they're
# cached to minimize network traffic and rebuild delays.
# Install Go app
R... | kylelemons/dockerfiles | gonutsirc/Dockerfile | Dockerfile | apache-2.0 | 418 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypicm4-ioboard-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 63C7C... | resin-io-library/base-images | balena-base-images/python/raspberrypicm4-ioboard/debian/sid/3.7.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,860 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-fedora:32-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/jetson-xavier/fedora/32/3.7.9/build/Dockerfile | Dockerfile | apache-2.0 | 2,440 |
# AUTOGENERATED FILE
FROM balenalib/beagleboard-xm-ubuntu:bionic-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 \
' \
&& a... | nghiant2710/base-images | balena-base-images/golang/beagleboard-xm/ubuntu/bionic/1.15.11/run/Dockerfile | Dockerfile | apache-2.0 | 2,360 |
# AUTOGENERATED FILE
FROM balenalib/zc702-zynq7-debian:sid-build
ENV NODE_VERSION 14.16.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/zc702-zynq7/debian/sid/14.16.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,782 |
# AUTOGENERATED FILE
FROM balenalib/hummingboard-alpine:3.10-build
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 ] &... | nghiant2710/base-images | balena-base-images/golang/hummingboard/alpine/3.10/1.15.8/build/Dockerfile | Dockerfile | apache-2.0 | 2,339 |
# AUTOGENERATED FILE
FROM balenalib/jetson-nano-emmc-ubuntu:xenial-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... | nghiant2710/base-images | balena-base-images/golang/jetson-nano-emmc/ubuntu/xenial/1.15.6/build/Dockerfile | Dockerfile | apache-2.0 | 2,005 |
# AUTOGENERATED FILE
FROM balenalib/orange-pi-zero-fedora:30-run
ENV GO_VERSION 1.15.11
# gcc for cgo
RUN dnf install -y \
gcc-c++ \
gcc \
git \
&& dnf clean all
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" \
&& ech... | nghiant2710/base-images | balena-base-images/golang/orange-pi-zero/fedora/30/1.15.11/run/Dockerfile | Dockerfile | apache-2.0 | 2,106 |
FROM busybox:ubuntu-14.04
MAINTAINER Florian Kasper <florian@xpandmmi.com>
EXPOSE 7717
WORKDIR /app
COPY build /app/build
COPY html /app/html
# Generate a default config
ADD sample.toml /etc/bio.toml
ENTRYPOINT ["/app/build/bio", "--config", "/etc/bio.toml"]
| xpandmmi/biographies | Dockerfile | Dockerfile | apache-2.0 | 262 |
# AUTOGENERATED FILE
FROM balenalib/npe-x500-m3-alpine:3.12-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... | nghiant2710/base-images | balena-base-images/python/npe-x500-m3/alpine/3.12/2.7.18/run/Dockerfile | Dockerfile | apache-2.0 | 4,531 |
FROM balenalib/aarch64-alpine:3.15-run
LABEL io.balena.device-type="raspberrypi400-64"
RUN apk add --update \
less \
nano \
net-tools \
ifupdown \
usbutils \
gnupg \
raspberrypi \
raspberrypi-libs \
raspberrypi-dev \
&& rm -rf /var/cache/apk/*
RUN [ ! -d /.balena/messages ] && mkdir -p /.balena/mes... | resin-io-library/base-images | balena-base-images/device-base/raspberrypi400-64/alpine/3.15/run/Dockerfile | Dockerfile | apache-2.0 | 1,079 |
# 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.6.15/build/Dockerfile | Dockerfile | apache-2.0 | 4,839 |
# AUTOGENERATED FILE
FROM balenalib/surface-pro-6-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/surface-pro-6/alpine/edge/3.9.7/run/Dockerfile | Dockerfile | apache-2.0 | 4,136 |
FROM python:3.7-slim
COPY . .
RUN pip install --upgrade pip && pip install kfserving
RUN pip install -e .
ENTRYPOINT ["python", "-m", "image_transformer"]
| kubeflow/kfserving-lts | docs/samples/v1alpha2/transformer/image_transformer/transformer.Dockerfile | Dockerfile | apache-2.0 | 156 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen6x-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/nitrogen6x/alpine/3.11/3.9.1/run/Dockerfile | Dockerfile | apache-2.0 | 4,130 |
# AUTOGENERATED FILE
FROM balenalib/armv7hf-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 depende... | nghiant2710/base-images | balena-base-images/python/armv7hf/debian/stretch/3.5.10/run/Dockerfile | Dockerfile | apache-2.0 | 4,094 |
# docker build -t atlas-exp .
# docker build -t oblas-exp .
# docker build -t scikit-exp .
FROM atlas
#FROM oblas
#FROM scikit
ARG workdir=/tmp
ADD experiments.tar $workdir
WORKDIR $workdir
| nzwulfin/contained-science | python/exp/Dockerfile | Dockerfile | apache-2.0 | 192 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-gateway-alpine:3.13-build
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/nsswi... | nghiant2710/base-images | balena-base-images/golang/beaglebone-green-gateway/alpine/3.13/1.15.8/build/Dockerfile | Dockerfile | apache-2.0 | 2,351 |
# AUTOGENERATED FILE
FROM balenalib/orange-pi-zero-ubuntu:impish-build
ENV NODE_VERSION 17.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 --keyserve... | resin-io-library/base-images | balena-base-images/node/orange-pi-zero/ubuntu/impish/17.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,759 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi4-64-fedora:36-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/raspberrypi4-64/fedora/36/3.10.2/run/Dockerfile | Dockerfile | apache-2.0 | 2,438 |
# AUTOGENERATED FILE
FROM balenalib/via-vab820-quad-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 "Simon ... | nghiant2710/base-images | balena-base-images/python/via-vab820-quad/alpine/3.11/2.7.18/build/Dockerfile | Dockerfile | apache-2.0 | 5,241 |
# AUTOGENERATED FILE
FROM balenalib/revpi-connect-ubuntu:cosmic-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 --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.... | nghiant2710/base-images | balena-base-images/node/revpi-connect/ubuntu/cosmic/15.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,919 |
# AUTOGENERATED FILE
FROM balenalib/intel-edison-alpine:3.12-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 a... | nghiant2710/base-images | balena-base-images/python/intel-edison/alpine/3.12/3.6.12/run/Dockerfile | Dockerfile | apache-2.0 | 4,134 |
# AUTOGENERATED FILE
FROM balenalib/am571x-evm-ubuntu:eoan-build
ENV GO_VERSION 1.16
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 "5d2c637632fc23139c992e7f5adce1e46bccebd5a43fc90f797050ae71f46ab9 go$GO_VERSION.li... | nghiant2710/base-images | balena-base-images/golang/am571x-evm/ubuntu/eoan/1.16/build/Dockerfile | Dockerfile | apache-2.0 | 2,020 |
# AUTOGENERATED FILE
FROM balenalib/odroid-u3+-alpine:3.12-run
ENV GO_VERSION 1.14.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.conf ] && e... | nghiant2710/base-images | balena-base-images/golang/odroid-u3+/alpine/3.12/1.14.14/run/Dockerfile | Dockerfile | apache-2.0 | 2,469 |
# AUTOGENERATED FILE
FROM balenalib/coral-dev-fedora:32-run
ENV GO_VERSION 1.16.3
# 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 "f4e96bbcd5d2d1942f5b55d9e4... | nghiant2710/base-images | balena-base-images/golang/coral-dev/fedora/32/1.16.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,070 |
# AUTOGENERATED FILE
FROM balenalib/artik520-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 "Simon McVitti... | nghiant2710/base-images | balena-base-images/python/artik520/alpine/3.11/3.9.4/build/Dockerfile | Dockerfile | apache-2.0 | 4,835 |
FROM ubuntu:16.04
MAINTAINER Axel Oehmichen <axelfrancois.oehmichen11@imperial.ac.uk>
#ADD lsf.cluster.openlava /root
ADD start_eae.sh /root
## We install all the dependencies
RUN apt-get update -q && apt-get upgrade -y --no-install-recommends \
&& apt-get install -y vim git wget curl nodejs-legacy npm zip python... | aoehmichen/eae-docker | workerExample/Dockerfile | Dockerfile | apache-2.0 | 1,989 |
# AUTOGENERATED FILE
FROM balenalib/generic-armv7ahf-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 \
libic... | resin-io-library/base-images | balena-base-images/dotnet/generic-armv7ahf/ubuntu/focal/3.1-sdk/build/Dockerfile | Dockerfile | apache-2.0 | 2,951 |
# AUTOGENERATED FILE
FROM balenalib/generic-fedora:32-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", si... | nghiant2710/base-images | balena-base-images/python/generic/fedora/32/3.6.12/build/Dockerfile | Dockerfile | apache-2.0 | 2,450 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-nx-devkit-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 py... | nghiant2710/base-images | balena-base-images/python/jetson-xavier-nx-devkit/debian/sid/3.5.10/run/Dockerfile | Dockerfile | apache-2.0 | 4,102 |
# AWE worker and server binaries
FROM ubuntu:14.04
RUN apt-get update && apt-get install -y \
git-core \
bzr \
make \
gcc \
mercurial \
ca-certificates \
curl
RUN curl -s https://storage.googleapis.com/golang/go1.4.2.linux-amd64.tar.gz | tar -v -C /usr/local -xz
ENV GOROOT /usr/local/go
ENV PATH /usr/local/... | danielolson5/AWE | dockerfiles/awe-develop/Dockerfile | Dockerfile | bsd-2-clause | 981 |
FROM ubuntu:trusty-20160217
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update &&\
apt-get dist-upgrade -y &&\
apt-get update &&\
apt-get install -y curl &&\
apt-get install -y -q redis-server &&\
apt-get clean &&\
apt-get autoremove -y &&\
mkdir /data
ADD bin/flynn-redis /bin/flynn-re... | benbjohnson/flynn | appliance/redis/Dockerfile | Dockerfile | bsd-3-clause | 519 |
FROM ros:noetic-perception
# install rtabmap packages
ARG CACHE_DATE=2016-01-01
RUN apt-get update && apt-get install -y \
ros-noetic-rtabmap \
ros-noetic-rtabmap-ros \
&& rm -rf /var/lib/apt/lists/
| introlab/rtabmap_ros | docker/noetic/Dockerfile | Dockerfile | bsd-3-clause | 211 |
FROM sumeetchhetri/ffead-cpp-5.0-sql-raw-async-clibpqb-profiled-base:5.2
ENV IROOT=/installs
WORKDIR /
CMD ./run_ffead.sh ffead-cpp-5.0-sql emb postgresql-raw-async memory
| volyrique/FrameworkBenchmarks | frameworks/C++/ffead-cpp/ffead-cpp-postgresql-raw-async-clibpqb-profiled.dockerfile | Dockerfile | bsd-3-clause | 175 |
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
# NOTE: DO *NOT* EDIT THIS FILE. IT IS GENERATED.
# PLEASE UPDATE Dockerfile.txt INSTEAD OF THIS FILE
# !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
FROM wywincl/base:latest
MAINTAINER wywincl <wywincl@126.com>
ENV DEBIAN_FRONTEND noninteractive
ENV DEBCONF_N... | wywincl/node-firefox-debug-zh | NodeBase/Dockerfile | Dockerfile | apache-2.0 | 1,184 |
# AUTOGENERATED FILE
FROM balenalib/generic-aarch64-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/generic-aarch64/alpine/3.12/8-jre/run/Dockerfile | Dockerfile | apache-2.0 | 1,764 |
# Dockerfile for a generic Debian/Ubuntu image with just the basics we
# need to make it suitable for CI. In particular:
# * a non-root user to run as (a pain to try to do in setup,
# because by then we've already cloned the repo);
# * Git and other basic utilities.
# To rebuild from this file for a given releas... | zulip/zulip | tools/ci/Dockerfile | Dockerfile | apache-2.0 | 1,562 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx2-alpine:3.13-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 'dirna... | nghiant2710/base-images | balena-base-images/openjdk/jetson-tx2/alpine/3.13/7-jdk/build/Dockerfile | Dockerfile | apache-2.0 | 1,759 |
# Create a local-use Debile slave.
#
# VERSION 0.1
FROM paultag/debile-slave-base
MAINTAINER Paul R. Tagliamonte <paultag@debian.org>
ADD ursae.json /usr/share/dput-ng/profiles/
ADD slave.yaml /etc/debile/
USER root
RUN chown -R Debian-debile-unpriv:Debian-debile-unpriv /etc/debile/*
# Hack for our entrypoi... | lucaskanashiro/debile | contrib/docker/ursae/Dockerfile | Dockerfile | mit | 357 |
# Generated automatically by update.sh
# Do no edit this file
FROM bigtruedata/scala:2.11.6
Run wget -O- "https://github.com/sbt/sbt/releases/download/v0.13.16/sbt-0.13.16.tgz" \
| tar xzf - -C /usr/local --strip-components=1 \
&& sbt exit
VOLUME /app
WORKDIR /app
CMD ["sbt"]
| bigtruedata/docker-sbt | 0.13.16/2.11.6/Dockerfile | Dockerfile | mit | 290 |
FROM ubuntu
MAINTAINER Ruben Rubio Rey "ruben.rubio@manageacloud.com"
RUN apt-get update
# install and configure ansible
RUN apt-get install software-properties-common -y
RUN apt-add-repository ppa:ansible/ansible
RUN apt-get update
RUN apt-get install ansible python-apt -y
# install git
RUN apt-get install git -... | manageacloud/dockerizing-ansible | ansible-wordpress-microservices/webserver/Dockerfile | Dockerfile | mit | 1,266 |
FROM registry
MAINTAINER nownabe <nownabe@gmail.com>
ENV SETTINGS_FLAVOR prod
ENV DOCKER_REGISTRY_CONFIG /docker-registry/config/config.yml
ENV GUNICORN_WORKERS 2
ENV GUNICONR_OPTS [--preload]
ADD config.yml /docker-registry/config/config.yml
ADD boto.cfg /etc/boto.cfg
EXPOSE 5000
CMD ["docker-registry"]
| nownabe/docker-idcf-registry | Dockerfile | Dockerfile | mit | 309 |
FROM centos
MAINTAINER Jimmy Au
ENV JDK_VERSION 8u11
ENV JDK_BUILD_VERSION b12
RUN \
curl -LO "http://download.oracle.com/otn-pub/java/jdk/$JDK_VERSION-$JDK_BUILD_VERSION/jdk-$JDK_VERSION-linux-x64.rpm" -H 'Cookie: oraclelicense=accept-securebackup-cookie' && \
rpm -i jdk-$JDK_VERSION-linux-x64.rpm && \
rm -f j... | jjbubudi/docker-java | Dockerfile | Dockerfile | mit | 370 |
# Piwik (https://piwik.org/)
# MariaDB (https://mariadb.org/)
FROM ubuntu:14.04
MAINTAINER Brian Prodoehl <bprodoehl@connectify.me>
RUN echo "deb http://archive.ubuntu.com/ubuntu trusty main universe" > /etc/apt/sources.list
# Ensure UTF-8
RUN apt-get update
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV ... | chris-rock/docker-piwik | Dockerfile | Dockerfile | mit | 1,647 |
FROM xena/alpine
ADD https://skarnet.org/toolchains/cross/powerpc64le-linux-musl-7.3.0.tar.xz /usr/local/lib/toolchain/
RUN cd /usr/local/lib/toolchain && tar xf powerpc64le-linux-musl-7.3.0.tar.xz
ENV PATH $PATH:/usr/local/lib/toolchain/powerpc64le-linux-musl-7.3.0/bin
| Xe/dockerfiles | lang/gcc/ppc64le/Dockerfile | Dockerfile | mit | 272 |
FROM ruby:2.2.4
# http://phantomjs.org/build.html
# https://github.com/sparklemotion/nokogiri.org-tutorials/blob/master/content/installing_nokogiri.md
RUN apt-get update \
&& apt-get install -y git curl build-essential g++ flex bison gperf perl \
libsqlite3-dev libfontconfig1-dev libicu-dev libfreetype6 libssl-... | TakiTake/docker-poltergeist | Dockerfile | Dockerfile | mit | 732 |
FROM ubuntu:16.04
MAINTAINER Greg Taylor <gtaylor@gc-taylor.com>
RUN apt-get update && apt-get dist-upgrade -y && \
apt install -y python3 xz-utils && apt-get clean
WORKDIR /opt
ARG factorio_version
ENV VERSION $factorio_version
COPY entrypoint.sh gen_config.py factorio.crt /opt/
COPY factorio_headless_x64_$VER... | games-on-k8s/docker-factorio | Dockerfile | Dockerfile | mit | 555 |
FROM alpine
RUN apk update \
&& apk add git py2-pip tar xz build-base python-dev jpeg-dev zlib-dev py-numpy \
&& pip install pillow lmdb protobuf
RUN mkdir -p /root/data-loader
ADD * /root/data-loader/
ENTRYPOINT ["python", "/root/data-loader/main.py"]
| CorcovadoMing/DataLoader | Dockerfile | Dockerfile | mit | 264 |
FROM ubuntu:16.04
LABEL maintainer "Richard Regeer" \
email="rich2309@gmail.com"
ENV DOCKER_VERSION 18.06.3
ENV NODE_VERSION 12.16.3
ENV YARN_VERSION 1.17.3
# Install development tools
RUN apt-get update --fix-missing \
&& apt-get install -y curl \
apt-transport-https \
mysql-client-5.7 \
postgre... | richardregeer/docker-web-development | Dockerfile | Dockerfile | mit | 1,465 |
FROM node:10
LABEL maintainer="Guillaume Limberger <glim.dev@gmail.com>"
# Create app directory
WORKDIR /usr/src/app
# At the end, set the user to use when running this image
USER node
EXPOSE 3000
CMD [ "npm", "start" ]
| lighting-perspectives/jams | docker/react/Dockerfile | Dockerfile | mit | 225 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi400-64-ubuntu:impish-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.... | resin-io-library/base-images | balena-base-images/node/raspberrypi400-64/ubuntu/impish/17.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,913 |
# AUTOGENERATED FILE
FROM balenalib/armv7hf-ubuntu:focal-build
ENV GO_VERSION 1.14.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 "93a87bdde7d5dd8c7ba0570fd811cebdfb988a6393f5f660f4595566120e0620 go$GO_VERSION.l... | nghiant2710/base-images | balena-base-images/golang/armv7hf/ubuntu/focal/1.14.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,025 |
FROM centos:latest
LABEL PROJECT=HelloWorld
###RUNTIME###
RUN JAVA_HOME="/jdk" /gradle/bin/gradle -p "/src" clean build
RUN cp /src/jar/hello.jar /root/
RUN cp -r /jdk/jre /root/
ENV JAVA_HOME /root/jre
ENV PATH /root/jre/bin:$PATH
CMD java -cp /root/hello.jar HelloWorld | CheggEng/dockerx | examples/external-gradle/Dockerfile | Dockerfile | apache-2.0 | 276 |
# AUTOGENERATED FILE
FROM balenalib/jetson-nano-2gb-devkit-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 ... | nghiant2710/base-images | balena-base-images/python/jetson-nano-2gb-devkit/debian/bullseye/3.5.10/build/Dockerfile | Dockerfile | apache-2.0 | 4,873 |
# AUTOGENERATED FILE
FROM balenalib/nanopi-neo-air-ubuntu:bionic-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 --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pg... | nghiant2710/base-images | balena-base-images/node/nanopi-neo-air/ubuntu/bionic/15.10.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,922 |
FROM ubuntu:16.04
# Install dependencies and some useful tools.
ENV DRAGONFLOW_PACKAGES git \
python-pip python-psutil python-subprocess32 \
python-dev libpython-dev
# Ignore questions when installing with apt-get:
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && apt-get i... | openstack/dragonflow | Dockerfile | Dockerfile | apache-2.0 | 690 |
# AUTOGENERATED FILE
FROM balenalib/qemux86-alpine:3.13-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 McVittie... | resin-io-library/base-images | balena-base-images/python/qemux86/alpine/3.13/3.6.15/build/Dockerfile | Dockerfile | apache-2.0 | 4,833 |
# AUTOGENERATED FILE
FROM balenalib/firefly-rk3288-debian:stretch-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 --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyse... | nghiant2710/base-images | balena-base-images/node/firefly-rk3288/debian/stretch/15.14.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,948 |
# AUTOGENERATED FILE
FROM balenalib/nuc-debian:bullseye-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 keyse... | nghiant2710/base-images | balena-base-images/node/nuc/debian/bullseye/12.22.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,942 |
FROM nikonyrh/spark_ocv_base
MAINTAINER Niko Nyrh "https://github.com/nikonyrh"
# to build: docker build -t nikonyrh/spark spark_cusom
RUN /bin/bash -c "source /py3/bin/activate && pip install msgpack-python"
| nikonyrh/docker-scripts | legacy/spark_custom/Dockerfile | Dockerfile | apache-2.0 | 212 |
FROM ubuntu:14.04
MAINTAINER Haishi Bai <hbai@microsoft.com>
RUN apt-get update
RUN apt-get -qq update
RUN apt-get install -y nodejs npm
RUN update-alternatives --install /usr/bin/node node /usr/bin/nodejs 10
RUN npm install express
| HaishiBai/omdo | nodejs/Dockerfile | Dockerfile | apache-2.0 | 233 |
# AUTOGENERATED FILE
FROM balenalib/colibri-imx6-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/colibri-imx6/debian/jessie/10.24.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,789 |
# AUTOGENERATED FILE
FROM balenalib/generic-alpine:3.11-run
ENV NODE_VERSION 15.14.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 \
6A010C5166006599AA... | nghiant2710/base-images | balena-base-images/node/generic/alpine/3.11/15.14.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,029 |
FROM balenalib/armv7hf-alpine:3.15-run
LABEL io.balena.device-type="hummingboard"
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 (... | resin-io-library/base-images | balena-base-images/device-base/hummingboard/alpine/3.15/run/Dockerfile | Dockerfile | apache-2.0 | 1,017 |
# AUTOGENERATED FILE
FROM balenalib/orbitty-tx2-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... | resin-io-library/base-images | balena-base-images/python/orbitty-tx2/ubuntu/bionic/3.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 4,831 |
# AUTOGENERATED FILE
FROM balenalib/nebra-hnt-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 \
python-pip \
python-dbus \
&& dnf clean all
# install "virtualenv", si... | nghiant2710/base-images | balena-base-images/python/nebra-hnt/fedora/31/2.7.18/build/Dockerfile | Dockerfile | apache-2.0 | 2,433 |
# AUTOGENERATED FILE
FROM balenalib/orangepi-plus2-debian:stretch-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/orangepi-plus2/debian/stretch/10.24.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,793 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-gateway-ubuntu:focal-run
ENV GO_VERSION 1.14.14
# 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 \
... | nghiant2710/base-images | balena-base-images/golang/beaglebone-green-gateway/ubuntu/focal/1.14.14/run/Dockerfile | Dockerfile | apache-2.0 | 2,368 |
FROM balenalib/aarch64-fedora:36-build
LABEL io.balena.device-type="jetson-xavier-nx-devkit-emmc"
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 im... | resin-io-library/base-images | balena-base-images/device-base/jetson-xavier-nx-devkit-emmc/fedora/36/build/Dockerfile | Dockerfile | apache-2.0 | 1,016 |
# AUTOGENERATED FILE
FROM balenalib/up-core-plus-debian:stretch-build
ENV NODE_VERSION 15.7.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/up-core-plus/debian/stretch/15.7.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,792 |
# AUTOGENERATED FILE
FROM balenalib/qemux86-ubuntu:eoan-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 ke... | nghiant2710/base-images | balena-base-images/python/qemux86/ubuntu/eoan/3.8.6/build/Dockerfile | Dockerfile | apache-2.0 | 4,824 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.