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 |
|---|---|---|---|---|---|
# AUTOGENERATED FILE
FROM balenalib/jetson-nano-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: publ... | nghiant2710/base-images | balena-base-images/python/jetson-nano/ubuntu/disco/3.5.10/build/Dockerfile | Dockerfile | apache-2.0 | 4,832 |
FROM nvidia/cuda:8.0-cudnn6-devel-ubuntu16.04
MAINTAINER kohei
RUN echo "deb http://developer.download.nvidia.com/compute/machine-learning/repos/ubuntu1604/x86_64 /" > /etc/apt/sources.list.d/nvidia-ml.list
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential \
cmake \
... | smly/nips17_adversarial_attack | resources/docker/pytorch/Dockerfile | Dockerfile | apache-2.0 | 1,559 |
FROM biocontainers/biocontainers:vdebian-buster-backports_cv1
MAINTAINER biocontainers <biodocker@gmail.com>
LABEL software="edlib" \
base_image="biocontainers/biocontainers:vdebian-buster-backports_cv1" \
container="edlib" \
about.summary="library for sequence alignment using edit distance (Python3 m... | BioContainers/containers | edlib/1.2.4-1-deb-py3/Dockerfile | Dockerfile | apache-2.0 | 868 |
# AUTOGENERATED FILE
FROM balenalib/colibri-imx6dl-ubuntu:bionic-build
# A few reasons for installing distribution-provided OpenJDK:
#
# 1. Oracle. Licensing prevents us from redistributing the official JDK.
#
# 2. Compiling OpenJDK also requires the JDK to be installed, and it gets
# really hairy.
#
# For ... | nghiant2710/base-images | balena-base-images/openjdk/colibri-imx6dl/ubuntu/bionic/8-jre/build/Dockerfile | Dockerfile | apache-2.0 | 3,105 |
FROM ubuntu:14.04.1
# ---------------- #
# Installation #
# ---------------- #
# Install all prerequisites
RUN apt-get -y install software-properties-common
RUN add-apt-repository -y ppa:chris-lea/node.js
RUN apt-get -y update
RUN apt-get -y install python-django-tagging python-simplejson pyth... | lastfm/docker-grafana-graphite | Dockerfile | Dockerfile | apache-2.0 | 4,223 |
# AUTOGENERATED FILE
FROM balenalib/vab820-quad-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/vab820-quad/alpine/edge/8-jre/run/Dockerfile | Dockerfile | apache-2.0 | 1,760 |
FROM linuxkit/alpine:33063834cf72d563cd8703467836aaa2f2b5a300 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 \
libarchive-tools \
squashfs-tools \
&& true
RUN mv /out/etc/apk/repositories.upstream /out/etc/apk/reposit... | deitch/linuxkit | tools/mkimage-squashfs/Dockerfile | Dockerfile | apache-2.0 | 418 |
# Copyright 2019 The 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 writ... | vjpai/grpc | tools/dockerfile/test/python_stretch_3.8_x64/Dockerfile | Dockerfile | apache-2.0 | 2,305 |
FROM node:14.15.0-slim
COPY ./ ./
RUN npm install
ENV NODE_ENV production
EXPOSE 8080
CMD ["node", "graphql-postgres-app.js"]
| lneves/FrameworkBenchmarks | frameworks/JavaScript/express/express-graphql-postgres.dockerfile | Dockerfile | bsd-3-clause | 131 |
# 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 use ... | shiroyp/bigtop | docker/bigtop-puppet/debian-8/Dockerfile | Dockerfile | apache-2.0 | 899 |
FROM ubuntu:trusty
MAINTAINER John Dilts <john.dilts@enstratius.com>
RUN apt-get update && apt-get install -y wget curl git-core supervisor
RUN wget http://s3.amazonaws.com/influxdb/influxdb_0.8.8_amd64.deb
RUN dpkg -i influxdb_0.8.8_amd64.deb
ADD https://raw.githubusercontent.com/jbrien/sensu-docker/compose/support... | jbrien/sensu-docker | Influxdb/Dockerfile | Dockerfile | mit | 563 |
FROM node:10-alpine
ENV HOST 0.0.0.0
WORKDIR /usr/app/
COPY . .
RUN npm ci
| majdigital/bigworldgraph | frontend/Dockerfile | Dockerfile | mit | 79 |
FROM openjdk:11-jdk-slim
RUN mkdir -p /usr/src/restql-http
ADD ./dist /usr/src/restql-http
WORKDIR /usr/src/restql-http
CMD ./bin/run.sh
| B2W-BIT/restQL-server | Dockerfile | Dockerfile | mit | 140 |
FROM scratch
ADD precise-i386/ubuntu-precise-core-cloudimg-i386-root.tar.gz /
# a few minor docker-specific tweaks
# see https://github.com/docker/docker/blob/9a9fc01af8fb5d98b8eec0740716226fadb3735c/contrib/mkimage/debootstrap
RUN set -xe \
\
# https://github.com/docker/docker/blob/9a9fc01af8fb5d98b8eec0740716226fad... | wenerme/dockerfiles | ubuntu/precise-i386/Dockerfile | Dockerfile | mit | 4,398 |
# Drush Docker Container
FROM composer:1
MAINTAINER M Parker <mparker17@536298.no-reply.drupal.org>
# Add minimal dependencies.
RUN apk --no-cache add mysql-client \
&& docker-php-ext-install pdo_mysql \
&& rm -rf /var/cache/apk/*
# Install Drush using Composer
RUN composer global require drush/drush:"dev-mas... | mparker17/docker-mush | dev-master/Dockerfile | Dockerfile | mit | 759 |
FROM ruby:2.6
MAINTAINER rilian <rilian@railsreactor.com>
ENV NPM_CONFIG_LOGLEVEL info
ENV NODE_VERSION 8.6.0
ARG CHROME_VERSION="google-chrome-stable"
RUN CHROMEDRIVER_VERSION=$(wget -qO- http://chromedriver.storage.googleapis.com/LATEST_RELEASE) && \
wget -q -O - https://dl-ssl.google.com/linux/linux_signing_k... | Railsreactor/docker-ci | ruby/Dockerfile | Dockerfile | mit | 1,822 |
FROM php:7.4-cli
RUN apt-get update && apt-get install -y \
librtmp1 \
libonig-dev \
libfreetype6-dev \
libjpeg62-turbo-dev \
libmcrypt-dev \
libzip-dev \
git \
zlib1g-dev \
g++ \
libicu-dev \
unzip
# Install intl
RUN docker-php-e... | GulDmitry/algorithms | docker/Dockerfile | Dockerfile | mit | 842 |
FROM drupal:8
# add the Twig C extension
# https://www.drupal.org/node/2160643
# add the uploadprogress extension
# https://www.drupal.org/node/793264
RUN mkdir /tmp/twig_ext
WORKDIR /tmp/twig_ext
ENV TWIG_VERSION 1.22.3
ENV TWIG_MD5 41245d409760a0a1d27108a5470e2f6f
RUN curl -fSL "https://github.com/twigphp/Twig/a... | mayeco/docker-drupal-8 | Dockerfile | Dockerfile | mit | 1,040 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi4-64-ubuntu:bionic-build
ENV GO_VERSION 1.16.3
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \
&& echo "f4e96bbcd5d2d1942f5b55d9e4ab19564da4fad192012f6d7b0b9b055ba4208f go$GO_VERSION.linux-arm64.tar.... | nghiant2710/base-images | balena-base-images/golang/raspberrypi4-64/ubuntu/bionic/1.16.3/build/Dockerfile | Dockerfile | apache-2.0 | 2,004 |
# AUTOGENERATED FILE
FROM balenalib/surface-go-ubuntu:eoan-run
ENV NODE_VERSION 15.6.0
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com -... | nghiant2710/base-images | balena-base-images/node/surface-go/ubuntu/eoan/15.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,915 |
# AUTOGENERATED FILE
FROM balenalib/amd64-alpine:edge-build
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 ] && echo... | nghiant2710/base-images | balena-base-images/golang/amd64/alpine/edge/1.14.13/build/Dockerfile | Dockerfile | apache-2.0 | 2,341 |
# AUTOGENERATED FILE
FROM balenalib/up-core-fedora:35-build
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
RUN dnf install -y \
python3-pip \
python3-dbus \
&& dnf clean all
# install "virtualenv", si... | resin-io-library/base-images | balena-base-images/python/up-core/fedora/35/3.6.15/build/Dockerfile | Dockerfile | apache-2.0 | 2,450 |
FROM cogniteev/oracle-java:java8
RUN useradd etlguy
RUN mkdir -p /home/etlguy
ADD data-integration.tar.gz /home/etlguy/
ADD config.xml /home/etlguy/
RUN chown -R etlguy:etlguy /home/etlguy
EXPOSE 8080 9001
CMD ["sudo", "-u", "etlguy", "/home/etlguy/data-integration/carte.sh", "/home/etlguy/config.xml"]
| brosander/kettle-docker | src/plugin/dist/Dockerfile | Dockerfile | apache-2.0 | 307 |
# AUTOGENERATED FILE
FROM balenalib/imx8m-var-dart-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/imx8m-var-dart/alpine/3.12/3.6.15/run/Dockerfile | Dockerfile | apache-2.0 | 4,132 |
# AUTOGENERATED FILE
FROM balenalib/artik520-ubuntu:hirsute-run
ENV NODE_VERSION 14.18.3
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com... | resin-io-library/base-images | balena-base-images/node/artik520/ubuntu/hirsute/14.18.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,912 |
# AUTOGENERATED FILE
FROM balenalib/cl-som-imx8-ubuntu:focal-build
ENV NODE_VERSION 12.20.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/cl-som-imx8/ubuntu/focal/12.20.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,758 |
FROM centos
MAINTAINER Lothar Wieske <lothar.wieske@gmail.com>
RUN yum update -y && \
curl --insecure --junk-session-cookies --location --remote-name --silent --header "Cookie: oraclelicense=accept-securebackup-cookie" http://download.oracle.com/otn-pub/java/jdk/8-b132/jdk-8-linux-x64.rpm && \
yum localinstal... | lwieske/dockerfiles-java-8 | 8u00/jdk/Dockerfile | Dockerfile | apache-2.0 | 483 |
# Build from the Tomcat 8 with JRE 8 image
FROM tomcat:8.0.41-jre8
MAINTAINER Troy Washburn <troy.washburn@rentacenter.com>
ARG TOMCAT_MAJOR=8
ARG TOMCAT_VERSION=8.0.41
ARG LOG4J_VERSION=1.2.17
ARG MAVEN_VERSION=3.3.9
ARG LOGZ_LOG4J_VERSION=1.0.1
ARG SLF4J_VERSION=1.7.22
# https://issues.apache.org/jira/browse/INFRA-... | rentacenter/logzio | tomcat8-example/Dockerfile | Dockerfile | apache-2.0 | 3,663 |
# AUTOGENERATED FILE
FROM balenalib/qemux86-64-fedora:32-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.poo... | nghiant2710/base-images | balena-base-images/node/qemux86-64/fedora/32/15.7.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,758 |
# AUTOGENERATED FILE
FROM balenalib/up-board-fedora:34-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.s... | nghiant2710/base-images | balena-base-images/node/up-board/fedora/34/15.14.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,754 |
# AUTOGENERATED FILE
FROM balenalib/colibri-imx6dl-debian:buster-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 \
' \
&& ap... | nghiant2710/base-images | balena-base-images/golang/colibri-imx6dl/debian/buster/1.16.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,358 |
# AUTOGENERATED FILE
FROM balenalib/am571x-evm-ubuntu:cosmic-run
ENV NODE_VERSION 15.6.0
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com... | nghiant2710/base-images | balena-base-images/node/am571x-evm/ubuntu/cosmic/15.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,916 |
# AUTOGENERATED FILE
FROM balenalib/beagleboard-xm-fedora:34-build
RUN dnf -y update \
&& dnf clean all \
&& dnf -y install \
gzip \
java-1.8.0-openjdk \
java-1.8.0-openjdk-devel \
tar \
&& dnf clean all
# set JAVA_HOME
ENV JAVA_HOME /usr/lib/jvm/java-openjdk
CMD ["echo","'No CMD command was set in Docker... | resin-io-library/base-images | balena-base-images/openjdk/beagleboard-xm/fedora/34/8-jdk/build/Dockerfile | Dockerfile | apache-2.0 | 1,324 |
# AUTOGENERATED FILE
FROM balenalib/apalis-imx6-debian:bullseye-run
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu63 \
libssl1.1 \
... | nghiant2710/base-images | balena-base-images/dotnet/apalis-imx6/debian/bullseye/3.1-aspnet/run/Dockerfile | Dockerfile | apache-2.0 | 3,129 |
# AUTOGENERATED FILE
FROM balenalib/armv7hf-ubuntu:cosmic-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/armv7hf/ubuntu/cosmic/15.14.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,760 |
# AUTOGENERATED FILE
FROM balenalib/zc702-zynq7-ubuntu:focal-build
ENV NODE_VERSION 12.20.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/zc702-zynq7/ubuntu/focal/12.20.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,762 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypicm4-ioboard-fedora:35-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 "... | resin-io-library/base-images | balena-base-images/python/raspberrypicm4-ioboard/fedora/35/3.7.12/build/Dockerfile | Dockerfile | apache-2.0 | 2,450 |
# AUTOGENERATED FILE
FROM balenalib/up-board-ubuntu:impish-run
ENV NODE_VERSION 14.18.3
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com ... | resin-io-library/base-images | balena-base-images/node/up-board/ubuntu/impish/14.18.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,913 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx2-nx-devkit-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 py... | resin-io-library/base-images | balena-base-images/python/jetson-tx2-nx-devkit/ubuntu/bionic/3.9.10/run/Dockerfile | Dockerfile | apache-2.0 | 4,077 |
# AUTOGENERATED FILE
FROM balenalib/hummingboard2-debian:sid-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" || \
g... | nghiant2710/base-images | balena-base-images/node/hummingboard2/debian/sid/10.23.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,784 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-nx-devkit-seeed-2mic-hat-debian:bullseye-build
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libi... | resin-io-library/base-images | balena-base-images/dotnet/jetson-xavier-nx-devkit-seeed-2mic-hat/debian/bullseye/3.1-aspnet/build/Dockerfile | Dockerfile | apache-2.0 | 3,165 |
# AUTOGENERATED FILE
FROM balenalib/zc702-zynq7-alpine:3.14-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/zc702-zynq7/alpine/3.14/17.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,950 |
# AUTOGENERATED FILE
FROM balenalib/orangepi-plus2-debian:stretch-build
ENV NODE_VERSION 12.22.9
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/orangepi-plus2/debian/stretch/12.22.9/build/Dockerfile | Dockerfile | apache-2.0 | 2,787 |
# AUTOGENERATED FILE
FROM balenalib/colibri-imx6dl-alpine:3.12-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 \
;... | nghiant2710/base-images | balena-base-images/node/colibri-imx6dl/alpine/3.12/15.14.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,961 |
FROM ubuntu:16.04
ARG marathon_version
ENV DEBIAN_FRONTEND noninteractive
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv E56151BF && \
echo deb http://repos.mesosphere.com/ubuntu trusty main > /etc/apt/sources.list.d/mesosphere.list && \
apt-get update && \
apt-get install --no-install-recommends -y --force... | indigo-dc/marathon | Dockerfile | Dockerfile | apache-2.0 | 549 |
# AUTOGENERATED FILE
FROM balenalib/photon-nano-debian:buster-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/photon-nano/debian/buster/14.16.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,784 |
# AUTOGENERATED FILE
FROM balenalib/intel-nuc-ubuntu:focal-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 --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com ... | nghiant2710/base-images | balena-base-images/node/intel-nuc/ubuntu/focal/14.16.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,918 |
# AUTOGENERATED FILE
FROM balenalib/jetson-nano-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 depe... | nghiant2710/base-images | balena-base-images/python/jetson-nano/ubuntu/bionic/3.9.4/run/Dockerfile | Dockerfile | apache-2.0 | 4,070 |
# AUTOGENERATED FILE
FROM balenalib/up-core-plus-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 \
; d... | nghiant2710/base-images | balena-base-images/node/up-core-plus/alpine/3.10/14.15.4/build/Dockerfile | Dockerfile | apache-2.0 | 2,966 |
# AUTOGENERATED FILE
FROM balenalib/npe-x500-m3-debian:buster-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 "$key" || \
g... | resin-io-library/base-images | balena-base-images/node/npe-x500-m3/debian/buster/17.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,780 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen6x-ubuntu:bionic-run
ENV NODE_VERSION 14.18.3
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.co... | resin-io-library/base-images | balena-base-images/node/nitrogen6x/ubuntu/bionic/14.18.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,912 |
FROM ubuntu:xenial
RUN apt update
RUN apt install -y cmake libedit-dev g++ llvm-3.7-dev libncurses5-dev zlib1g-dev libreadline-dev
CMD mkdir -p /build && cd /build && cmake /src && make -j2 && make test
| libow/hobbes | docker/build/xenial.Dockerfile | Dockerfile | apache-2.0 | 206 |
# AUTOGENERATED FILE
FROM balenalib/n510-tx2-fedora:32-build
ENV GO_VERSION 1.15.8
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \
&& echo "0e31ea4bf53496b0f0809730520dee98c0ae5c530f3701a19df0ba0a327bf3d2 go$GO_VERSION.linux-arm64.tar.gz" | sha25... | nghiant2710/base-images | balena-base-images/golang/n510-tx2/fedora/32/1.15.8/build/Dockerfile | Dockerfile | apache-2.0 | 1,991 |
# AUTOGENERATED FILE
FROM balenalib/amd64-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: public key... | resin-io-library/base-images | balena-base-images/python/amd64/ubuntu/focal/3.7.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,830 |
# AUTOGENERATED FILE
FROM balenalib/orbitty-tx2-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: pub... | nghiant2710/base-images | balena-base-images/python/orbitty-tx2/debian/buster/3.8.9/build/Dockerfile | Dockerfile | apache-2.0 | 4,856 |
# AUTOGENERATED FILE
FROM balenalib/smarc-px30-ubuntu:cosmic-build
ENV NODE_VERSION 12.20.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/smarc-px30/ubuntu/cosmic/12.20.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,759 |
# AUTOGENERATED FILE
FROM balenalib/coral-dev-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 keyser... | resin-io-library/base-images | balena-base-images/node/coral-dev/fedora/35/14.18.3/build/Dockerfile | Dockerfile | apache-2.0 | 2,746 |
# AUTOGENERATED FILE
FROM balenalib/nebra-hnt-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 k... | nghiant2710/base-images | balena-base-images/python/nebra-hnt/debian/sid/3.6.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,850 |
# AUTOGENERATED FILE
FROM balenalib/blackboard-tx2-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/blackboard-tx2/debian/buster/5.0-runtime/run/Dockerfile | Dockerfile | apache-2.0 | 2,947 |
# AUTOGENERATED FILE
FROM balenalib/artik530-debian:jessie-run
ENV NODE_VERSION 15.6.0
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserver key... | nghiant2710/base-images | balena-base-images/node/artik530/debian/jessie/15.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,938 |
FROM alpine:3.5
RUN mkdir /opt
WORKDIR /opt
RUN NPROC=$(grep -c ^processor /proc/cpuinfo 2>/dev/null || 1) && \
echo "@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories && \
apk update && \
apk upgrade && \
apk add git cmake wget make libc-dev gcc g++ bzip2-dev boost-... | duizendnegen/osrm-backend | docker/Dockerfile | Dockerfile | bsd-2-clause | 2,062 |
#
# Copyright (c) 2014-2015, Thindeck.com
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met: 1) Redistributions of source code must retain the above
# copyright notice, this list of conditions and ... | pecko/thindeck | docker/java-maven/Dockerfile | Dockerfile | bsd-3-clause | 2,109 |
#################################################################################
# Dockerfile image that provides JBoss Drools Workbench 6.2.0.Final Showcase
#
# The web application binaries are downloaded from JBoss Nexus Repository.
#
# The Docker image generated name/tag is "jboss/drools-workbench-showcase:6.2.0.Fi... | alex-dixon/drools | drools-wb/showcase/Dockerfile | Dockerfile | mit | 1,715 |
# AUTOGENERATED FILE
FROM balenalib/smarc-px30-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.
#
# For so... | nghiant2710/base-images | balena-base-images/openjdk/smarc-px30/debian/bullseye/11-jre/build/Dockerfile | Dockerfile | apache-2.0 | 3,740 |
# AUTOGENERATED FILE
FROM balenalib/blackboard-tx2-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.
#
# Fo... | nghiant2710/base-images | balena-base-images/openjdk/blackboard-tx2/debian/bullseye/11-jre/build/Dockerfile | Dockerfile | apache-2.0 | 3,744 |
FROM dotnet/dotnet-22-runtime-centos7
# This image provides a .NET Core 2.2 environment you can use to run your .NET
# applications.
ENV PATH=/opt/app-root/src/.local/bin:/opt/app-root/src/bin:/opt/app-root/node_modules/.bin:${PATH} \
STI_SCRIPTS_PATH=/usr/libexec/s2i
LABEL io.k8s.description="Platform for buildi... | redhat-developer/s2i-dotnetcore | 2.2/build/Dockerfile | Dockerfile | apache-2.0 | 2,265 |
FROM %%KOLLA_NAMESPACE%%/%%KOLLA_PREFIX%%gnocchi-base:%%KOLLA_TAG%%
MAINTAINER Kolla Project (https://launchpad.net/kolla)
RUN yum install -y openstack-gnocchi-statsd && yum clean all
COPY start.sh /
CMD ["/start.sh"]
| jakedahn/kolla | docker/centos/binary/gnocchi/gnocchi-statsd/Dockerfile | Dockerfile | apache-2.0 | 221 |
# Copyright 2019 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applica... | karllessard/tensorflow | tensorflow/tools/dockerfiles/dockerfiles/cpu.Dockerfile | Dockerfile | apache-2.0 | 1,722 |
# 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, software
# distributed under th... | vasili-v/themis | vendor/github.com/apache/thrift/build/docker/old/debian-jessie/Dockerfile | Dockerfile | apache-2.0 | 6,338 |
#
# Dockerfile for shadowsocks-libev
#
FROM alpine:3.4
MAINTAINER Wind4 <puxiaping@gmail.com>
ENV BUILD_DEPS autoconf build-base curl libtool linux-headers openssl-dev asciidoc xmlto
RUN apk add --update $BUILD_DEPS
ENV BUILD_VER 2.5.0
RUN BUILD_SRC=https://github.com/shadowsocks/shadowsocks-libev/archive/v$BUILD_VER... | Wind4/docker-library | shadowsocks-libev/Dockerfile | Dockerfile | mit | 618 |
FROM centos:latest
RUN yum install -y bash zsh ksh
WORKDIR /app
COPY . /app
| thinkerbot/ts | dockerfiles/centos/Dockerfile | Dockerfile | mit | 76 |
FROM nodesource/fedora20-base
MAINTAINER William Blankenship <wblankenship@nodesource.com>
RUN curl -sL -o ns.rpm https://rpm.nodesource.com/pub_4.x/fc/20/x86_64/nodejs-4.0.0-1nodesource.fc20.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/20/node/4.0.0/Dockerfile | Dockerfile | mit | 476 |
# Freestore
#
# Version 1
# Start from a Debian image with the latest version of Go installed
# and a workspace (GOPATH) configured at /go.
FROM golang
MAINTAINER Mateus Braga <mateus.a.braga@gmail.com>
# Copy the local package files to the container's workspace.
#ADD . /go/src/github.com/mateusbraga/freestore
# Bu... | mateusbraga/freestore | Dockerfile | Dockerfile | mit | 593 |
FROM nginx
RUN /bin/sed -i -e 's/^\(user\s\+\)[a-z]\+;/\1root;/' /etc/nginx/nginx.conf
| thegillis/docker-nginx-as-root-hack | Dockerfile | Dockerfile | mit | 89 |
FROM geekaholic/rbenv
MAINTAINER Bud Siddhisena "bud@geekaholic.org"
ENV RUBY_VERSION 2.2.4
# Install default ruby, bundler
RUN . ~/.bashrc && rbenv install $RUBY_VERSION && rbenv global $RUBY_VERSION && \
gem install --no-ri --no-rdoc bundler
WORKDIR /app
CMD ["/bin/bash"]
| geekaholic/dockerfiles | rbenv/2.2.4/Dockerfile | Dockerfile | mit | 284 |
FROM shito/alpine-nginx:edge
MAINTAINER Sebastian Knoth <sk@bytepark.de>
# Add PHP 7
RUN apk upgrade -U && \
apk --update --repository=http://dl-4.alpinelinux.org/alpine/edge/testing add \
openssl \
php7 \
php7-xml \
php7-xsl \
php7-pdo \
php7-mcrypt \
php7-curl \
php7-json \
ph... | sebknoth/alpine-nginx-php7 | Dockerfile | Dockerfile | mit | 1,061 |
FROM dkarchmervue/python34-opencv3
# https://github.com/ampervue/docker-python34-opencv3
MAINTAINER David Karchmer <dkarchmer@gmail.com>
# ============================================================================
# As an example, we compile a small program to load an image and write out
# a gray scale version... | ampervue/docker-python34-opencv3 | example/Dockerfile | Dockerfile | mit | 1,731 |
FROM quay.io/eris/node
MAINTAINER Eris Industries <support@erisindustries.com>
RUN npm install --global gulp
# set user
USER $USER
WORKDIR $ERIS
VOLUME $ERIS
ENTRYPOINT "gulp" | AFDudley/afd-common | docker/gulp/Dockerfile | Dockerfile | mit | 177 |
FROM richarvey/nginx-php-fpm:php71
MAINTAINER Sam Mousa <sam@mousa.nl>
RUN apk --update add build-base
# Install sassc
RUN cd /tmp && \
git clone https://github.com/sass/libsass.git && \
export SASS_LIBSASS_PATH=/tmp/libsass && \
git clone https://github.com/sass/sass-spec.git && \
export SASS_SPEC_PA... | SAM-IT/docker-images | nginx-php-fpm-with-extensions/Dockerfile | Dockerfile | mit | 554 |
FROM python:2.7.8-onbuild
MAINTAINER Oliver Lade <oliver@runsimmer.com>
# Install Thrift and Docker inside the container.
RUN apt-get update && apt-get install -qq thrift-compiler docker.io
# Expose Bottle's listen port.
EXPOSE 5000
# Start the Bottle server.
CMD ["python", "./serve.py"]
| orlade/microsimmer | Dockerfile | Dockerfile | mit | 293 |
FROM busybox
ENV APP_HOME=/app
ENV APP_DATA=/app/data
ENV APP_LOGS=/app/logs
RUN mkdir -p ${APP_DATA}
RUN mkdir -p ${APP_LOGS}
COPY ./data/ ${APP_DATA}/
COPY server ${APP_HOME}/
COPY start.sh ${APP_HOME}/
EXPOSE 8087
WORKDIR ${APP_HOME}
RUN chmod +x server
RUN chmod +x start.sh
CMD /app/start.sh | alinvasile/avcfg | docker/avcfg-tcp-server/Dockerfile | Dockerfile | mit | 303 |
FROM debian:jessie
MAINTAINER John Downey <jdowney@gmail.com>
RUN apt-get update && apt-get install -y \
build-essential \
ca-certificates \
curl \
file \
sudo \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y -v
RUN /root/.cargo/bin/rustup targe... | jtdowney/dockerfiles | rust/Dockerfile | Dockerfile | mit | 389 |
# Generated automatically by update.sh
# Do no edit this file
FROM bigtruedata/scala:2.12.1
Run wget -O- "https://github.com/sbt/sbt/releases/download/v1.0.0/sbt-1.0.0.tgz" \
| tar xzf - -C /usr/local --strip-components=1 \
&& sbt exit
VOLUME /app
WORKDIR /app
CMD ["sbt"]
| bigtruedata/docker-sbt | 1.0.0/2.12.1/Dockerfile | Dockerfile | mit | 286 |
FROM alexcheng/apache2-php7
MAINTAINER Fu Cheng <alexcheng1982@gmail.com>
ENV MYSQL_HOST 127.0.0.1
ENV MYSQL_ROOT_PASSWORD myrootpassword
ENV MYSQL_USER magento
ENV MYSQL_PASSWORD magento
ENV MYSQL_DATABASE magento
# add our user and group first to make sure their IDs get assigned consistently, regardless of whateve... | DynamicYield/Magento2-Devbox | Dockerfile | Dockerfile | mit | 6,420 |
# AUTOGENERATED FILE
FROM balenalib/up-core-alpine:3.14-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 ... | resin-io-library/base-images | balena-base-images/openjdk/up-core/alpine/3.14/8-jre/build/Dockerfile | Dockerfile | apache-2.0 | 1,775 |
FROM alpine:3.13.6
LABEL com.jfrog.artifactory.retention.maxCount="25"
RUN apk add --no-cache openjdk11
COPY target/stateless-async-jee-car-sim-*-microbundle.jar /app.jar
COPY src/main/payara/post-boot.txt /post-boot.txt
ENTRYPOINT ["java", "-jar", "/app.jar", "--postbootcommandfile", "/post-boot.txt"]
| bmwcarit/joynr | examples/stateless-async/stateless-async-jee-car-sim/Dockerfile | Dockerfile | apache-2.0 | 307 |
# AUTOGENERATED FILE
FROM balenalib/srd3-tx2-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: public... | nghiant2710/base-images | balena-base-images/python/srd3-tx2/ubuntu/cosmic/2.7.18/build/Dockerfile | Dockerfile | apache-2.0 | 5,202 |
# AUTOGENERATED FILE
FROM balenalib/vab820-quad-ubuntu:hirsute-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 --keyserver ... | resin-io-library/base-images | balena-base-images/node/vab820-quad/ubuntu/hirsute/17.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,758 |
# AUTOGENERATED FILE
FROM balenalib/aio-3288c-alpine:3.10-build
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/aio-3288c/alpine/3.10/1.14.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,338 |
# AUTOGENERATED FILE
FROM balenalib/srd3-tx2-fedora:33-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", s... | nghiant2710/base-images | balena-base-images/python/srd3-tx2/fedora/33/3.6.12/build/Dockerfile | Dockerfile | apache-2.0 | 2,436 |
# AUTOGENERATED FILE
FROM balenalib/asus-tinker-board-debian:sid-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 \
' \
&& ap... | nghiant2710/base-images | balena-base-images/golang/asus-tinker-board/debian/sid/1.15.8/run/Dockerfile | Dockerfile | apache-2.0 | 2,355 |
# AUTOGENERATED FILE
FROM balenalib/cl-som-imx8-ubuntu:bionic-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 \
' \
&& apt-... | nghiant2710/base-images | balena-base-images/golang/cl-som-imx8/ubuntu/bionic/1.14.14/run/Dockerfile | Dockerfile | apache-2.0 | 2,328 |
# AUTOGENERATED FILE
FROM balenalib/kitra710-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", s... | resin-io-library/base-images | balena-base-images/python/kitra710/fedora/34/3.9.7/build/Dockerfile | Dockerfile | apache-2.0 | 2,435 |
# AUTOGENERATED FILE
FROM balenalib/intel-edison-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 dep... | resin-io-library/base-images | balena-base-images/python/intel-edison/ubuntu/bionic/3.6.15/run/Dockerfile | Dockerfile | apache-2.0 | 4,069 |
FROM golang:1.5.3
MAINTAINER KS Chan <mrkschan@gmail.com>
## Install go package dependencies
RUN set -x \
go get \
github.com/pierrre/gotestcover \
github.com/tsg/goautotest \
golang.org/x/tools/cmd/cover \
golang.org/x/tools/cmd/vet
ENV GO15VENDOREXPERIMENT=1
| mrkschan/nginxbeat | Dockerfile | Dockerfile | apache-2.0 | 269 |
# AUTOGENERATED FILE
FROM balenalib/nuc-fedora:34-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", since th... | resin-io-library/base-images | balena-base-images/python/nuc/fedora/34/3.9.7/run/Dockerfile | Dockerfile | apache-2.0 | 2,440 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi2-debian:bullseye-build
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/raspberrypi2/debian/bullseye/5.0-aspnet/build/Dockerfile | Dockerfile | apache-2.0 | 3,135 |
# AUTOGENERATED FILE
FROM balenalib/apalis-imx6q-debian:buster-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... | nghiant2710/base-images | balena-base-images/golang/apalis-imx6q/debian/buster/1.14.13/run/Dockerfile | Dockerfile | apache-2.0 | 2,358 |
# AUTOGENERATED FILE
FROM balenalib/blackboard-tx2-ubuntu:bionic-build
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: ... | nghiant2710/base-images | balena-base-images/python/blackboard-tx2/ubuntu/bionic/3.8.9/build/Dockerfile | Dockerfile | apache-2.0 | 4,835 |
# AUTOGENERATED FILE
FROM balenalib/kitra710-fedora:33-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", s... | resin-io-library/base-images | balena-base-images/python/kitra710/fedora/33/3.9.7/build/Dockerfile | Dockerfile | apache-2.0 | 2,435 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.