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 |
|---|---|---|---|---|---|
# GENERATED FROM Dockerfile.template-scm
FROM vicamo/buildpack-deps:sid-powerpc-curl
# procps is very common in build systems, and is a reasonably small package
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
git \
mercurial \
openssh-client \
subversion \
\
procps \
&& apt-get clean... | vicamo/docker-buildpack-deps | sid/powerpc/scm/Dockerfile | Dockerfile | mit | 363 |
FROM arupiot/ishiki-base:latest
RUN [ "cross-build-start" ]
WORKDIR /opt/ishiki
# install code
COPY deskcontrol /opt/ishiki/deskcontrol
CMD ["python", "-u", "deskcontrol/controller.py"]
RUN [ "cross-build-end" ]
| arupiot/deskcontrol | Dockerfile | Dockerfile | mit | 217 |
FROM ubuntu:latest
# Install Docker prerequisites
RUN apt-get update -qq && apt-get install -qqy \
curl \
bash \
linux-image-extra-$(uname -r) \
apt-transport-https \
ca-certificates \
lxc \
iptables
# Install Docker
RUN curl -sSL https://get.docker.com/ | sh
# Install Node and NPM
RUN cu... | matthewborders/dockerception-npm | Dockerfile | Dockerfile | mit | 501 |
FROM mcr.microsoft.com/dotnet/core/aspnet:3.0-buster-slim AS base
WORKDIR /app
EXPOSE 80
EXPOSE 443
FROM mcr.microsoft.com/dotnet/core/sdk:3.0-buster AS build
WORKDIR /src
COPY ["FrontEnd/FrontEnd.csproj", "FrontEnd/"]
COPY ["ConferenceDTO/ConferenceDTO.csproj", "ConferenceDTO/"]
RUN dotnet restore "FrontEnd/... | csharpfritz/aspnetcore-app-workshop | save-points/6-Deployment-docker/ConferencePlanner/FrontEnd/Dockerfile | Dockerfile | mit | 633 |
###### repository server (nginx)
FROM qnib/supervisor
MAINTAINER "Christian Kniep <christian@qnib.org>"
VOLUME /videos/input
VOLUME /videos/output
CMD /bin/supervisord -c /etc/supervisord.conf
| ChristianKniep/docker-convert | Dockerfile | Dockerfile | mit | 195 |
FROM node:4-onbuild
MAINTAINER gaubee
EXPOSE 80
| Gaubee/jhs | Dockerfile | Dockerfile | mit | 53 |
ARG NODE_VERSION=8
FROM node:${NODE_VERSION}-stretch
MAINTAINER nathan.rollins@asu.edu
RUN apt-get update -qq && \
yarn global add gulp-cli
# Define where our application will live inside the image
ENV APP_ROOT /app
# Create application home.
RUN mkdir -p $APP_ROOT
# Set our working directory inside the ima... | gios-asu/ASU-Web-Standards-Bootstrap | Dockerfile | Dockerfile | mit | 609 |
FROM python:latest
WORKDIR /app
ADD . /app
RUN pip install -r ./docker/api/requirements.txt
CMD ["python", "-m", "api"]
| FrostLuma/Mousey | docker/api/Dockerfile | Dockerfile | mit | 123 |
FROM debian:stretch
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
RUN apt-get update && apt-get install -y \
ca-certificates \
gcc \
git \
libncurses5 \
libncurses5-dev \
libncursesw5 \
libncursesw5-dev \
make \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
RUN git clone --depth 1 --recursi... | alanbrent/dockerfiles | mdp/Dockerfile | Dockerfile | mit | 482 |
FROM nodesource/vivid-base
MAINTAINER William Blankenship <wblankenship@nodesource.com>
RUN curl https://deb.nodesource.com/node_5.x/pool/main/n/nodejs/nodejs_5.5.0-1nodesource1~vivid1_amd64.deb > node.deb \
&& dpkg -i node.deb \
&& rm node.deb
RUN npm install -g pangyp\
&& ln -s $(which pangyp) $(dirname $(which ... | nodesource/docker-node | ubuntu/vivid/node/5.5.0/Dockerfile | Dockerfile | mit | 551 |
# AUTOGENERATED FILE
FROM balenalib/var-som-mx6-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 dep... | nghiant2710/base-images | balena-base-images/python/var-som-mx6/debian/stretch/3.8.6/run/Dockerfile | Dockerfile | apache-2.0 | 4,096 |
FROM ubuntu:15.10
RUN apt-get update -y
# Install FFMPEG
ENV FFMPEG_VERSION=2.7.1 \
X264_VERSION=snapshot-20150627-2245-stable
RUN apt-get update \
&& apt-get install -y bzip2 libgnutls-deb0-28 libogg0 libjpeg8 libpng12-0 \
libvpx2 libtheora0 libxvidcore4 libmpeg2-4 \
libvorbis0a libfaad2 libmp3lame... | linkthrow/docker-ffmpeg | Dockerfile | Dockerfile | apache-2.0 | 621 |
# AUTOGENERATED FILE
FROM balenalib/aio-3288c-debian:sid-run
ENV GO_VERSION 1.17.7
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
&& apt-get up... | resin-io-library/base-images | balena-base-images/golang/aio-3288c/debian/sid/1.17.7/run/Dockerfile | Dockerfile | apache-2.0 | 2,347 |
#
# See the top level Makefile in https://github.com/docker/docker for usage.
#
FROM docs/base:latest
MAINTAINER Sven Dowideit <SvenDowideit@docker.com> (@SvenDowideit)
# This section ensures we pull the correct version of each
# sub project
ENV COMPOSE_BRANCH release
ENV SWARM_BRANCH v0.1.0
ENV MACHINE_BRANCH v0.1.0
... | qilong0/docker | docs/Dockerfile | Dockerfile | apache-2.0 | 6,649 |
# AUTOGENERATED FILE
FROM balenalib/apalis-imx6-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 McVi... | nghiant2710/base-images | balena-base-images/python/apalis-imx6/alpine/edge/3.9.4/build/Dockerfile | Dockerfile | apache-2.0 | 4,838 |
# AUTOGENERATED FILE
FROM balenalib/generic-armv7ahf-debian:bullseye-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/generic-armv7ahf/debian/bullseye/12.22.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,797 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen6xq2g-ubuntu:bionic-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... | nghiant2710/base-images | balena-base-images/node/nitrogen6xq2g/ubuntu/bionic/12.20.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,921 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen8mm-alpine:3.11-run
ENV NODE_VERSION 14.16.1
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 \
6A010C51660065... | nghiant2710/base-images | balena-base-images/node/nitrogen8mm/alpine/3.11/14.16.1/run/Dockerfile | Dockerfile | apache-2.0 | 3,026 |
# AUTOGENERATED FILE
FROM balenalib/artik533s-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 depen... | nghiant2710/base-images | balena-base-images/python/artik533s/debian/stretch/3.9.4/run/Dockerfile | Dockerfile | apache-2.0 | 4,094 |
FROM balenalib/aarch64-debian:stretch-run
LABEL io.balena.device-type="srd3-tx2"
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 ] && mkdir ... | nghiant2710/base-images | balena-base-images/device-base/srd3-tx2/debian/stretch/run/Dockerfile | Dockerfile | apache-2.0 | 1,089 |
# AUTOGENERATED FILE
FROM balenalib/via-vab820-quad-alpine:3.11-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 ]... | nghiant2710/base-images | balena-base-images/golang/via-vab820-quad/alpine/3.11/1.14.14/run/Dockerfile | Dockerfile | apache-2.0 | 2,474 |
FROM balenalib/aarch64-ubuntu:hirsute-build
LABEL io.balena.device-type="photon-tx2-nx"
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 ] &&... | resin-io-library/base-images | balena-base-images/device-base/photon-tx2-nx/ubuntu/hirsute/build/Dockerfile | Dockerfile | apache-2.0 | 1,098 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen8mm-ubuntu:bionic-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.pgp.c... | nghiant2710/base-images | balena-base-images/node/nitrogen8mm/ubuntu/bionic/10.24.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,915 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi3-alpine:3.11-build
ENV GO_VERSION 1.16.3
# 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/raspberrypi3/alpine/3.11/1.16.3/build/Dockerfile | Dockerfile | apache-2.0 | 2,339 |
# AUTOGENERATED FILE
FROM balenalib/ts4900-debian:stretch-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" || \
gpg ... | nghiant2710/base-images | balena-base-images/node/ts4900/debian/stretch/10.24.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,785 |
# AUTOGENERATED FILE
FROM balenalib/up-squared-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/up-squared/ubuntu/focal/3.1-aspnet/run/Dockerfile | Dockerfile | apache-2.0 | 3,172 |
# AUTOGENERATED FILE
FROM balenalib/revpi-connect-debian:bullseye-run
ENV GO_VERSION 1.16
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
&& apt... | nghiant2710/base-images | balena-base-images/golang/revpi-connect/debian/bullseye/1.16/run/Dockerfile | Dockerfile | apache-2.0 | 2,357 |
FROM ubuntu:14.04
MAINTAINER cternes <github@slackspace.de>
# Install java
RUN apt-get update && \
apt-get install -y openjdk-7-jre-headless && \
rm -rf /var/lib/apt/lists/*
# Deploy application
ADD alfa-bin.tar.gz /opt/
# Change to directory
WORKDIR /opt/alfa
# Replace config
COPY alfa.properties /opt/alfa/conf/... | cternes/alfa | src/main/docker/Dockerfile | Dockerfile | apache-2.0 | 510 |
# AUTOGENERATED FILE
FROM balenalib/odroid-u3+-ubuntu:focal-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-get... | nghiant2710/base-images | balena-base-images/golang/odroid-u3+/ubuntu/focal/1.16.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,352 |
ARG base_image=alpine:latest
ARG builder_image=concourse/golang-builder
FROM ${builder_image} as builder
WORKDIR /src
COPY go.mod .
COPY go.sum .
RUN go mod download
COPY . .
ENV CGO_ENABLED 0
RUN go build -o /assets/hgresource ./hgresource
RUN set -e; for pkg in $(go list ./...); do \
go test -o "/tests/$(basenam... | concourse/hg-resource | dockerfiles/alpine/Dockerfile | Dockerfile | apache-2.0 | 1,060 |
# AUTOGENERATED FILE
FROM balenalib/hummingboard-ubuntu:cosmic-run
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# install python dep... | nghiant2710/base-images | balena-base-images/python/hummingboard/ubuntu/cosmic/3.9.4/run/Dockerfile | Dockerfile | apache-2.0 | 4,071 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx1-ubuntu:focal-build
ENV NODE_VERSION 15.7.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver ha.... | nghiant2710/base-images | balena-base-images/node/jetson-tx1/ubuntu/focal/15.7.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,755 |
# AUTOGENERATED FILE
FROM balenalib/apalis-imx6q-ubuntu:cosmic-build
ENV NODE_VERSION 10.24.1
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver... | nghiant2710/base-images | balena-base-images/node/apalis-imx6q/ubuntu/cosmic/10.24.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,765 |
# AUTOGENERATED FILE
FROM balenalib/jetson-nano-emmc-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.
#
# ... | resin-io-library/base-images | balena-base-images/openjdk/jetson-nano-emmc/debian/bullseye/16-jdk/build/Dockerfile | Dockerfile | apache-2.0 | 3,030 |
FROM node:boron
WORKDIR /usr/src/registrationservice
COPY package.json /usr/src/registrationservice
COPY package-lock.json /usr/src/registrationservice
RUN npm install
COPY ./src/ /usr/src/registrationservice
EXPOSE 80
CMD [ "node", "./src/main.js" ]
| vScherb/ServiceRegistration | Dockerfile | Dockerfile | apache-2.0 | 254 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi3-64-ubuntu:disco-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: ... | nghiant2710/base-images | balena-base-images/python/raspberrypi3-64/ubuntu/disco/3.7.9/build/Dockerfile | Dockerfile | apache-2.0 | 4,834 |
# AUTOGENERATED FILE
FROM balenalib/ccimx8x-sbc-pro-ubuntu:xenial-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.p... | nghiant2710/base-images | balena-base-images/node/ccimx8x-sbc-pro/ubuntu/xenial/10.24.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,919 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx1-debian:bullseye-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/jetson-tx1/debian/bullseye/10.24.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,942 |
# AUTOGENERATED FILE
FROM balenalib/qemux86-64-debian:sid-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" || \
gpg ... | nghiant2710/base-images | balena-base-images/node/qemux86-64/debian/sid/14.15.4/build/Dockerfile | Dockerfile | apache-2.0 | 2,784 |
# AUTOGENERATED FILE
FROM balenalib/surface-go-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... | resin-io-library/base-images | balena-base-images/python/surface-go/debian/buster/3.10.2/run/Dockerfile | Dockerfile | apache-2.0 | 4,098 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi400-64-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 pytho... | resin-io-library/base-images | balena-base-images/python/raspberrypi400-64/ubuntu/bionic/3.7.12/run/Dockerfile | Dockerfile | apache-2.0 | 4,074 |
# base-image for python on any machine using a template variable,
# see more about dockerfile templates here:http://docs.resin.io/pages/deployment/docker-templates
FROM resin/%%RESIN_MACHINE_NAME%%-python
RUN apt-get update && apt-get install build-essential cmake pkg-config \
libjpeg8-dev libtiff5-dev libjasper-dev... | bears34egc/camera_identify | Dockerfile | Dockerfile | apache-2.0 | 1,825 |
# AUTOGENERATED FILE
FROM balenalib/asus-tinker-board-alpine:3.10-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 ... | nghiant2710/base-images | balena-base-images/python/asus-tinker-board/alpine/3.10/3.8.6/run/Dockerfile | Dockerfile | apache-2.0 | 4,137 |
# AUTOGENERATED FILE
FROM balenalib/apalis-imx6-debian:sid-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 ke... | nghiant2710/base-images | balena-base-images/node/apalis-imx6/debian/sid/14.16.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,937 |
# AUTOGENERATED FILE
FROM balenalib/aio-3288c-ubuntu:disco-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 --keyserver ha.... | nghiant2710/base-images | balena-base-images/node/aio-3288c/ubuntu/disco/15.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,760 |
# AUTOGENERATED FILE
FROM balenalib/intel-edison-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: ... | nghiant2710/base-images | balena-base-images/python/intel-edison/debian/bullseye/3.6.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,863 |
# AUTOGENERATED FILE
FROM balenalib/up-squared-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 ] && ec... | nghiant2710/base-images | balena-base-images/golang/up-squared/alpine/3.11/1.15.8/run/Dockerfile | Dockerfile | apache-2.0 | 2,474 |
# AUTOGENERATED FILE
FROM balenalib/up-core-fedora:31-build
ENV NODE_VERSION 15.7.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver ha.pool.s... | nghiant2710/base-images | balena-base-images/node/up-core/fedora/31/15.7.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,755 |
# AUTOGENERATED FILE
FROM balenalib/etcher-pro-alpine:3.13-build
ENV NODE_VERSION 14.16.1
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/etcher-pro/alpine/3.13/14.16.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,957 |
# AUTOGENERATED FILE
FROM balenalib/photon-xavier-nx-alpine:3.11-run
ENV GO_VERSION 1.16.3
# 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/3.11/1.16.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,473 |
# AUTOGENERATED FILE
FROM balenalib/nanopi-neo-air-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 d... | nghiant2710/base-images | balena-base-images/python/nanopi-neo-air/ubuntu/bionic/3.7.9/run/Dockerfile | Dockerfile | apache-2.0 | 4,073 |
# AUTOGENERATED FILE
FROM balenalib/isg-503-debian:bookworm-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 some sa... | resin-io-library/base-images | balena-base-images/openjdk/isg-503/debian/bookworm/11-jre/run/Dockerfile | Dockerfile | apache-2.0 | 3,733 |
# AUTOGENERATED FILE
FROM balenalib/apalis-imx6-ubuntu:xenial-build
ENV NODE_VERSION 16.14.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 ... | resin-io-library/base-images | balena-base-images/node/apalis-imx6/ubuntu/xenial/16.14.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,758 |
# AUTOGENERATED FILE
FROM balenalib/colibri-imx6dl-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... | resin-io-library/base-images | balena-base-images/python/colibri-imx6dl/alpine/3.12/3.7.12/run/Dockerfile | Dockerfile | apache-2.0 | 4,132 |
# AUTOGENERATED FILE
FROM balenalib/imx7-var-som-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/imx7-var-som/alpine/3.12/3.9.4/run/Dockerfile | Dockerfile | apache-2.0 | 4,132 |
# AUTOGENERATED FILE
FROM balenalib/up-squared-debian:bullseye-run
ENV GO_VERSION 1.17.7
# 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-... | resin-io-library/base-images | balena-base-images/golang/up-squared/debian/bullseye/1.17.7/run/Dockerfile | Dockerfile | apache-2.0 | 2,344 |
FROM debian
RUN echo "deb http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main" | tee /etc/apt/sources.list.d/webupd8team-java.list
RUN echo "deb-src http://ppa.launchpad.net/webupd8team/java/ubuntu trusty main" | tee -a /etc/apt/sources.list.d/webupd8team-java.list
RUN apt-key adv --keyserver hkp://keyserver.... | elodina/collectd-framework | Dockerfile | Dockerfile | apache-2.0 | 858 |
# Build with:
# docker build -t ogrisel/openblas .
FROM ubuntu:14.04
MAINTAINER Olivier Grisel <olivier.grisel@ensta.org>
ADD openblas.conf /etc/ld.so.conf.d/openblas.conf
ADD build_openblas.sh build_openblas.sh
RUN bash build_openblas.sh
| ogrisel/docker-openblas | Dockerfile | Dockerfile | bsd-2-clause | 240 |
FROM gcr.io/google-appengine/python
LABEL python_version=python3.5
RUN virtualenv --no-download /env -p python3.5
# Set virtualenv environment variables. This is equivalent to running
# source /env/bin/activate
ENV VIRTUAL_ENV /env
ENV PATH /env/bin:$PATH
ADD requirements.txt /app/
RUN pip install -r requirements.txt
... | captify-nzavgorodnii/twitter_data | Dockerfile | Dockerfile | bsd-3-clause | 369 |
FROM ubuntu:19.10
WORKDIR /h2o_app_src
COPY ./ ./
RUN apt update && \
apt install -yqq autoconf bison cmake curl file flex g++ git libnuma-dev libpq-dev libssl-dev \
libtool libyajl-dev libz-dev make wget
### Install mustache-c
ENV MUSTACHE_C_REVISION=c1948c599edfe48c6099ed70ab1d5911d8c3ddc... | stefanocasazza/FrameworkBenchmarks | frameworks/C/h2o/h2o.dockerfile | Dockerfile | bsd-3-clause | 1,353 |
FROM docku/build
MAINTAINER Jon Chen <bsd@voltaire.sh>
ENV BINTRAY_USER "jchen"
ENV BINTRAY_TOKEN ""
ENV BINTRAY_REPO "docku"
RUN pacman -Syu --needed --noconfirm go
ADD build_makefile /root/Makefile
CMD ["make", "-f", "/root/Makefile", "all"]
| dockU/certstrap | meta/Dockerfile | Dockerfile | mit | 246 |
FROM debian:jessie
# Let's install nginx from source!
# Setup build
WORKDIR /tmp/nginx
RUN apt-get -y update && apt-get -y install build-essential
# Get nginx's and ngx_http_substitutions_filter_module's source
ADD http://nginx.org/download/nginx-1.9.5.tar.gz nginx-1.9.5.tar.gz
ADD https://github.com/yaoweibin/ngx_h... | hackclub/surrogate | Dockerfile | Dockerfile | mit | 1,048 |
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%magnum-base:%%KOLLA_TAG%%
MAINTAINER Kolla Project (https://launchpad.net/kolla)
RUN yum -y install \
openstack-magnum-conductor \
tar \
&& yum clean all
# Install kubectl binary (ugh)
RUN cd /tmp && curl -L https://github.com/GoogleCloudPlatform/kubernetes/release... | meticulo3366/kolla | docker/centos/binary/magnum/magnum-conductor/Dockerfile | Dockerfile | apache-2.0 | 628 |
# AUTOGENERATED FILE
FROM balenalib/am571x-evm-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 some ... | nghiant2710/base-images | balena-base-images/openjdk/am571x-evm/debian/stretch/11-jre/run/Dockerfile | Dockerfile | apache-2.0 | 3,851 |
FROM redis
EXPOSE 6379
| rjrodger/seneca-redis-transport | docker/Dockerfile | Dockerfile | mit | 24 |
FROM qixtand/debian-jessie-buildpack
# skip installing gem documentation
RUN mkdir -p /usr/local/etc \
&& { \
echo 'install: --no-document'; \
echo 'update: --no-document'; \
} >> /usr/local/etc/gemrc
ENV RUBY_MAJOR 2.2
ENV RUBY_VERSION 2.2.3
ENV RUBY_DOWNLOAD_SHA256 c6ec90e9ed018e6d9a578fc93755d8565839908d5796... | qixtand/qixtand | debian/jessie/ruby/2.2.3/Dockerfile | Dockerfile | mit | 2,156 |
FROM debian
ENV DISPLAY :0
RUN apt-get update && apt-get install -y tk git
RUN git clone https://github.com/phil294/tkbash
COPY guibuilder.sh .
RUN ln -s /tkbash/tkbash /bin
CMD ./guibuilder.sh | phil294/tkbash | docker/Dockerfile | Dockerfile | mit | 193 |
FROM ubuntu:latest
# Install python and pip using miniconda
RUN apt-get -qq update && apt-get -qq -y install curl bzip2 wget \
&& curl -sSL https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -o /tmp/miniconda.sh \
&& bash /tmp/miniconda.sh -bfp /usr/local \
&& rm -rf /tmp/miniconda.sh \
... | KshitijKarthick/tvecs | Dockerfile | Dockerfile | mit | 1,848 |
FROM nginx
COPY dist /usr/share/nginx/html
COPY docker/nginx.conf /etc/nginx/nginx.conf
# Set the command to start the node server.
CMD echo "{ \
\"BACKEND_SERVER_URL\": \"${GEOWEBBACKENDURL}\", \
\"BACKEND_SERVER_XML2JSON\": \"${XML2JSONPROXY}\" \
}" > usr/share/nginx/html/urls.json \
&& nginx -g 'daemon off;'... | KNMI/GeoWeb-FrontEnd | Dockerfile | Dockerfile | mit | 321 |
# Base Vagrant box
FROM ubuntu-upstart:precise
MAINTAINER Fabio Rehm "fgrehm@gmail.com"
# Create and configure vagrant user
RUN useradd --create-home -s /bin/bash vagrant
WORKDIR /home/vagrant
# Configure SSH access
RUN mkdir -p /home/vagrant/.ssh
RUN echo "ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEA6NF8iallvQVp22WDkTkyrtv... | fgrehm/docker-provider | boxes/precise/Dockerfile | Dockerfile | mit | 1,809 |
FROM google/golang
WORKDIR /gopath/src/github.com/flyinprogrammer/ec2metaproxy
ADD . /gopath/src/github.com/flyinprogrammer/ec2metaproxy
RUN go get github.com/flyinprogrammer/ec2metaproxy/cmd/ec2metaproxy
CMD []
ENTRYPOINT ["/gopath/bin/ec2metaproxy"] | flyinprogrammer/ec2metaproxy | Dockerfile | Dockerfile | mit | 253 |
#
# Image used to download, compile and run Ceylon sources in a very simple way
#
FROM ceylon/ceylon:1.3.1-jre8-redhat
MAINTAINER Tako Schotanus <tako@ceylon-lang.org>
LABEL org.ceylon-lang.dockerfile.description="Image used to download, compile and run Ceylon sources in a very simple way" \
org.ceylon-lang.docke... | ceylon-docker/source-runner | 1.3.1/1.3.1-jre8/Dockerfile | Dockerfile | apache-2.0 | 483 |
# AUTOGENERATED FILE
FROM balenalib/coral-dev-ubuntu:bionic-build
ENV NODE_VERSION 14.15.4
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver ha... | nghiant2710/base-images | balena-base-images/node/coral-dev/ubuntu/bionic/14.15.4/build/Dockerfile | Dockerfile | apache-2.0 | 2,758 |
# AUTOGENERATED FILE
FROM balenalib/jetson-nano-fedora:32-run
ENV NODE_VERSION 14.16.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.poo... | nghiant2710/base-images | balena-base-images/node/jetson-nano/fedora/32/14.16.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,750 |
FROM golang:1.4.0-wheezy
MAINTAINER EMCCODE
WORKDIR /output
ENTRYPOINT go clean -i net && go install -tags netgo std && CGO_ENABLED=0 go get -a -ldflags '-s' $REPO_PATH && cp -f $GOPATH/bin/* /output/.
| marsmensch/Docker-golang_build_from_repo | Dockerfile | Dockerfile | apache-2.0 | 208 |
FROM nginx:1.21.4
RUN apt-get update \
&& apt-get install -y \
apache2-utils \
&& rm -rf /var/lib/apt/lists/*
COPY nginx.conf /etc/nginx/nginx.conf.template
COPY *.html /usr/share/nginx/html/
COPY entrypoint.sh /
ENTRYPOINT ["/entrypoint.sh"]
CMD ["nginx", "-g", "daemon off;"]
| stencila/hub | router/Dockerfile | Dockerfile | apache-2.0 | 289 |
# AUTOGENERATED FILE
FROM balenalib/spacely-tx2-fedora:32-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", ... | nghiant2710/base-images | balena-base-images/python/spacely-tx2/fedora/32/3.5.10/run/Dockerfile | Dockerfile | apache-2.0 | 2,434 |
# AUTOGENERATED FILE
FROM balenalib/photon-xavier-nx-alpine:3.15-build
ENV GO_VERSION 1.16.14
# set up nsswitch.conf for Go's "netgo" implementation
# - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275
# - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf
RUN [ ! -e /etc/nsswitch.con... | resin-io-library/base-images | balena-base-images/golang/photon-xavier-nx/alpine/3.15/1.16.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,345 |
# AUTOGENERATED FILE
FROM balenalib/kitra710-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 dependen... | nghiant2710/base-images | balena-base-images/python/kitra710/ubuntu/focal/3.8.6/run/Dockerfile | Dockerfile | apache-2.0 | 4,065 |
# Copyright 2019 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 ... | kubernetes/git-sync | _test_tools/ncsvr/Dockerfile | Dockerfile | apache-2.0 | 1,014 |
# AUTOGENERATED FILE
FROM balenalib/orangepi-plus2-ubuntu:xenial-build
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: ... | resin-io-library/base-images | balena-base-images/python/orangepi-plus2/ubuntu/xenial/3.9.7/build/Dockerfile | Dockerfile | apache-2.0 | 4,832 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen8mm-debian:sid-run
ENV GO_VERSION 1.17.7
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
&& apt-get ... | resin-io-library/base-images | balena-base-images/golang/nitrogen8mm/debian/sid/1.17.7/run/Dockerfile | Dockerfile | apache-2.0 | 2,320 |
# AUTOGENERATED FILE
FROM balenalib/genericx86-64-ext-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: ... | resin-io-library/base-images | balena-base-images/python/genericx86-64-ext/debian/sid/3.9.7/build/Dockerfile | Dockerfile | apache-2.0 | 4,860 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypicm4-ioboard-alpine:3.12-run
ENV NODE_VERSION 14.16.1
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 \
6A0... | nghiant2710/base-images | balena-base-images/node/raspberrypicm4-ioboard/alpine/3.12/14.16.1/run/Dockerfile | Dockerfile | apache-2.0 | 3,037 |
# AUTOGENERATED FILE
FROM balenalib/etcher-pro-ubuntu:disco-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.... | nghiant2710/base-images | balena-base-images/node/etcher-pro/ubuntu/disco/15.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,755 |
# AUTOGENERATED FILE
FROM balenalib/up-core-plus-debian:jessie-run
ENV GO_VERSION 1.15.11
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
&& apt... | nghiant2710/base-images | balena-base-images/golang/up-core-plus/debian/jessie/1.15.11/run/Dockerfile | Dockerfile | apache-2.0 | 2,344 |
# AUTOGENERATED FILE
FROM balenalib/imx8mm-var-dart-debian:bookworm-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/imx8mm-var-dart/debian/bookworm/14.18.3/build/Dockerfile | Dockerfile | apache-2.0 | 2,786 |
# AUTOGENERATED FILE
FROM balenalib/jetson-nano-emmc-alpine:3.10-build
ENV NODE_VERSION 14.15.4
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 \
... | nghiant2710/base-images | balena-base-images/node/jetson-nano-emmc/alpine/3.10/14.15.4/build/Dockerfile | Dockerfile | apache-2.0 | 2,963 |
# AUTOGENERATED FILE
FROM balenalib/artik533s-fedora:30-run
RUN dnf -y update \
&& dnf clean all \
&& dnf -y install \
gzip \
java-11-openjdk \
java-11-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! Details... | nghiant2710/base-images | balena-base-images/openjdk/artik533s/fedora/30/11-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 1,310 |
# AUTOGENERATED FILE
FROM balenalib/photon-xavier-nx-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/photon-xavier-nx/alpine/3.11/3.9.1/build/Dockerfile | Dockerfile | apache-2.0 | 4,843 |
FROM buildpack-deps:trusty-curl
MAINTAINER Sebastian Otaegui <feniix@gmail.com>
ENV JAVA_VERSION_MAJOR 8
ENV JAVA_VERSION_MINOR 60
ENV JAVA_VERSION_BUILD 27
ENV JAVA_PACKAGE jdk
RUN apt-get update &&\
DEBIAN_FRONTEND=noninteractive apt-get install -y wget curl &&\
rm -rf /tmp/* /var/tmp/* &&\
rm -rf /var/... | Spantree/ubuntu-oraclejdk8 | Dockerfile | Dockerfile | apache-2.0 | 1,943 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi2-ubuntu:cosmic-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.pgp.... | nghiant2710/base-images | balena-base-images/node/raspberrypi2/ubuntu/cosmic/14.15.4/run/Dockerfile | Dockerfile | apache-2.0 | 2,920 |
# AUTOGENERATED FILE
FROM balenalib/artik710-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: public... | nghiant2710/base-images | balena-base-images/python/artik710/debian/buster/3.5.10/build/Dockerfile | Dockerfile | apache-2.0 | 4,855 |
# AUTOGENERATED FILE
FROM balenalib/rockpi-4b-rk3399-ubuntu:impish-run
ENV GO_VERSION 1.17.7
# 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 \
' \
&& ... | resin-io-library/base-images | balena-base-images/golang/rockpi-4b-rk3399/ubuntu/impish/1.17.7/run/Dockerfile | Dockerfile | apache-2.0 | 2,331 |
# AUTOGENERATED FILE
FROM balenalib/odroid-ux3-alpine:3.13-build
ENV NODE_VERSION 15.10.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/odroid-ux3/alpine/3.13/15.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,957 |
# AUTOGENERATED FILE
FROM balenalib/nanopi-neo-air-debian:jessie-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" || \... | nghiant2710/base-images | balena-base-images/node/nanopi-neo-air/debian/jessie/14.16.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,791 |
# AUTOGENERATED FILE
FROM balenalib/photon-nano-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/photon-nano/debian/bookworm/3.1-aspnet/run/Dockerfile | Dockerfile | apache-2.0 | 3,134 |
# AUTOGENERATED FILE
FROM balenalib/odroid-u3+-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 \
libicu57 \
liblttng-ust0 \... | nghiant2710/base-images | balena-base-images/dotnet/odroid-u3+/debian/bullseye/2.1-sdk/run/Dockerfile | Dockerfile | apache-2.0 | 2,969 |
# AUTOGENERATED FILE
FROM balenalib/ts4900-fedora:36-run
ENV NODE_VERSION 12.22.9
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 keyserver.u... | resin-io-library/base-images | balena-base-images/node/ts4900/fedora/36/12.22.9/run/Dockerfile | Dockerfile | apache-2.0 | 2,743 |
# AUTOGENERATED FILE
FROM balenalib/imx8mm-var-dart-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 \
' \
&& a... | nghiant2710/base-images | balena-base-images/golang/imx8mm-var-dart/ubuntu/focal/1.14.14/run/Dockerfile | Dockerfile | apache-2.0 | 2,330 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.