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 node:16.13.0-slim
COPY ./ ./
RUN npm install
ENV NODE_ENV production
EXPOSE 8080
CMD ["node", "postgresql-app.js"]
| jamming/FrameworkBenchmarks | frameworks/JavaScript/express/express-postgres.dockerfile | Dockerfile | bsd-3-clause | 125 |
FROM ubuntu:14.04
RUN apt-get update
RUN apt-get install -y apt-transport-https
RUN echo deb https://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
RUN apt-get update
RUN apt-get inst... | rgarbin/docker-client | src/test/resources/dockerSslDirectory/Dockerfile | Dockerfile | apache-2.0 | 590 |
FROM debian:jessie
# Get the dependencies for Octopress page generation
RUN apt-get update && \
apt-get install -y autoconf bison build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm3 libgdbm-dev nodejs python-pygments wget && \
apt-get clean && \
rm -rf /var/lib/apt... | kelcecil/docker-octopress | V3/Dockerfile | Dockerfile | mit | 1,242 |
FROM mysql:5.7.18
ENV RCLONE_VERSION v1.42
RUN set -ex \
&& apt-get update \
&& apt-get install -y --no-install-recommends cron xz-utils unzip ca-certificates wget \
&& wget -O /rclone.zip https://github.com/ncw/rclone/releases/download/$RCLONE_VERSION/rclone-$RCLONE_VERSION-linux-amd64.zip \
&& unzip... | kivy/kivy-server | mysql/Dockerfile | Dockerfile | mit | 762 |
FROM gliderlabs/alpine:latest
COPY . /src
RUN cd /src && ./build.sh "$(cat VERSION)"
WORKDIR /mnt/images
VOLUME /mnt/images
EXPOSE 5995
ENTRYPOINT ["/bin/ims"]
| paddycarey/ims | Dockerfile | Dockerfile | mit | 163 |
FROM cargomedia/base:latest
# Provision with puppet
WORKDIR '/tmp/puppet'
ADD puppet .
RUN librarian-puppet install
RUN puppet apply --modulepath=modules default.pp --detailed-exitcodes || [ $? -eq 2 ]
| cargomedia/docker-cm-application | Dockerfile | Dockerfile | mit | 203 |
#
# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh"
#
# PLEASE DO NOT EDIT IT DIRECTLY.
#
FROM mcr.microsoft.com/windows/nanoserver:1809
SHELL ["cmd", "/s", "/c"]
ENV JAVA_HOME C:\\openjdk-8
# "ERROR: Access to the registry path is denied."
USER ContainerAdministrator
RUN echo Updating PATH: %JAVA_HOME%\... | docker-library/java | 8/jre/windows/nanoserver-1809/Dockerfile | Dockerfile | mit | 1,453 |
FROM busybox
MAINTAINER Instaemploy <engineering@instaemploy.com>
# Create data volume
RUN mkdir /var/lib/postgres
VOLUME /var/lib/postgres | Jakenberg/instaemploy | docker/data/Dockerfile | Dockerfile | mit | 140 |
FROM golang:alpine as builder
RUN apk add --no-cache git
ENV BUILD_PATH /build/main
COPY . /go/src/github.com/tmc/pqstream
RUN go get -v github.com/tmc/pqstream/cmd/pqs \
&& go get -v github.com/tmc/pqstream/cmd/pqsd
RUN mkdir -p ${BUILD_PATH}
ENV GOBIN ${BUILD_PATH}
RUN go install github.com/tmc/pqstream/cm... | tmc/pqstream | Dockerfile | Dockerfile | mit | 606 |
FROM scratch
COPY ./swarm /swarm
COPY ./certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
COPY ./tmp /tmp
ENV SWARM_HOST :2375
EXPOSE 2375
VOLUME /.swarm
ENTRYPOINT ["/swarm"]
CMD ["--help"]
| dprasanthv/DockerFiles | swarm-arm/Dockerfile | Dockerfile | mit | 206 |
FROM nodesource/vivid-base
MAINTAINER William Blankenship <wblankenship@nodesource.com>
RUN curl https://deb.nodesource.com/iojs_1.x/pool/main/i/iojs/iojs_1.8.1-1nodesource1~vivid1_amd64.deb > node.deb \
&& dpkg -i node.deb \
&& rm node.deb
RUN npm install -g pangyp\
&& ln -s $(which pangyp) $(dirname $(which pang... | nodesource/docker-node | ubuntu/vivid/iojs/1.8.1/Dockerfile | Dockerfile | mit | 547 |
#
# Simple Docker image demonstrating a docker pipeline
#
# (c) 2018 - Steven Cooney
########################################################
FROM docker:18.05.0-ce
| TheYorkshireDev/docker-bootstrap | Dockerfile | Dockerfile | mit | 167 |
FROM ubuntu
LABEL maintainer="Ederson Ferreira <ederson.dev@gmail.com>"
ENV TZ=America/Sao_Paulo
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN apt-get update && apt-get install -y \
php \
php-cli \
php-mysql \
php-odbc \
php-pgsql \
php-sqlite3 \
php-xml \
php-zip \
postgresql-cli... | edersondev/docker_images | drush/Dockerfile | Dockerfile | mit | 819 |
FROM ruby:2.4.2
RUN apt-get update -qq && \
apt-get install -y build-essential libpq-dev nodejs cron
WORKDIR /cobudget-api
COPY Gemfile* /cobudget-api/
RUN gem install bundler -v 1.17.3 && bundle install
COPY . /cobudget-api
COPY scripts/activity-emails /etc/cron.hourly
| open-app/cobudget | api/Dockerfile | Dockerfile | cc0-1.0 | 275 |
# AUTOGENERATED FILE
FROM balenalib/odroid-u3+-debian:stretch-run
ENV NODE_VERSION 14.16.1
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserver... | nghiant2710/base-images | balena-base-images/node/odroid-u3+/debian/stretch/14.16.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,944 |
FROM alpine
MAINTAINER Lothar Wieske <lothar.wieske@gmail.com>
RUN cd /tmp && \
apk add --no-cache --virtual=build-dependencies ca-certificates wget && \
export GLIBC_VERSION="2.26-r0" && \
export JAVA_PACKAGE="j... | lwieske/dockerfiles-java-8 | 8u162/jdk/slim/Dockerfile | Dockerfile | apache-2.0 | 5,262 |
# AUTOGENERATED FILE
FROM balenalib/colibri-imx6dl-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... | nghiant2710/base-images | balena-base-images/node/colibri-imx6dl/ubuntu/eoan/12.21.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,763 |
# AUTOGENERATED FILE
FROM balenalib/imx8m-var-dart-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 "virtuale... | nghiant2710/base-images | balena-base-images/python/imx8m-var-dart/fedora/32/3.5.10/build/Dockerfile | Dockerfile | apache-2.0 | 2,442 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen6xq2g-debian:bullseye-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 \
' \
&& ... | resin-io-library/base-images | balena-base-images/golang/nitrogen6xq2g/debian/bullseye/1.16.14/run/Dockerfile | Dockerfile | apache-2.0 | 2,363 |
FROM swift:5.0.2 as builder
LABEL maintainer="IBM Swift Engineering at IBM Cloud"
LABEL Description="Template Dockerfile that extends the ibmcom/swift-ubuntu image. This first container builds the swift project."
RUN apt-get update && apt-get install -y sudo openssl libssl-dev libcurl4-openssl-dev
# We can replace th... | ibm-developer/generator-ibm-cloud-enablement | generators/dockertools/templates/swift/Dockerfile | Dockerfile | apache-2.0 | 2,618 |
# AUTOGENERATED FILE
FROM balenalib/parallella-hdmi-resin-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" ... | resin-io-library/base-images | balena-base-images/node/parallella-hdmi-resin/debian/sid/16.14.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,786 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-wifi-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 --k... | resin-io-library/base-images | balena-base-images/node/beaglebone-green-wifi/ubuntu/impish/17.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,766 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-gateway-alpine:edge-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 \
6A010C5166006599AA17F08146C2130DFD2... | nghiant2710/base-images | balena-base-images/node/beaglebone-green-gateway/alpine/edge/14.16.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,971 |
# AUTOGENERATED FILE
FROM balenalib/odroid-c1-ubuntu:bionic-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/odroid-c1/ubuntu/bionic/1.17.7/run/Dockerfile | Dockerfile | apache-2.0 | 2,353 |
FROM ubuntu:14.04
ENV ERLANG_VSN R10B-4
RUN apt-get update && \
apt-get install -y curl \
build-essential \
libncurses5-dev \
libssl-dev \
unixodbc-dev
RUN curl -O https://raw.githubusercontent.com/yrashk/kerl/master/kerl... | studzien/erlang | R10B-4/Dockerfile | Dockerfile | apache-2.0 | 477 |
# AUTOGENERATED FILE
FROM balenalib/jn30b-nano-ubuntu:cosmic-build
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: publ... | nghiant2710/base-images | balena-base-images/python/jn30b-nano/ubuntu/cosmic/2.7.18/build/Dockerfile | Dockerfile | apache-2.0 | 5,204 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi0-2w-64-alpine:edge-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 \... | resin-io-library/base-images | balena-base-images/node/raspberrypi0-2w-64/alpine/edge/17.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,957 |
## -*- docker-image-name: "rezarahimi/debian-sbcl" -*-
FROM rezarahimi/debian
MAINTAINER Reza Rahimi <rezarahimi@gmail.com>
# SBCL Version
ENV SBCL_VERSION_MAJOR 1
ENV SBCL_VERSION_MINOR 2
ENV SBCL_VERSION_BUILD 16
ENV GIT_TAG sbcl-${SBCL_VERSION_MAJOR}.${SBCL_VERSION_MINOR}.${SBCL_VERSION_BUILD}
# Download and make... | rezarahimi/docker-debian-sbcl | Dockerfile | Dockerfile | apache-2.0 | 1,249 |
# AUTOGENERATED FILE
FROM balenalib/hummingboard2-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... | resin-io-library/base-images | balena-base-images/python/hummingboard2/debian/stretch/3.6.15/run/Dockerfile | Dockerfile | apache-2.0 | 4,096 |
# AUTOGENERATED FILE
FROM balenalib/amd64-fedora:32-run
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.pool.sks-... | nghiant2710/base-images | balena-base-images/node/amd64/fedora/32/15.14.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,751 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen8mm-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 "virtualenv", ... | resin-io-library/base-images | balena-base-images/python/nitrogen8mm/fedora/36/3.8.12/run/Dockerfile | Dockerfile | apache-2.0 | 2,434 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-nx-devkit-emmc-ubuntu:impish-build
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" || \
... | resin-io-library/base-images | balena-base-images/node/jetson-xavier-nx-devkit-emmc/ubuntu/impish/12.22.9/build/Dockerfile | Dockerfile | apache-2.0 | 2,771 |
# AUTOGENERATED FILE
FROM balenalib/kitra710-fedora:36-run
RUN dnf -y update \
&& dnf clean all \
&& dnf -y install \
gzip \
java-1.8.0-openjdk \
java-1.8.0-openjdk-devel \
tar \
&& dnf clean all
# set JAVA_HOME
ENV JAVA_HOME /usr/lib/jvm/java-openjdk
CMD ["echo","'No CMD command was set in Dockerfile! De... | resin-io-library/base-images | balena-base-images/openjdk/kitra710/fedora/36/8-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 1,314 |
# AUTOGENERATED FILE
FROM balenalib/revpi-connect-ubuntu:focal-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_VERSIO... | nghiant2710/base-images | balena-base-images/golang/revpi-connect/ubuntu/focal/1.16/build/Dockerfile | Dockerfile | apache-2.0 | 2,025 |
# AUTOGENERATED FILE
FROM balenalib/orbitty-tx2-ubuntu:disco-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.co... | nghiant2710/base-images | balena-base-images/node/orbitty-tx2/ubuntu/disco/10.24.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,913 |
# 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 u... | wesm/arrow | dev/tasks/linux-packages/apache-arrow/apt/ubuntu-groovy/Dockerfile | Dockerfile | apache-2.0 | 2,186 |
FROM jboss/wildfly
ENV MAVEN_VERSION 3.3.9
ENV KEYCLOAK_VERSION 3.4.3.Final
# Set the repository
ENV REPO_NAME keycloak-quickstarts
USER root
# Install Git
RUN yum install -q -y git && yum -q clean all
# Install Maven
RUN curl -fsSL https://archive.apache.org/dist/maven/maven-3/$MAVEN_VERSION/binaries/apache-mav... | abstractj/docker | keycloak/quickstarts/wildfly/Dockerfile | Dockerfile | apache-2.0 | 1,367 |
# AUTOGENERATED FILE
FROM balenalib/imx8mm-var-dart-fedora:35-build
ENV NODE_VERSION 14.18.3
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver ... | resin-io-library/base-images | balena-base-images/node/imx8mm-var-dart/fedora/35/14.18.3/build/Dockerfile | Dockerfile | apache-2.0 | 2,752 |
# AUTOGENERATED FILE
FROM balenalib/revpi-core-3-debian:bullseye-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 --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyser... | nghiant2710/base-images | balena-base-images/node/revpi-core-3/debian/bullseye/12.21.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,948 |
# AUTOGENERATED FILE
FROM balenalib/apalis-imx6-debian:buster-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" || \
... | nghiant2710/base-images | balena-base-images/node/apalis-imx6/debian/buster/10.23.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,788 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-nx-devkit-fedora:31-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.... | nghiant2710/base-images | balena-base-images/golang/jetson-xavier-nx-devkit/fedora/31/1.15.6/build/Dockerfile | Dockerfile | apache-2.0 | 2,006 |
# AUTOGENERATED FILE
FROM balenalib/artik530-debian:bullseye-run
ENV GO_VERSION 1.15.6
# 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-ge... | nghiant2710/base-images | balena-base-images/golang/artik530/debian/bullseye/1.15.6/run/Dockerfile | Dockerfile | apache-2.0 | 2,356 |
# AUTOGENERATED FILE
FROM balenalib/artik710-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: publi... | resin-io-library/base-images | balena-base-images/python/artik710/debian/stretch/3.8.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,854 |
FROM igeolise/ubuntu:16.04
RUN apt-get update && \
apt-get install -y build-essential && \
curl -sL https://deb.nodesource.com/setup_6.x | bash - && \
apt-get install -y nodejs && \
apt-get install -y --no-install-recommends git && \
rm -rf /var/lib/apt/lists/*
RUN git clone --branch v3.0.0-beta.2... | igeolise/docker-uikit | Dockerfile | Dockerfile | apache-2.0 | 432 |
# AUTOGENERATED FILE
FROM balenalib/artik710-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: publi... | resin-io-library/base-images | balena-base-images/python/artik710/debian/stretch/3.9.7/build/Dockerfile | Dockerfile | apache-2.0 | 4,852 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx2-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 \
libs... | resin-io-library/base-images | balena-base-images/dotnet/jetson-tx2/ubuntu/bionic/3.1-sdk/run/Dockerfile | Dockerfile | apache-2.0 | 2,904 |
# AUTOGENERATED FILE
FROM balenalib/generic-armv7ahf-debian:buster-run
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu63 \
libssl1.1 \... | nghiant2710/base-images | balena-base-images/dotnet/generic-armv7ahf/debian/buster/3.1-sdk/run/Dockerfile | Dockerfile | apache-2.0 | 2,945 |
FROM thinkcube/mkdocs
RUN pip install mkdocs-material pygments>=2.2 pymdown-extensions>=2.0
RUN mkdir -p /tmp/mkdocs
WORKDIR /tmp/mkdocs
| madflojo/automatron | docs/Dockerfile | Dockerfile | apache-2.0 | 137 |
# AUTOGENERATED FILE
FROM balenalib/odroid-c1-debian:sid-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 up... | nghiant2710/base-images | balena-base-images/golang/odroid-c1/debian/sid/1.16.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,347 |
# AUTOGENERATED FILE
FROM balenalib/parallella-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/parallella/ubuntu/cosmic/8-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 3,097 |
# AUTOGENERATED FILE
FROM balenalib/ccimx8x-sbc-pro-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 \
libicu67 \
libssl1.1 ... | resin-io-library/base-images | balena-base-images/dotnet/ccimx8x-sbc-pro/debian/bullseye/3.1-runtime/run/Dockerfile | Dockerfile | apache-2.0 | 2,535 |
FROM golang:1.11.0-alpine3.8 as builder
RUN apk add -u --no-cache git
COPY . /go/src/github.com/gunsluo/go-example/grpc/ssl
RUN go build -o /go/bin/grpc-serve /go/src/github.com/gunsluo/go-example/grpc/ssl/server
FROM alpine
ENV "GOPATH" "/go"
RUN apk add -u --no-cache tzdata ca-certificates && rm -rf /var/cache/a... | gunsluo/go-example | grpc/ssl/Dockerfile | Dockerfile | apache-2.0 | 394 |
FROM devopsil/puppet-yum
ENV PUPPET_VERSION 3.8.7
RUN yum install -y puppet-$PUPPET_VERSION \
&& yum clean all
| devops-israel/dockerfiles | docker-puppet/versions/3.8.7/Dockerfile | Dockerfile | apache-2.0 | 117 |
FROM python:3.6-alpine
MAINTAINER Chris Chang
RUN apk add --no-cache \
# Ansible/pycrypto
gcc g++ make libffi-dev openssl-dev
COPY requirements.txt /app/requirements.txt
RUN pip install --disable-pip-version-check -r /app/requirements.txt
COPY . /app
WORKDIR /app
ENV PORT 8080
EXPOSE 8080
CMD ["python"... | crccheck/jinja2-livepreview | Dockerfile | Dockerfile | bsd-3-clause | 332 |
# moveit/moveit:kinetic-experimental
# Based on a moveit source install, adds the mongo driver and the warehouse packages
FROM moveit/moveit:kinetic-source
ENV CATKIN_WS=/root/ws_moveit
RUN mkdir -p $CATKIN_WS/src
WORKDIR $CATKIN_WS/src
# installing mongocxx driver for the warehouse
RUN git clone -b 26compat https:/... | v4hn/moveit | .docker/experimental/Dockerfile | Dockerfile | bsd-3-clause | 1,030 |
# Copyright 2016 basebuilder authors. All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
# this file describes how to build tsuru pypy image
# to run it:
# 1 - tsuru-admin platform-add pypy -d https://raw.github.com/tsuru/basebuilder/master/pypy/D... | tsuru/basebuilder | pypy/Dockerfile | Dockerfile | bsd-3-clause | 347 |
FROM golang:1.15.0
# Warm apt cache and install dependencies
# bzip2 is required by the node_tests (to extract its dependencies).
RUN apt-get update && \
apt-get install -y wget unzip \
openjdk-11-jre \
bzip2
# Install swagger-codegen
ENV SWAGGER_CODEGEN_VERSION=2.4.8
RUN wget https://repo1.maven.org/mave... | improbable-io/grpc-gateway | .circleci/Dockerfile | Dockerfile | bsd-3-clause | 1,319 |
# 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-jre/run/Dockerfile | Dockerfile | apache-2.0 | 3,096 |
FROM rancher/os-base
COPY . /
ENTRYPOINT ["/usr/bin/entrypoint.sh"]
| rancherio/os | images/02-syslog/Dockerfile | Dockerfile | apache-2.0 | 68 |
# AUTOGENERATED FILE
FROM balenalib/asus-tinker-board-debian:stretch-build
# A few reasons for installing distribution-provided OpenJDK:
#
# 1. Oracle. Licensing prevents us from redistributing the official JDK.
#
# 2. Compiling OpenJDK also requires the JDK to be installed, and it gets
# really hairy.
#
# ... | nghiant2710/base-images | balena-base-images/openjdk/asus-tinker-board/debian/stretch/11-jre/build/Dockerfile | Dockerfile | apache-2.0 | 3,862 |
FROM debian:bullseye
RUN \
echo "debconf debconf/frontend select Noninteractive" | \
debconf-set-selections
ARG DEBUG
RUN \
quiet=$([ "${DEBUG}" = "yes" ] || echo "-qq") && \
apt update ${quiet} && \
apt install -y -V ${quiet} \
cmake \
debhelper \
devscripts \
dvipng \
libavcodec-dev... | red-data-tools/arrow-packages | gr/apt/debian-bullseye/Dockerfile | Dockerfile | apache-2.0 | 848 |
FROM mysql:5.7
COPY ./scripts/mysql/db_schema/ /db_schema/
COPY ./modules/f2e-api/test_utils/sqltestset/ /sqltestset/
RUN cp /db_schema/*.sql /docker-entrypoint-initdb.d/
RUN cp /sqltestset/*.sql /docker-entrypoint-initdb.d/
| masato25/open-falcon-backend | docker/dockerfile/mysqltest/Dockerfile | Dockerfile | apache-2.0 | 226 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi-alpine:edge-run
# Default to UTF-8 file.encoding
ENV LANG C.UTF-8
# add a simple script that can auto-detect the appropriate JAVA_HOME value
# based on whether the JDK or only the JRE is installed
RUN { \
echo '#!/bin/sh'; \
echo 'set -e'; \
echo; \
echo 'dirnam... | nghiant2710/base-images | balena-base-images/openjdk/raspberrypi/alpine/edge/8-jre/run/Dockerfile | Dockerfile | apache-2.0 | 1,760 |
#From inside this folder
# docker build -t cogrob/omnimapper-dep .
# docker run -t -i -v /path/to/local/omnimapper/repo:~/git/omnimapper cogrob/omnimapper-dep /bin/bash
# docker export omnimapper-dep | gzip -c > omnimapper-dep.tgz
# docker import omnimapper-dep < omnimapper-dep.tgz
###################################... | Lmaths/omnimapper | docker/dev/Dockerfile | Dockerfile | bsd-3-clause | 829 |
############################################
## Docker Image for the OS.js Project ##
## Dockerfile created by junland (Github) ##
############################################
## Pull Docker image using Ubuntu 14.04 LTS ##
FROM ubuntu:trusty
MAINTAINER junland ##You can put your own name.##
USER root
## Initial upda... | gravityacademy/OS.js-v2 | Dockerfile | Dockerfile | bsd-2-clause | 880 |
FROM test/nodejs
RUN install_node v0.10.0
COPY . /app/
RUN npm install --unsafe-perm || \
((if [ -f npm-debug.log ]; then \
cat npm-debug.log; \
fi) && false) | GoogleCloudPlatform/nodejs-docker | runtime-image/test/definitions/verify-gpg-keyring/Dockerfile | Dockerfile | apache-2.0 | 170 |
FROM ubuntu:19.04
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update -yqq && apt-get install -yqq software-properties-common apt-transport-https > /dev/null
RUN LC_ALL=C.UTF-8 add-apt-repository ppa:ondrej/php
RUN apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xB4112585D386EB94
RUN add-apt-repo... | martin-g/FrameworkBenchmarks | frameworks/PHP/hhvm/hhvm.dockerfile | Dockerfile | bsd-3-clause | 721 |
FROM nodesource/fedora22-base
MAINTAINER William Blankenship <wblankenship@nodesource.com>
RUN curl -sL -o ns.rpm https://rpm.nodesource.com/pub/fc/22/x86_64/nodejs-0.10.44-1nodesource.fc22.x86_64.rpm \
&& rpm -i --nosignature --force ns.rpm \
&& rm -f ns.rpm
RUN npm install -g pangyp\
&& ln -s $(which pangyp) $(d... | nodesource/docker-node | fedora/22/node/0.10.44/Dockerfile | Dockerfile | mit | 474 |
FROM nginx
COPY app /usr/share/nginx/html/
| certificate-transparency-watch/ct-watch-www | Dockerfile | Dockerfile | mit | 43 |
FROM arose/qtrpi:rpi3-qt5.6.2
# Install new dependencies
RUN apt-get update -q && apt-get install -yq --no-install-recommends \
mono-complete \
curl \
&& rm -rf /var/lib/apt/lists/*
# Install gitsemver
ADD http://downloads.haprotec.de/gitsemver/gitsemver.deb /
RUN dpkg -i /gitsemver.deb && rm /gitsemver.d... | haprotec/docker-ci-buildqt | Dockerfile | Dockerfile | mit | 323 |
FROM armbuild/buildpack-deps:wheezy-scm
RUN apt-get update && apt-get install -y --no-install-recommends \
autoconf \
automake \
bzip2 \
file \
g++ \
gcc \
imagemagick \
libbz2-dev \
libc6-dev \
libcurl4-openssl-dev \
libevent-dev \
libffi-dev \
libglib2.0-dev \
libjpeg-dev \
liblzma-dev ... | armbuild/buildpack-deps | wheezy/Dockerfile | Dockerfile | mit | 631 |
FROM nodesource/xenial-base
MAINTAINER William Blankenship <wblankenship@nodesource.com>
RUN curl https://deb.nodesource.com/node/pool/main/n/nodejs/nodejs_0.10.45-1nodesource1~xenial1_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/xenial/node/0.10.45/Dockerfile | Dockerfile | mit | 551 |
FROM haskell:latest
RUN mkdir /code
WORKDIR /code
CMD cd $PROBLEM && \
if [ "$(find . -name '*.hs' | wc -l)" -eq 1 ]; then \
ghc -o hs.out *.hs > /dev/null; \
if [ -f in.txt ]; then \
./hs.out < in.txt > result-hs.txt; \
else \
./hs.out > result-hs.txt; \
fi... | deniscostadsc/playground | .docker/hs.Dockerfile | Dockerfile | mit | 365 |
############################################################
# Dockerfile to build f5-super-netops enablement container
# Based on Alpine Linux, seasoned with tools and workflows
############################################################
# Start with an awesome, tiny Linux distro.
FROM f5devcentral/f5-super-netops-c... | s-archer/f5-super-netops-openshift | images/ansible/Dockerfile | Dockerfile | mit | 712 |
FROM python:3.8-alpine as builder
RUN apk add --progress \
build-base \
git \
linux-headers \
postgresql-dev
WORKDIR /wheels
RUN pip wheel psycopg2
WORKDIR /app
COPY . .
RUN pip wheel -w /wheels .
FROM python:3.8-alpine
RUN apk add --no-cache --progress libpq
WORKDIR /cardinal
COPY docker-entrypoi... | FallenWarrior2k/cardinal.py | Dockerfile | Dockerfile | mit | 559 |
FROM hpess/devenv:master
MAINTAINER Karl Stoney <karl.stoney@hp.com>
# Corkscrew for tunnling ssh over https
RUN cd /tmp && \
wget http://agroman.net/corkscrew/corkscrew-2.0.tar.gz && \
tar -xvzf corkscrew-* && \
cd corkscrew-* && \
./configure && \
make && \
make install && \
rm -rf /tmp/c... | Hewlett-Packard-ESS/docker-devenv-nodejs | Dockerfile | Dockerfile | mit | 1,880 |
FROM lsiobase/alpine.armhf
COPY qemu-arm-static /usr/bin/
# Resin-xbuild
COPY resin-xbuild /usr/bin/
RUN ln -s resin-xbuild /usr/bin/cross-build-start && \
ln -s resin-xbuild /usr/bin/cross-build-end
# set version label
#ARG BUILD_DATE
#ARG VERSION
#LABEL build_version="Linuxserver.io version:- ${VERSION} Build-d... | devster31/docker-images | flexget/Dockerfile | Dockerfile | mit | 1,139 |
# AUTOGENERATED FILE
FROM balenalib/npe-x500-m3-fedora:30-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.p... | nghiant2710/base-images | balena-base-images/node/npe-x500-m3/fedora/30/12.21.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,758 |
# AUTOGENERATED FILE
FROM balenalib/asus-tinker-board-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 63C7CC9... | nghiant2710/base-images | balena-base-images/python/asus-tinker-board/ubuntu/xenial/3.5.10/build/Dockerfile | Dockerfile | apache-2.0 | 4,840 |
# docker build -t scikit .
FROM atlas
RUN PIP_PKGS="pandas scikit-learn xgboost" && \
easy_install pip && \
pip install $PIP_PKGS
# docker run <container> /tmp/benchmark
ENTRYPOINT ["python"]
CMD ["--help"]
| nzwulfin/contained-science | python/scikit/Dockerfile | Dockerfile | apache-2.0 | 209 |
# AUTOGENERATED FILE
FROM balenalib/iot-gate-imx8-ubuntu:xenial-run
ENV GO_VERSION 1.16.3
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
&& apt... | nghiant2710/base-images | balena-base-images/golang/iot-gate-imx8/ubuntu/xenial/1.16.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,328 |
# AUTOGENERATED FILE
FROM balenalib/etcher-pro-debian:sid-build
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: public ... | resin-io-library/base-images | balena-base-images/python/etcher-pro/debian/sid/3.6.15/build/Dockerfile | Dockerfile | apache-2.0 | 4,848 |
# AUTOGENERATED FILE
FROM balenalib/beagleboard-xm-debian:bookworm-run
ENV NODE_VERSION 16.14.0
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keys... | resin-io-library/base-images | balena-base-images/node/beagleboard-xm/debian/bookworm/16.14.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,944 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-wifi-debian:sid-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/beaglebone-green-wifi/debian/sid/15.14.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,792 |
# AUTOGENERATED FILE
FROM balenalib/up-core-fedora:33-run
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
RUN dnf install -y \
python3-pip \
python3-dbus \
&& dnf clean all
# install "virtualenv", sinc... | nghiant2710/base-images | balena-base-images/python/up-core/fedora/33/3.7.9/run/Dockerfile | Dockerfile | apache-2.0 | 2,444 |
# AUTOGENERATED FILE
FROM balenalib/nanopi-r2c-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... | resin-io-library/base-images | balena-base-images/python/nanopi-r2c/alpine/3.12/3.10.2/run/Dockerfile | Dockerfile | apache-2.0 | 4,128 |
# AUTOGENERATED FILE
FROM balenalib/orange-pi-one-ubuntu:disco-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/orange-pi-one/ubuntu/disco/1.15.11/run/Dockerfile | Dockerfile | apache-2.0 | 2,357 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-gateway-debian:bullseye-build
ENV NODE_VERSION 17.6.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserver keyserver.pgp.com --recv-keys ... | resin-io-library/base-images | balena-base-images/node/beaglebone-green-gateway/debian/bullseye/17.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,797 |
# AUTOGENERATED FILE
FROM balenalib/up-core-plus-alpine:3.10-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/up-core-plus/alpine/3.10/1.14.14/run/Dockerfile | Dockerfile | apache-2.0 | 2,478 |
FROM centos:7
MAINTAINER karasek.jose@gmail.com
RUN yum -y install java-1.8.0-openjdk-devel.x86_64 maven lsof && yum clean all
ENV ARCHIVA_VERSION 2.2.0
ENV ARCHIVA_HOME /opt/archiva
RUN groupadd -r archiva -g 433 && useradd -u 431 -r -g archiva -d /opt/archiva -s /sbin/nologin -c "Archiva user" archiva
ADD apache... | josefkarasek/openshift-archiva | Dockerfile | Dockerfile | apache-2.0 | 537 |
FROM golang:1.10
MAINTAINER Alex Peters <info@alexanderpeters.de>
RUN apt-get update && apt-get install -y apt-transport-https ca-certificates jq curl gnupg2 software-properties-common
RUN curl -fsSL https://download.docker.com/linux/$(. /etc/os-release; echo "$ID")/gpg | apt-key add -
RUN add-apt-repository "deb [ar... | opencord/voltha | envoy/go/golang-builder/Dockerfile | Dockerfile | apache-2.0 | 1,443 |
# AUTOGENERATED FILE
FROM balenalib/astro-tx2-fedora:35-run
RUN dnf -y update \
&& dnf clean all \
&& dnf -y install \
gzip \
java-1.8.0-openjdk \
java-1.8.0-openjdk-devel \
tar \
&& dnf clean all
# set JAVA_HOME
ENV JAVA_HOME /usr/lib/jvm/java-openjdk
CMD ["echo","'No CMD command was set in Dockerfile! D... | resin-io-library/base-images | balena-base-images/openjdk/astro-tx2/fedora/35/8-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 1,315 |
# AUTOGENERATED FILE
FROM balenalib/n510-tx2-ubuntu:disco-run
ENV GO_VERSION 1.14.13
# 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/n510-tx2/ubuntu/disco/1.14.13/run/Dockerfile | Dockerfile | apache-2.0 | 2,323 |
# AUTOGENERATED FILE
FROM balenalib/surface-pro-6-alpine:3.10-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/surface-pro-6/alpine/3.10/1.16.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,477 |
# AUTOGENERATED FILE
FROM balenalib/nanopc-t4-alpine:3.15-run
ENV NODE_VERSION 17.6.0
ENV YARN_VERSION 1.22.4
# Install dependencies
RUN apk add --no-cache libgcc libstdc++ libuv \
&& apk add --no-cache libssl1.0 || apk add --no-cache libssl1.1
RUN buildDeps='curl' \
&& set -x \
&& for key in \
6A010C5166006599A... | resin-io-library/base-images | balena-base-images/node/nanopc-t4/alpine/3.15/17.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,016 |
# AUTOGENERATED FILE
FROM balenalib/edge-fedora:34-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", since... | resin-io-library/base-images | balena-base-images/python/edge/fedora/34/3.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,447 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-wifi-debian:buster-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 ... | nghiant2710/base-images | balena-base-images/golang/beaglebone-green-wifi/debian/buster/1.14.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,041 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi2-ubuntu:disco-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/raspberrypi2/ubuntu/disco/3.6.12/run/Dockerfile | Dockerfile | apache-2.0 | 4,071 |
# AUTOGENERATED FILE
FROM balenalib/coral-dev-ubuntu:eoan-build
ENV NODE_VERSION 10.24.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/coral-dev/ubuntu/eoan/10.24.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,754 |
# AUTOGENERATED FILE
FROM balenalib/cubox-i-alpine:3.11-build
# Default to UTF-8 file.encoding
ENV LANG C.UTF-8
# add a simple script that can auto-detect the appropriate JAVA_HOME value
# based on whether the JDK or only the JRE is installed
RUN { \
echo '#!/bin/sh'; \
echo 'set -e'; \
echo; \
echo 'dirname ... | nghiant2710/base-images | balena-base-images/openjdk/cubox-i/alpine/3.11/8-jdk/build/Dockerfile | Dockerfile | apache-2.0 | 1,756 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.