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 postgres
MAINTAINER Victor Hugo <victor.hugo.origins@gmail.com>
ENV POSTGRES_USER postgres
ENV POSTGRES_PASSWORD 123456
ENV POSTGRES_DB client
| ifpb-disciplinas-2016-2/pos-atv-microservices | client/postgres/Dockerfile | Dockerfile | mit | 148 |
FROM maven:3-jdk-11
LABEL maintainer="base2Services"
LABEL source="https://github.com/base2Services/build-containers/tree/master/maven-jdk11"
RUN apt-get update && apt-get install protobuf-compiler gettext -y
RUN \
curl -O http://repo1.maven.org/maven2/io/takari/aether/takari-local-repository/0.11.3/takari-local... | base2Services/build-containers | maven-jdk11/Dockerfile | Dockerfile | mit | 616 |
FROM centos
RUN yum install -y stunnel
ADD stunnel.conf /etc/stunnel/stunnel.conf
ADD stunnel.pem /etc/stunnel/stunnel.pem
CMD /usr/bin/stunnel /etc/stunnel/stunnel.conf
| giant35/docker-stunnel-client | Dockerfile | Dockerfile | mit | 170 |
FROM ruby:2.1-alpine
MAINTAINER Fábio Uechi <fabio.uechi@gmail.com>
RUN apk add --update build-base libffi-dev
RUN gem install travis -v 1.8.5 --no-rdoc --no-ri
ENTRYPOINT ["/usr/local/bundle/bin/travis"]
CMD ["version"]
| smartcanvas/docker-ruby-travis-cli | Dockerfile | Dockerfile | mit | 228 |
FROM ruby:2.1
MAINTAINER pradeep@seleniumframework.com
# Env
ENV PHANTOMJS_VERSION 1.9.7
# Install phantomjs and set in path
RUN apt-get update && \
apt-get install -y vim git wget libfreetype6 libfontconfig bzip2
# Install bundler package manager for gems
RUN gem install bundler -v 1.12.1
#Enable as jenkins sl... | machzqcq/docker-developer | acceptance_tests/ruby21_jenkins_slave.dockerfile | Dockerfile | mit | 898 |
FROM ruby:2.3
COPY . /app
WORKDIR /app
RUN bin/setup \
&& rake install
ENTRYPOINT ["zd_search"]
| weynsee/zd_search | Dockerfile | Dockerfile | mit | 99 |
FROM nodesource/fedora23-base
MAINTAINER William Blankenship <wblankenship@nodesource.com>
RUN curl -sL -o ns.rpm https://rpm.nodesource.com/pub_5.x/fc/23/x86_64/nodejs-5.10.1-1nodesource.fc23.x86_64.rpm \
&& rpm -i --nosignature --force ns.rpm \
&& rm -f ns.rpm
RUN npm install -g pangyp\
&& ln -s $(which pangyp) ... | nodesource/docker-node | fedora/23/node/5.10.1/Dockerfile | Dockerfile | mit | 477 |
ARG ALPINE_VERSION=latest
FROM alpine:${ALPINE_VERSION} as build
ARG SASL_XOAUTH2_REPO_URL=https://github.com/tarickb/sasl-xoauth2.git
ARG SASL_XOAUTH2_GIT_REF=release-0.9
RUN true && \
apk add --no-cache --upgrade git && \
apk add --no-cache --upgrade cmake clang make gcc g++ libc-dev pk... | bokysan/docker-postfix | unit-tests/Dockerfile | Dockerfile | mit | 1,586 |
FROM node:9.3.0
ENV HOME /r2
WORKDIR $HOME
COPY package.json package-lock.json $HOME/
RUN npm install
COPY . $HOME
CMD npm start
| bitrinjani/r2 | Dockerfile | Dockerfile | mit | 132 |
FROM node:7.4.0
RUN useradd --user-group --shell /bin/false app && \
mkdir /app
WORKDIR /app
# Copy package.json.
COPY package.json /app
# Install dependencies.
RUN npm install --production --silent --progress=false && \
npm cache clean --silent --progress=false
# Copy the full application.
COPY . /app
# ... | reticle/router-service | Dockerfile | Dockerfile | mit | 570 |
FROM ubuntu:wily
MAINTAINER William Blankenship <wblankenship@nodesource.com>
RUN apt-get update \
&& apt-get install -y --force-yes --no-install-recommends\
apt-transport-https \
ssh-client \
build-essential \
curl \
ca-certificates \
git \
libicu-dev \
'libicu[0-9][0-... | nodesource/docker-node | base/ubuntu/wily/Dockerfile | Dockerfile | mit | 414 |
FROM yamishi/docker-rbenv
MAINTAINER Roberto C Martinez <roberto.mtzarriaga@gmail.com>
RUN ~/.rbenv/bin/rbenv install 1.8.7-p375
RUN ~/.rbenv/bin/rbenv install 1.9.3-p551
RUN ~/.rbenv/bin/rbenv install jruby-1.6.8
RUN ~/.rbenv/bin/rbenv install jruby-1.7.17
| yamishi13/multi-ruby | Dockerfile | Dockerfile | mit | 263 |
FROM nodesource/trusty-base
MAINTAINER William Blankenship <wblankenship@nodesource.com>
RUN curl https://deb.nodesource.com/node_4.x/pool/main/n/nodejs/nodejs_4.4.4-1nodesource1~trusty1_amd64.deb > node.deb \
&& dpkg -i node.deb \
&& rm node.deb
RUN npm install -g pangyp\
&& ln -s $(which pangyp) $(dirname $(whic... | nodesource/docker-node | ubuntu/trusty/node/4.4.4/Dockerfile | Dockerfile | mit | 553 |
### Get packages and updates for our base image
FROM ubuntu:14.04
MAINTAINER William Liu "william.q.liu@gmail.com"
ENV REFRESHED_AT 2015-03-14
# --yes to automatically answer 'y' when prompted 'Do you want to continue [y/N]'
# --force-yes when it asks for a manual confirmation if the package signature owner
# key isn'... | WilliamQLiu/job-waffle | Dockerfile | Dockerfile | apache-2.0 | 989 |
# AUTOGENERATED FILE
FROM balenalib/colibri-imx6-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 depe... | nghiant2710/base-images | balena-base-images/python/colibri-imx6/ubuntu/focal/3.9.4/run/Dockerfile | Dockerfile | apache-2.0 | 4,069 |
# AUTOGENERATED FILE
FROM balenalib/photon-nano-alpine:3.13-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/photon-nano/alpine/3.13/1.14.13/run/Dockerfile | Dockerfile | apache-2.0 | 2,470 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypicm4-ioboard-debian:buster-run
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu57 \
liblt... | nghiant2710/base-images | balena-base-images/dotnet/raspberrypicm4-ioboard/debian/buster/2.1-runtime/run/Dockerfile | Dockerfile | apache-2.0 | 2,563 |
# AUTOGENERATED FILE
FROM balenalib/up-squared-ubuntu:eoan-build
ENV NODE_VERSION 12.21.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver ha.... | nghiant2710/base-images | balena-base-images/node/up-squared/ubuntu/eoan/12.21.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,762 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi-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/raspberrypi/debian/jessie/10.24.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,788 |
# AUTOGENERATED FILE
FROM balenalib/imx8m-var-dart-debian:jessie-build
ENV NODE_VERSION 15.14.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/imx8m-var-dart/debian/jessie/15.14.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,787 |
# AUTOGENERATED FILE
FROM balenalib/genericx86-64-ext-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 pyth... | nghiant2710/base-images | balena-base-images/python/genericx86-64-ext/debian/stretch/3.9.1/run/Dockerfile | Dockerfile | apache-2.0 | 4,109 |
# AUTOGENERATED FILE
FROM balenalib/blackboard-tx2-fedora:34-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 h... | nghiant2710/base-images | balena-base-images/node/blackboard-tx2/fedora/34/12.22.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,757 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen8mm-ubuntu:eoan-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-get... | nghiant2710/base-images | balena-base-images/golang/nitrogen8mm/ubuntu/eoan/1.15.8/run/Dockerfile | Dockerfile | apache-2.0 | 2,322 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen6xq2g-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 d... | nghiant2710/base-images | balena-base-images/python/nitrogen6xq2g/debian/stretch/3.5.10/run/Dockerfile | Dockerfile | apache-2.0 | 4,100 |
# AUTOGENERATED FILE
FROM balenalib/nanopc-t4-debian:sid-build
ENV NODE_VERSION 16.14.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 -... | resin-io-library/base-images | balena-base-images/node/nanopc-t4/debian/sid/16.14.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,770 |
# AUTOGENERATED FILE
FROM balenalib/imx8mm-var-dart-debian:buster-run
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu63 \
libssl1.1 \
... | resin-io-library/base-images | balena-base-images/dotnet/imx8mm-var-dart/debian/buster/3.1-aspnet/run/Dockerfile | Dockerfile | apache-2.0 | 3,134 |
# AUTOGENERATED FILE
FROM balenalib/parallella-fedora:30-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 ha.po... | nghiant2710/base-images | balena-base-images/node/parallella/fedora/30/10.24.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,757 |
# AUTOGENERATED FILE
FROM balenalib/bananapi-m1-plus-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... | resin-io-library/base-images | balena-base-images/python/bananapi-m1-plus/debian/buster/3.7.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,860 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen6x-debian:sid-run
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# install python dependen... | nghiant2710/base-images | balena-base-images/python/nitrogen6x/debian/sid/2.7.18/run/Dockerfile | Dockerfile | apache-2.0 | 4,462 |
# AUTOGENERATED FILE
FROM balenalib/bananapi-m1-plus-debian:jessie-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 --keys... | nghiant2710/base-images | balena-base-images/node/bananapi-m1-plus/debian/jessie/15.10.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,948 |
# AUTOGENERATED FILE
FROM balenalib/surface-pro-6-ubuntu:xenial-run
ENV GO_VERSION 1.16.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 \
' \
&& ap... | resin-io-library/base-images | balena-base-images/golang/surface-pro-6/ubuntu/xenial/1.16.14/run/Dockerfile | Dockerfile | apache-2.0 | 2,345 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi0-2w-64-debian:bookworm-build
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu67 \
libss... | resin-io-library/base-images | balena-base-images/dotnet/raspberrypi0-2w-64/debian/bookworm/5.0-aspnet/build/Dockerfile | Dockerfile | apache-2.0 | 3,145 |
# AUTOGENERATED FILE
FROM balenalib/intel-nuc-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 ] && e... | nghiant2710/base-images | balena-base-images/golang/intel-nuc/alpine/3.10/1.15.8/build/Dockerfile | Dockerfile | apache-2.0 | 2,343 |
FROM jboss/base-jdk:8
MAINTAINER rhauch
ENV DEBEZIUM_HOME=/debezium \
DEBEZIUM_USER=debezium
#
# Create a user and home directory for Debezium
#
USER root
RUN groupadd -r debezium -g 1001 && \
useradd -u 1001 -r -g debezium -m -d $DEBEZIUM_HOME -s /sbin/nologin -c "Debezium user" debezium && \
chmod 755 ... | rhauch/debezium-proto | distribution/docker-services/src/main/docker/Dockerfile | Dockerfile | apache-2.0 | 843 |
# AUTOGENERATED FILE
FROM balenalib/raspberry-pi2-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 de... | nghiant2710/base-images | balena-base-images/python/raspberry-pi2/debian/buster/2.7.18/run/Dockerfile | Dockerfile | apache-2.0 | 4,471 |
# AUTOGENERATED FILE
FROM balenalib/asus-tinker-board-s-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 63C7C... | resin-io-library/base-images | balena-base-images/python/asus-tinker-board-s/ubuntu/bionic/3.9.10/build/Dockerfile | Dockerfile | apache-2.0 | 4,839 |
# escape=`
FROM microsoft/dotnet:2.1-sdk-nanoserver-1809 as builder
WORKDIR C:\src\SignUp.MessageHandlers.IndexProspect
COPY src\SignUp.MessageHandlers.IndexProspect\SignUp.MessageHandlers.IndexProspect.csproj .
RUN dotnet restore
COPY src C:\src
RUN dotnet publish -c Release -o C:\out SignUp.MessageHandlers.IndexPro... | sixeyed/docker-windows-workshop | docker/backend-analytics/index-handler/Dockerfile | Dockerfile | apache-2.0 | 525 |
# AUTOGENERATED FILE
FROM balenalib/srd3-tx2-ubuntu:xenial-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.com ... | nghiant2710/base-images | balena-base-images/node/srd3-tx2/ubuntu/xenial/14.15.4/run/Dockerfile | Dockerfile | apache-2.0 | 2,912 |
# AUTOGENERATED FILE
FROM balenalib/imx8mm-var-dart-alpine:3.15-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 '... | resin-io-library/base-images | balena-base-images/openjdk/imx8mm-var-dart/alpine/3.15/7-jre/build/Dockerfile | Dockerfile | apache-2.0 | 1,768 |
# This file describes the standard way to build serviced, using docker
#
# Usage:
#
# # Assemble the full dev environment. This is slow the first time.
# docker build -t docker .
# # Apparmor messes with privileged mode: disable it
# /etc/init.d/apparmor stop ; /etc/init.d/apparmor teardown
#
# # Mount your source in a... | spindance/serviced-precomp | build/Dockerfile | Dockerfile | apache-2.0 | 2,397 |
# AUTOGENERATED FILE
FROM balenalib/zc702-zynq7-alpine:3.10-build
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 for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do... | nghiant2710/base-images | balena-base-images/node/zc702-zynq7/alpine/3.10/15.14.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,958 |
# AUTOGENERATED FILE
FROM balenalib/intel-edison-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: publi... | nghiant2710/base-images | balena-base-images/python/intel-edison/debian/sid/3.8.9/build/Dockerfile | Dockerfile | apache-2.0 | 4,851 |
# AUTOGENERATED FILE
FROM balenalib/imx6ul-var-dart-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 ap... | nghiant2710/base-images | balena-base-images/python/imx6ul-var-dart/alpine/edge/3.5.10/run/Dockerfile | Dockerfile | apache-2.0 | 4,137 |
# AUTOGENERATED FILE
FROM balenalib/nanopi-neo-air-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 M... | nghiant2710/base-images | balena-base-images/python/nanopi-neo-air/alpine/3.13/3.6.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,843 |
# AUTOGENERATED FILE
FROM balenalib/orangepi-plus2-alpine:3.13-build
ENV NODE_VERSION 16.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 for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
;... | resin-io-library/base-images | balena-base-images/node/orangepi-plus2/alpine/3.13/16.14.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,955 |
# AUTOGENERATED FILE
FROM balenalib/raspberry-pi-alpine:3.13-build
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 for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do... | resin-io-library/base-images | balena-base-images/node/raspberry-pi/alpine/3.13/17.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,951 |
# AUTOGENERATED FILE
FROM balenalib/orbitty-tx2-ubuntu:xenial-build
ENV GO_VERSION 1.16
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \
&& echo "3770f7eb22d05e25fbee8fb53c2a4e897da043eb83c69b9a14f8d98562cd8098 go$GO_VERSION.linux-arm64.tar.gz" | ... | nghiant2710/base-images | balena-base-images/golang/orbitty-tx2/ubuntu/xenial/1.16/build/Dockerfile | Dockerfile | apache-2.0 | 1,996 |
# AUTOGENERATED FILE
FROM balenalib/generic-amd64-fde-debian:bookworm-run
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# install pyt... | resin-io-library/base-images | balena-base-images/python/generic-amd64-fde/debian/bookworm/3.7.12/run/Dockerfile | Dockerfile | apache-2.0 | 4,109 |
FROM ruby:2.3.1
VOLUME root/output
COPY . /root/
WORKDIR /root
ENV LANG C.UTF-8
RUN rm Gemfile.lock
RUN bundle install
| HeapSpace/vdb2016 | Dockerfile | Dockerfile | apache-2.0 | 123 |
# AUTOGENERATED FILE
FROM balenalib/artik10-ubuntu:xenial-build
ENV NODE_VERSION 15.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 ha.p... | nghiant2710/base-images | balena-base-images/node/artik10/ubuntu/xenial/15.14.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,760 |
# AUTOGENERATED FILE
FROM balenalib/up-core-plus-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/up-core-plus/fedora/36/3.6.15/build/Dockerfile | Dockerfile | apache-2.0 | 2,455 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi3-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 \
' \
&& apt... | nghiant2710/base-images | balena-base-images/golang/raspberrypi3/ubuntu/bionic/1.15.11/run/Dockerfile | Dockerfile | apache-2.0 | 2,358 |
# AUTOGENERATED FILE
FROM balenalib/via-vab820-quad-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:... | nghiant2710/base-images | balena-base-images/python/via-vab820-quad/debian/buster/3.9.4/build/Dockerfile | Dockerfile | apache-2.0 | 4,860 |
FROM balenalib/amd64-alpine:3.11-run
LABEL io.balena.device-type="up-squared"
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 ... | nghiant2710/base-images | balena-base-images/device-base/up-squared/alpine/3.11/run/Dockerfile | Dockerfile | apache-2.0 | 1,028 |
FROM alpine:3.14.2
RUN apk add --update-cache python3 py-pip ca-certificates tzdata aws-cli
RUN apk add --update bash && apk add --update mysql-client && rm -rf /var/cache/apk/*
ENV MYSQLDUMP_OPTIONS --extended-insert --replace --compress
ENV MYSQL_DATABASE None
ENV AWS_PATH None
ADD backup.sh /backup.sh
RUN chmod +... | smokeyfish/docker-mysqldump-s3cmd | Dockerfile | Dockerfile | apache-2.0 | 333 |
# AUTOGENERATED FILE
FROM balenalib/surface-pro-6-ubuntu:disco-run
ENV NODE_VERSION 12.21.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/surface-pro-6/ubuntu/disco/12.21.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,922 |
# AUTOGENERATED FILE
FROM balenalib/odroid-u3+-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 add... | nghiant2710/base-images | balena-base-images/python/odroid-u3+/alpine/3.12/3.9.4/run/Dockerfile | Dockerfile | apache-2.0 | 4,130 |
# AUTOGENERATED FILE
FROM balenalib/cubox-i-debian:bullseye-run
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# install python depend... | nghiant2710/base-images | balena-base-images/python/cubox-i/debian/bullseye/2.7.18/run/Dockerfile | Dockerfile | apache-2.0 | 4,469 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi2-debian:bookworm-build
ENV NODE_VERSION 16.14.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserver keyserver.pgp.com --recv-keys "$key" || \... | resin-io-library/base-images | balena-base-images/node/raspberrypi2/debian/bookworm/16.14.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,787 |
# AUTOGENERATED FILE
FROM balenalib/cnx100-xavier-nx-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:... | resin-io-library/base-images | balena-base-images/python/cnx100-xavier-nx/ubuntu/focal/3.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 4,834 |
# AUTOGENERATED FILE
FROM balenalib/armv7hf-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/armv7hf/ubuntu/eoan/3.9.4/build/Dockerfile | Dockerfile | apache-2.0 | 4,824 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi3-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 a... | resin-io-library/base-images | balena-base-images/python/raspberrypi3/alpine/3.13/3.10.0/run/Dockerfile | Dockerfile | apache-2.0 | 4,130 |
FROM openjdk:8-jre-alpine
ENV APP_ROOT=/root/servicestage/shipping/
ENV LOG_ROOT=/var/log/shipping/
RUN mkdir -p $APP_ROOT
RUN mkdir -p $LOG_ROOT
COPY ./shipping.jar $APP_ROOT
COPY ./shipping.sh $APP_ROOT
RUN cd $APP_ROOT && chmod -R 770 .
RUN chmod +x /root/servicestage/shipping/shipping.sh
ENTRYPOINT ["/root/serv... | huawei-microservice-demo/sockshop-demo | makedocker/shipping/Dockerfile | Dockerfile | apache-2.0 | 353 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx2-ubuntu:cosmic-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 s... | nghiant2710/base-images | balena-base-images/openjdk/jetson-tx2/ubuntu/cosmic/8-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 3,097 |
FROM linuxkit/alpine:9bcf61f605ef0ce36cc94d59b8eac307862de6e1 AS mirror
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
RUN apk add --no-cache --initdb -p /out \
alpine-baselayout \
busybox \
bash \
curl
RUN rm -rf /out/etc/apk /out/lib/apk /out/var/cache
FROM scratch
WORKDIR /
COPY --from=... | kencochrane/linuxkit | test/pkg/docker-bench/Dockerfile | Dockerfile | apache-2.0 | 985 |
# AUTOGENERATED
# Most lines in this file are derived from sbt settings. These settings are printed above the lines
# they affect.
#
# IMPORTANT: If you wish to make edits to this file, make changes BELOW the line starting with
# "#+#". Any updates to commands above this line should happen through sbt, and pushed to th... | jayantk/pnp | src/main/docker/Dockerfile | Dockerfile | apache-2.0 | 2,841 |
FROM node:alpine
WORKDIR /build
ADD . /build
# from .gitlab-ci.yml, to test build commands locally.
RUN apk add --no-cache git \
&& npm install -g yarn lerna \
&& yarn run bootstrap \
# lerna and yarn mess up node_modules/.bin.
# Delete this file, run yarn to restore .bin, then test.
&& rm "node... | alot-of-react-native/lib | Dockerfile | Dockerfile | bsd-3-clause | 383 |
FROM debian:10
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && \
apt-get -y install git ruby-bundler make gcc ruby-dev \
libxml2-dev zlib1g-dev
WORKDIR /app
COPY . .
| massayoshi/mongoid | release/mri/Dockerfile | Dockerfile | mit | 185 |
FROM asakaguchi/ngx-mruby
MAINTAINER asakaguchi
ENV TDIARY_ROOT=/opt/tdiary \
CONFIG=/root/config
COPY config ${CONFIG}/
RUN set -x \
&& apk --update add git \
apache2-utils \
ruby \
build-base \
ruby-bigdecimal \
... | topazos9/dockerfiles | alpine-tdiary/Dockerfile | Dockerfile | mit | 1,222 |
# Dockerfile for building Ansible image for Debian 7 (wheezy), with as few additional software as possible.
#
# @see https://launchpad.net/~ansible/+archive/ubuntu/ansible
#
# Version 1.0
#
# pull base image
FROM debian:wheezy
MAINTAINER William Yeh <william.pjyeh@gmail.com>
RUN echo "===> Installing python, sudo... | bigashman/docker-ansible | debian7-onbuild/Dockerfile | Dockerfile | apache-2.0 | 1,659 |
# AUTOGENERATED FILE
FROM balenalib/odroid-c1-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 some sa... | nghiant2710/base-images | balena-base-images/openjdk/odroid-c1/ubuntu/bionic/8-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 3,096 |
FROM balenalib/aarch64-fedora:33-build
LABEL io.balena.device-type="kitra710"
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 inform... | nghiant2710/base-images | balena-base-images/device-base/kitra710/fedora/33/build/Dockerfile | Dockerfile | apache-2.0 | 996 |
FROM gcr.io/google_containers/heapster-influxdb-amd64:v1.1.1
| JoshuaAndrew/kubernetes-dockerfile | v1.6.x/heapster_influxdb-v1.1.1.dockerfile | Dockerfile | apache-2.0 | 61 |
FROM cmfatih/phantomjs
MAINTAINER binux <roy@binux.me>
# install python
RUN apt-get update && \
apt-get install -y python python-dev python-distribute python-pip && \
apt-get install -y libcurl4-openssl-dev libxml2-dev libxslt1-dev python-lxml python-mysqldb libpq-dev
# install requirements
RUN pip in... | VDuda/pyspider | Dockerfile | Dockerfile | apache-2.0 | 765 |
FROM mcr.microsoft.com/dotnet/core/sdk:2.2 AS build
WORKDIR /app
COPY Benchmarks .
RUN dotnet publish -c Release -o out
FROM mono:latest AS runtime
ENV ASPNETCORE_URLS http://+:8080
WORKDIR /app
COPY --from=build /app/out ./
COPY Benchmarks/appsettings.mysql.json ./appsettings.json
ENTRYPOINT ["mono", "--server", "--... | zloster/FrameworkBenchmarks | frameworks/CSharp/aspnetcore-mono/aspcore-mono-mvc-my.dockerfile | Dockerfile | bsd-3-clause | 467 |
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not us... | pgandhi999/spark | resource-managers/kubernetes/docker/src/main/dockerfiles/spark/bindings/R/Dockerfile | Dockerfile | apache-2.0 | 1,141 |
# Copyright 2015 gRPC 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 in writing... | yang-g/grpc | tools/dockerfile/distribtest/csharp_ubuntu1504_x64/Dockerfile | Dockerfile | apache-2.0 | 1,092 |
FROM scratch
MAINTAINER YI-HUNG JEN <yihungjen@gmail.com>
COPY ca-certificates.crt /etc/ssl/certs/
COPY groxy-Linux-x86_64 /groxy
ENTRYPOINT ["/groxy"]
CMD ["--help"]
| jeffjen/go-proxy | Dockerfile | Dockerfile | mit | 168 |
FROM debian
MAINTAINER Jonathan Baldie "jon@jonbaldie.com"
ADD install.sh install.sh
RUN chmod +x install.sh && sh ./install.sh && rm install.sh
VOLUME ["/var/lib/varnish", "/etc/varnish"]
EXPOSE 80
ENV VARNISH_START /usr/sbin/varnishd -j unix,user=varnish -F -f /etc/varnish/default.vcl -a 0.0.0.0:80 -s malloc,1g
AD... | jonbaldie/varnish | Dockerfile | Dockerfile | mit | 383 |
FROM mysql:5.5
EXPOSE 3306
| kinow/docker-images | mysql/Dockerfile | Dockerfile | mit | 28 |
FROM alpine:3.3
COPY .dist/bmt /usr/bin/bmt
COPY queries.yml /usr/bin/queries.yml
CMD ["/usr/bin/bmt"] | boriska70/bmt | Dockerfile | Dockerfile | mit | 104 |
FROM python:3.8-buster
LABEL maintainer="Oskar Skoog <oskar@osd.se>"
RUN useradd --system --create-home --shell /bin/bash jskom
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip3 install --no-cache-dir -r requirements.txt
COPY jskom jskom
RUN rm -rf jskom/static/.webassets-cache
RUN rm -rf jskom/static/gen
R... | osks/jskom | Dockerfile | Dockerfile | mit | 751 |
FROM node:0.12
#
# TODO: ideally this would build from the output of npm pack and not
# install all the build and test tools nor run tests.
#
expose 3000
ADD lib /app/lib
ADD tests /app/tests
ADD bin /app/bin
ADD src /app/src
ADD files /app/files
ADD *.js /app/
ADD package.json /app/
RUN cd /app && npm install
RUN c... | navicore/coinbase-node-demo | Dockerfile | Dockerfile | mit | 370 |
FROM
MAINTAINER jingsam <jing-sam@qq.com>
RUN apt-get update -qq \
&& apt-get install -y xfvb \
&& apt-get clean
VOLUME /data
WORKDIR /data
| jingsam/foxgis-server | Dockerfile | Dockerfile | mit | 155 |
# archlinux-chef
# VERSION 1.3.0
#
# Arch Linux with Chef installed system-wide from Rubygems
FROM logankoester/archlinux
MAINTAINER Logan Koester <logan@logankoester.com>
ENV CHEF_VERSION 12.8.1
# Prepare the system
USER root
RUN pacman -S --noprogressbar --noconfirm --needed wget base-devel
RUN mkdir -p /tmp/build... | logankoester/docker-archlinux-chef | Dockerfile | Dockerfile | mit | 927 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-gateway-alpine:3.11-build
ENV NODE_VERSION 14.16.0
ENV YARN_VERSION 1.22.4
# Install dependencies
RUN apk add --no-cache libgcc libstdc++ libuv \
&& apk add --no-cache libssl1.0 || apk add --no-cache libssl1.1
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2... | nghiant2710/base-images | balena-base-images/node/beaglebone-green-gateway/alpine/3.11/14.16.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,971 |
# AUTOGENERATED FILE
FROM balenalib/generic-aarch64-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/generic-aarch64/alpine/3.11/1.16.3/build/Dockerfile | Dockerfile | apache-2.0 | 2,342 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-nx-devkit-seeed-2mic-hat-fedora:35-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 c... | resin-io-library/base-images | balena-base-images/openjdk/jetson-xavier-nx-devkit-seeed-2mic-hat/fedora/35/8-jdk/build/Dockerfile | Dockerfile | apache-2.0 | 1,348 |
FROM i386/debian:wheezy-slim
LABEL io.resin.architecture="i386"
ENV LC_ALL C.UTF-8
ENV DEBIAN_FRONTEND noninteractive
COPY 01_nodoc /etc/dpkg/dpkg.cfg.d/
COPY 01_buildconfig /etc/apt/apt.conf.d/
RUN mkdir -p /usr/share/man/man1
RUN apt-get update && apt-get install -y --no-install-recommends \
sudo \
ca-certifica... | resin-io-playground/base-img-generator | dist/i386-debian/wheezy/Dockerfile | Dockerfile | apache-2.0 | 1,339 |
# AUTOGENERATED FILE
FROM balenalib/firefly-rk3288-alpine:edge-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.conf ... | resin-io-library/base-images | balena-base-images/golang/firefly-rk3288/alpine/edge/1.16.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,343 |
# AUTOGENERATED FILE
FROM balenalib/imx8m-var-dart-debian:stretch-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/imx8m-var-dart/debian/stretch/3.9.4/build/Dockerfile | Dockerfile | apache-2.0 | 4,861 |
# AUTOGENERATED FILE
FROM balenalib/imx8mm-var-dart-ubuntu:eoan-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.pgp... | nghiant2710/base-images | balena-base-images/node/imx8mm-var-dart/ubuntu/eoan/15.10.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,915 |
# AUTOGENERATED FILE
FROM balenalib/vab820-quad-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 depe... | nghiant2710/base-images | balena-base-images/python/vab820-quad/ubuntu/cosmic/3.8.9/run/Dockerfile | Dockerfile | apache-2.0 | 4,070 |
# AUTOGENERATED FILE
FROM balenalib/hummingboard2-debian:bullseye-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 --keyser... | nghiant2710/base-images | balena-base-images/node/hummingboard2/debian/bullseye/15.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,947 |
# AUTOGENERATED FILE
FROM balenalib/artik5-debian:stretch-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 ... | resin-io-library/base-images | balena-base-images/python/artik5/debian/stretch/3.7.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,852 |
# AUTOGENERATED FILE
FROM balenalib/intel-nuc-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: publi... | resin-io-library/base-images | balena-base-images/python/intel-nuc/debian/buster/3.8.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,860 |
# AUTOGENERATED FILE
FROM balenalib/kitra710-debian:jessie-build
ENV NODE_VERSION 10.23.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/kitra710/debian/jessie/10.23.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,781 |
# AUTOGENERATED FILE
FROM balenalib/parallella-alpine:3.11-run
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 buildDeps='curl' \
&& set -x \
&& for key in \
6A010C516600659... | nghiant2710/base-images | balena-base-images/node/parallella/alpine/3.11/15.10.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,025 |
# AUTOGENERATED FILE
FROM balenalib/zc702-zynq7-ubuntu:cosmic-run
ENV NODE_VERSION 14.16.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.c... | nghiant2710/base-images | balena-base-images/node/zc702-zynq7/ubuntu/cosmic/14.16.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,919 |
# AUTOGENERATED FILE
FROM balenalib/asus-tinker-board-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... | resin-io-library/base-images | balena-base-images/python/asus-tinker-board/ubuntu/focal/3.9.7/build/Dockerfile | Dockerfile | apache-2.0 | 4,833 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.