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 |
|---|---|---|---|---|---|
# Development
FROM ubuntu:16.04
# JRE installation and gcc
RUN apt-get update -y && apt-get install -y \
gcc \
pkg-config \
build-essential \
libsodium-dev \
libssl-dev \
libgmp3-dev \
build-essential \
libsqlite3-dev \
libsqlite0 \
cmake \
apt-transport-https \
ca-certi... | srottem/indy-sdk | vcx/ci/libindy.dockerfile | Dockerfile | apache-2.0 | 1,966 |
#
# Creates a docker container with SonarQube, incl. several plugins
#
FROM centos:7
MAINTAINER Marcel Birkner <marcel.birkner@codecentric.de>
ENV JAVA_OPTS "$JAVA_OPTS -Duser.country=DE -Duser.language=de -Duser.timezone=Europe/Berlin"
# Set the JAVA_HOME variable to make it clear where Java is located
ENV JAVA_HO... | CodingSpiderFox/docker-ci-tool-stack | sonar/Dockerfile | Dockerfile | mit | 2,176 |
# Copyright 2016 The Kubernetes Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to ... | n3wscott/service-catalog | build/build-image/Dockerfile | Dockerfile | apache-2.0 | 1,785 |
## build from lucida base image
FROM lucida_base
## environment variables
ENV LUCIDAROOT /usr/local/lucida/lucida
ENV LD_LIBRARY_PATH /usr/local/lib
## install QA
RUN mkdir -p /usr/local/lucida/lucida/questionanswering/OpenEphyra
ADD . /usr/local/lucida/lucida/questionanswering/OpenEphyra
WORKDIR "/usr/local/lucida/l... | claritylab/sirius | lucida/questionanswering/OpenEphyra/Dockerfile | Dockerfile | bsd-3-clause | 475 |
FROM ubuntu:16.04
RUN apt-get update && apt-get -y dist-upgrade \
&& apt-get -y install python-pip uwsgi virtualenv sudo python-dev libyaml-dev \
libsasl2-dev libldap2-dev nginx uwsgi-plugin-python mysql-client \
&& rm -rf /var/cache/apt/archives/*
RUN useradd -m -s /bin/bash iris
COPY ../../setup.py ... | linkedin/iris | ops/docker/Dockerfile | Dockerfile | bsd-2-clause | 946 |
# 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... | annarev/tensorflow | tensorflow/tools/dockerfiles/dockerfiles/onednn/centos-7-mpi-horovod-jupyter.Dockerfile | Dockerfile | apache-2.0 | 4,159 |
FROM debian:stable
MAINTAINER shanestarcher@gmail.com
#Docker Hub does not support docker 1.9 yet change back to ARG https://github.com/docker/hub-feedback/issues/460
ENV DOCKERIZE_VERSION=0.2.0
ENV KUBERNETES_VERSION=1.4.5
ENV KOMPOSE_VERSION=0.1.1
RUN \
apt-get update && \
apt-get install -y curl cron pytho... | sstarcher/job-runner | Dockerfile | Dockerfile | mit | 1,686 |
FROM alpine:latest
COPY monit /etc/monit
COPY checks /etc/monit/checks
COPY entry.sh /
RUN apk add -U monit bash util-linux lvm2 && \
rm -rf /var/cache/apk/* && \
mkdir -p /var/lib/monit/events && \
chmod 700 /etc/monit/monitrc && \
chmod +x /etc/monit/checks/* && \
# Cache config
cp -a /etc/m... | panubo/docker-monit | Dockerfile | Dockerfile | mit | 479 |
# Dockerfile for ThoughtWorks Go Server (http://www.go.cd)
#
# Inspired by:
# http://github.com/patforna/docker/go-server
# http://www.go.cd/2014/05/18/manage-agents-with-docker.html
FROM gocd/gocd-agent:14.4.0
#Install docker, so we can build images on agents
RUN echo deb https://get.docker.com/ubuntu docker main > ... | FredrikWendt/dockerApplicationServer | attic/gocdagent/Dockerfile | Dockerfile | mit | 1,041 |
########## OS ##########
FROM xtity/docker-centos7-elixir
########## OS ##########
########## PHOENIX ##########
ENV PHOENIX_APP_NAME deploy_phoenix
ENV PHOENIX_APP_REPO https://github.com/xtity/deploy_phoenix.git
ENV PHOENIX_APP_PORT 4000
# Expose phoenix app port
EXPOSE ${PHOENIX_APP_PORT}
# Install original phoe... | xtity/deploy_phoenix | Dockerfile | Dockerfile | mit | 2,425 |
ARG POTTO_NODE_VERSION
FROM node:${POTTO_NODE_VERSION}
RUN npm install -g yarn
WORKDIR /app
ARG POTTO_PUID
ENV POTTO_PUID ${POTTO_PUID}
RUN usermod -u ${POTTO_PUID} node
USER node | adalessa/potto | src/stubs/docker/node/Dockerfile | Dockerfile | mit | 185 |
FROM scratch
ADD files /files
ADD bibletagapi /bibletagapi
EXPOSE 8080
CMD ["/bibletagapi"] | bibletag/bibletagapi | Dockerfile | Dockerfile | mit | 91 |
FROM node:12-alpine
WORKDIR /home/node/app
COPY package.json .
RUN npm install --quiet
COPY . . | vlakam/shizoid | Dockerfile | Dockerfile | mit | 98 |
# Usage:
# docker run -d \
# -v /etc/localtime:/etc/localtime:ro \
# -v /tmp/.X11-unix:/tmp/.X11-unix \
# -e "DISPLAY=unix${DISPLAY}" \
# -v /usr/share/X11:/usr/share/X11:ro \
# --net host \
# --cap-add NET_ADMIN \
# --name opensnitch \
# r.j3ss.co/opensnitch
#
FROM r.j3ss.co/opensnitchd:latest
ENV HOME /home/... | rothgar/dockerfiles | opensnitch/Dockerfile | Dockerfile | mit | 547 |
#
# Builder
#
FROM abiosoft/caddy:builder as builder
ARG version="1.0.3"
ARG plugins="git,cors,realip,expires,cache,cloudflare"
ARG enable_telemetry="true"
# Process Wrapper
RUN go get -v github.com/abiosoft/parent
RUN VERSION=${version} PLUGINS=${plugins} ENABLE_TELEMETRY=${enable_telemetry} /bin/sh /usr/bin/builde... | abiosoft/caddy-docker | php/Dockerfile | Dockerfile | mit | 2,450 |
# @description php 7.1 image base on the alpine 3.7 镜像更小,构建完成只有46M
# some information
# ------------------------------------------------------------------------------------
# @link https://hub.docker.com/_/alpine/ alpine image
# @link https://hub.docker.com/_/php/ php image
# @link ht... | inhere/dockerenv | dockerfiles/php/alpine/alphp-fpm.Dockerfile | Dockerfile | mit | 1,427 |
FROM microsoft/aspnetcore:2.0
ARG source
WORKDIR /app
EXPOSE 80
COPY ${source:-obj/Docker/publish} .
ENTRYPOINT ["dotnet", "SampleSASApi.dll"]
| ramakrishnateja/AzureSASGenerator | examples/SampleSASApi/Dockerfile | Dockerfile | mit | 143 |
FROM centos:centos6
# Enable EPEL for Node.js.
RUN rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-8.noarch.rpm
# Install Node.js and npm.
RUN yum install -y npm
# Bundle app source.
COPY . /src
# Install app dependencies.
RUN cd /src; npm install
EXPOSE 8080
CMD ["node", "/s... | glevine/write-good-service | Dockerfile | Dockerfile | mit | 331 |
# VERSION 1.1
# DOCKER-VERSION 1.2.0
# AUTHOR: Richard Lee <lifuzu@gmail.com>
# DESCRIPTION: Devbase Image Container
FROM dockerbase/openssh-server
# Run dockerbase script
ADD devbase.sh /dockerbase/
RUN /dockerbase/devbase.sh
| dockerbase/devbase | Dockerfile | Dockerfile | mit | 249 |
FROM buildpack-deps:jessie
RUN apt-get update \
&& apt-get install -y curl gettext wget \
&& rm -rf /var/lib/apt/lists/*
ENV MONO_VERSION 3.6.0
RUN mkdir /usr/src/mono \
&& curl -SL "http://download.mono-project.com/sources/mono/mono-$MONO_VERSION.tar.bz2" \
| tar -xjC /usr/src/mono --strip... | jamesottaway/mono-docker | Dockerfile | Dockerfile | mit | 584 |
FROM tomcat:8.5.19
LABEL maintainer="phithon <root@leavesongs.com>"
RUN sed -i 's/securerandom\.source=file:\/dev\/random/securerandom.source=file:\/dev\/.\/urandom/g' $JAVA_HOME/lib/security/java.security | vulhub/vulhub | base/tomcat/tomcat8.5.19/Dockerfile | Dockerfile | mit | 207 |
FROM ubuntu:trusty
MAINTAINER Justin Menga <justin.menga@gmail.com>
# Prevent dpkg errors
ENV TERM=xterm-256color
# Set mirrors to NZ
# RUN sed -i "s/http:\/\/archive./http:\/\/nz.archive./g" /etc/apt/sources.list
# Install Python runtime
RUN apt-get update && \
apt-get install -qy \
-o APT::Install-Recommen... | mikepolyak/bowling-kata | docker/base/Dockerfile | Dockerfile | apache-2.0 | 774 |
# AUTOGENERATED FILE
FROM balenalib/generic-armv7ahf-debian:sid-build
ENV NODE_VERSION 15.7.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserver keyserver.pgp.com --recv-keys "$key" || \
... | nghiant2710/base-images | balena-base-images/node/generic-armv7ahf/debian/sid/15.7.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,785 |
# AUTOGENERATED FILE
FROM balenalib/orange-pi-lite-debian:bookworm-run
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu67 \
libssl1.1 \... | resin-io-library/base-images | balena-base-images/dotnet/orange-pi-lite/debian/bookworm/3.1-aspnet/run/Dockerfile | Dockerfile | apache-2.0 | 3,133 |
FROM balenalib/amd64-fedora:32-build
LABEL io.balena.device-type="surface-pro-6"
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 inf... | nghiant2710/base-images | balena-base-images/device-base/surface-pro-6/fedora/32/build/Dockerfile | Dockerfile | apache-2.0 | 1,014 |
FROM node:5
WORKDIR /application
COPY package.json /application/
RUN npm install --unsafe-perm
COPY karma.conf.js protractor.config.js tsconfig.json typedoc.json webpack.config.js /application/
| pbecotte/wharfrat | frontend/Dockerfile | Dockerfile | apache-2.0 | 198 |
# AUTOGENERATED FILE
FROM balenalib/generic-amd64-fde-debian:bullseye-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.
#
# F... | resin-io-library/base-images | balena-base-images/openjdk/generic-amd64-fde/debian/bullseye/16-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 3,026 |
FROM octohost/ruby-2.0
ADD . /srv/www
RUN cd /srv/www; bundle install --deployment --without test development
EXPOSE 3000
CMD cd /srv/www; ./script/rails server | octohost/rails3 | Dockerfile | Dockerfile | apache-2.0 | 163 |
# AUTOGENERATED FILE
FROM balenalib/cl-som-imx8-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 ad... | resin-io-library/base-images | balena-base-images/python/cl-som-imx8/alpine/3.13/3.10.0/run/Dockerfile | Dockerfile | apache-2.0 | 4,129 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-ubuntu:focal-run
ENV GO_VERSION 1.16.3
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
&& a... | nghiant2710/base-images | balena-base-images/golang/beaglebone-green/ubuntu/focal/1.16.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,358 |
# AUTOGENERATED FILE
FROM balenalib/apalis-imx6-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: pu... | nghiant2710/base-images | balena-base-images/python/apalis-imx6/debian/stretch/3.8.6/build/Dockerfile | Dockerfile | apache-2.0 | 4,858 |
# AUTOGENERATED FILE
FROM balenalib/kitra520-alpine:3.12-build
ENV GO_VERSION 1.15.11
# set up nsswitch.conf for Go's "netgo" implementation
# - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275
# - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf
RUN [ ! -e /etc/nsswitch.conf ] && e... | nghiant2710/base-images | balena-base-images/golang/kitra520/alpine/3.12/1.15.11/build/Dockerfile | Dockerfile | apache-2.0 | 2,337 |
# Set nginx base image
FROM nginx
MAINTAINER Binura Gunasekara
# Copy custom configuration file from the current directory
COPY nginx.conf /etc/nginx/nginx.conf
COPY cert.pem /etc/nginx/cert.pem
COPY privkey.pem /etc/nginx/privkey.pem
| BinuraG/platformer-timesheet | nginx/Dockerfile | Dockerfile | apache-2.0 | 237 |
# AUTOGENERATED FILE
FROM balenalib/generic-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/generic/fedora/35/3.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,450 |
# AUTOGENERATED FILE
FROM balenalib/am571x-evm-alpine:edge-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 \
6A010C5166006599... | resin-io-library/base-images | balena-base-images/node/am571x-evm/alpine/edge/17.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,017 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-gateway-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
# instal... | resin-io-library/base-images | balena-base-images/python/beaglebone-green-gateway/ubuntu/bionic/3.10.2/run/Dockerfile | Dockerfile | apache-2.0 | 4,081 |
# AUTOGENERATED FILE
FROM balenalib/intel-nuc-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 dependenc... | nghiant2710/base-images | balena-base-images/python/intel-nuc/debian/sid/3.6.12/run/Dockerfile | Dockerfile | apache-2.0 | 4,095 |
# AUTOGENERATED FILE
FROM balenalib/via-vab820-quad-alpine:3.14-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 \
6A010C51660... | resin-io-library/base-images | balena-base-images/node/via-vab820-quad/alpine/3.14/17.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,022 |
# AUTOGENERATED FILE
FROM balenalib/zc702-zynq7-ubuntu:focal-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.co... | nghiant2710/base-images | balena-base-images/node/zc702-zynq7/ubuntu/focal/14.15.4/run/Dockerfile | Dockerfile | apache-2.0 | 2,917 |
# AUTOGENERATED FILE
FROM balenalib/n510-tx2-ubuntu:eoan-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-get up... | nghiant2710/base-images | balena-base-images/golang/n510-tx2/ubuntu/eoan/1.15.6/run/Dockerfile | Dockerfile | apache-2.0 | 2,319 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-alpine:3.13-run
ENV GO_VERSION 1.15.8
# set up nsswitch.conf for Go's "netgo" implementation
# - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275
# - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf
RUN [ ! -e /etc/nsswitch.conf ] &&... | nghiant2710/base-images | balena-base-images/golang/jetson-xavier/alpine/3.13/1.15.8/run/Dockerfile | Dockerfile | apache-2.0 | 2,470 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi3-ubuntu:focal-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" || \
gpg --keyserver ... | resin-io-library/base-images | balena-base-images/node/raspberrypi3/ubuntu/focal/12.22.9/build/Dockerfile | Dockerfile | apache-2.0 | 2,757 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-wifi-debian:sid-build
ENV GO_VERSION 1.15.8
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 "bde22202576c3920ff5646fb1d19877cedc19501939d6ccd7b16ff89071abd0a go$G... | nghiant2710/base-images | balena-base-images/golang/beaglebone-green-wifi/debian/sid/1.15.8/build/Dockerfile | Dockerfile | apache-2.0 | 2,033 |
# escape=`
ARG JAVA_VERSION=11.0.6
# we use the latest stable if nothing is passed
ARG POWERSHELL_VERSION=
FROM openjdk:${JAVA_VERSION}-windowsservercore-1809 as openjdk
FROM mcr.microsoft.com/powershell:${POWERSHELL_VERSION}nanoserver-1809
SHELL ["pwsh", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPrefe... | carlossg/docker-maven | openjdk-11-nanoserver/Dockerfile | Dockerfile | apache-2.0 | 1,771 |
# AUTOGENERATED FILE
FROM balenalib/generic-amd64-debian:bookworm-run
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu67 \
libssl1.1 \
... | resin-io-library/base-images | balena-base-images/dotnet/generic-amd64/debian/bookworm/3.1-sdk/run/Dockerfile | Dockerfile | apache-2.0 | 2,931 |
# AUTOGENERATED FILE
FROM balenalib/colibri-imx6-debian:bookworm-run
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu67 \
libssl1.1 \
... | resin-io-library/base-images | balena-base-images/dotnet/colibri-imx6/debian/bookworm/3.1-aspnet/run/Dockerfile | Dockerfile | apache-2.0 | 3,131 |
# AUTOGENERATED FILE
FROM balenalib/orange-pi-zero-ubuntu:cosmic-build
ENV GO_VERSION 1.14.14
RUN mkdir -p /usr/local/go \
&& curl -SLO "http://resin-packages.s3.amazonaws.com/golang/v$GO_VERSION/go$GO_VERSION.linux-armv7hf.tar.gz" \
&& echo "93a87bdde7d5dd8c7ba0570fd811cebdfb988a6393f5f660f4595566120e0620 go$GO_V... | nghiant2710/base-images | balena-base-images/golang/orange-pi-zero/ubuntu/cosmic/1.14.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,034 |
# AUTOGENERATED FILE
FROM balenalib/am571x-evm-debian:jessie-build
ENV NODE_VERSION 10.24.1
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserver keyserver.pgp.com --recv-keys "$key" || \
g... | nghiant2710/base-images | balena-base-images/node/am571x-evm/debian/jessie/10.24.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,787 |
# AUTOGENERATED FILE
FROM balenalib/nanopi-r2c-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/nanopi-r2c/debian/sid/3.9.10/build/Dockerfile | Dockerfile | apache-2.0 | 4,848 |
# AUTOGENERATED FILE
FROM balenalib/intel-nuc-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", ... | resin-io-library/base-images | balena-base-images/python/intel-nuc/fedora/35/3.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,452 |
# AUTOGENERATED FILE
FROM balenalib/aarch64-alpine:3.11-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 'dirname "$... | nghiant2710/base-images | balena-base-images/openjdk/aarch64/alpine/3.11/8-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 1,752 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-wifi-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 \
' \... | nghiant2710/base-images | balena-base-images/golang/beaglebone-green-wifi/ubuntu/xenial/1.16.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,365 |
# AUTOGENERATED FILE
FROM balenalib/nuc-fedora:33-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" || \
gpg --keyserver keyserver.ub... | resin-io-library/base-images | balena-base-images/node/nuc/fedora/33/12.22.9/build/Dockerfile | Dockerfile | apache-2.0 | 2,747 |
# AUTOGENERATED FILE
FROM balenalib/nuc-debian:bullseye-build
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: public ke... | nghiant2710/base-images | balena-base-images/python/nuc/debian/bullseye/3.7.9/build/Dockerfile | Dockerfile | apache-2.0 | 4,859 |
# AUTOGENERATED FILE
FROM balenalib/etcher-pro-debian:bullseye-build
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: pu... | resin-io-library/base-images | balena-base-images/python/etcher-pro/debian/bullseye/3.8.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,858 |
FROM python:2
COPY . /usr/src/app
RUN pip install -r /usr/src/app/requirements.txt
RUN cd /usr/src/app && python /usr/src/app/parse_transcript_markov.py
#CMD [ "pwd" ]
#CMD find /usr/src
CMD python /usr/src/app/back-and-forth.py
| edyesed/make_markov_debate_again | Dockerfile | Dockerfile | apache-2.0 | 230 |
# AUTOGENERATED FILE
FROM balenalib/up-core-plus-alpine:edge-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/up-core-plus/alpine/edge/1.16.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,476 |
# AUTOGENERATED FILE
FROM balenalib/cl-som-imx8-fedora:34-build
ENV NODE_VERSION 15.10.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver ha.p... | nghiant2710/base-images | balena-base-images/node/cl-som-imx8/fedora/34/15.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,754 |
# AUTOGENERATED FILE
FROM balenalib/generic-fedora:35-run
ENV NODE_VERSION 12.22.9
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver keyserver.... | resin-io-library/base-images | balena-base-images/node/generic/fedora/35/12.22.9/run/Dockerfile | Dockerfile | apache-2.0 | 2,747 |
FROM ubuntu:18.04
RUN apt-get update && apt-get install -y git curl ca-certificates unzip xz-utils && \
useradd rancher && \
mkdir -p /var/lib/rancher/etcd /var/lib/cattle /opt/jail /opt/drivers/management-state/bin && \
chown -R rancher /var/lib/rancher /var/lib/cattle /usr/local/bin
RUN mkdir /root/.kube ... | rancherio/rancher | package/Dockerfile | Dockerfile | apache-2.0 | 9,960 |
FROM ubuntu:14.04
# install some basic tools
RUN apt-get update && apt-get install -y \
autoconf \
automake \
make \
g++ \
gcc \
build-essential \
zlib1g-dev \
libgsl0-dev \
perl \
curl \
git \
wget \
unzip \
tabix \
libncurses5-dev
RUN apt-get install -y cpanminus
RUN apt-get install -y libmysqlclien... | TheJacksonLaboratory/CloudNeo | dockerfiles/variant-effect-predictor/Dockerfile | Dockerfile | apache-2.0 | 1,490 |
# AUTOGENERATED FILE
FROM balenalib/surface-pro-6-debian:stretch-build
ENV GO_VERSION 1.15.8
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-amd64.tar.gz" \
&& echo "d3379c32a90fdf9382166f8f48034c459a8cc433730bc9476d39d9082c94583b go$GO_VERSION.linux-amd64.tar.g... | nghiant2710/base-images | balena-base-images/golang/surface-pro-6/debian/stretch/1.15.8/build/Dockerfile | Dockerfile | apache-2.0 | 2,019 |
# AUTOGENERATED FILE
FROM balenalib/generic-debian:stretch-build
ENV NODE_VERSION 15.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" || \
gpg ... | nghiant2710/base-images | balena-base-images/node/generic/debian/stretch/15.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,787 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-nx-devkit-alpine:3.12-build
ENV NODE_VERSION 15.10.0
ENV YARN_VERSION 1.22.4
# Install dependencies
RUN apk add --no-cache libgcc libstdc++ libuv \
&& apk add --no-cache libssl1.0 || apk add --no-cache libssl1.1
RUN for key in \
6A010C5166006599AA17F08146C2130DFD24... | nghiant2710/base-images | balena-base-images/node/jetson-xavier-nx-devkit/alpine/3.12/15.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,970 |
# AUTOGENERATED FILE
FROM balenalib/asus-tinker-board-debian:bullseye-build
ENV NODE_VERSION 14.15.4
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserver keyserver.pgp.com --recv-keys "$key"... | nghiant2710/base-images | balena-base-images/node/asus-tinker-board/debian/bullseye/14.15.4/build/Dockerfile | Dockerfile | apache-2.0 | 2,798 |
FROM docker.io/java:openjdk-8-jdk
MAINTAINER pepe_team@prokarma.com
RUN \
mkdir /pepe
COPY *.jar /pepe/
COPY sonar-codequality-properties-builder.sh /pepe/
WORKDIR /pepe
VOLUME ["/pepe/logs"]
CMD ./sonar-codequality-properties-builder.sh && \
java -jar sonar-codequality-collector*.jar --spring.config.locatio... | nagarjunareddy-dhanireddy/pkassessment | sonar-codequality-collector/docker/Dockerfile | Dockerfile | apache-2.0 | 373 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-gateway-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
# insta... | nghiant2710/base-images | balena-base-images/python/beaglebone-green-gateway/debian/stretch/3.8.6/run/Dockerfile | Dockerfile | apache-2.0 | 4,109 |
# AUTOGENERATED FILE
FROM balenalib/artik10-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 dependen... | nghiant2710/base-images | balena-base-images/python/artik10/ubuntu/cosmic/3.8.9/run/Dockerfile | Dockerfile | apache-2.0 | 4,066 |
FROM alpine:3.7
RUN apk add --no-cache openjdk8-jre
ENV MAVEN_VERSION=3.5.4 \
MAVEN_SHA1=22cac91b3557586bb1eba326f2f7727543ff15e3
RUN addgroup -g 9232 -S exporter ; \
adduser -D -S -u 9232 -G exporter exporter
ADD src /tmp/src
ADD pom.xml /tmp/pom.xml
RUN apk --update add --no-cache --virtual build-de... | jmal98/sqs_exporter | Dockerfile | Dockerfile | apache-2.0 | 982 |
# AUTOGENERATED FILE
FROM balenalib/orange-pi-zero-ubuntu:focal-run
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
ca-certificates \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu66 ... | resin-io-library/base-images | balena-base-images/dotnet/orange-pi-zero/ubuntu/focal/5.0-runtime/run/Dockerfile | Dockerfile | apache-2.0 | 2,560 |
# AUTOGENERATED FILE
FROM balenalib/colibri-imx6dl-alpine:3.12-run
# remove several traces of python
RUN apk del python*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# install python dependencies
RUN apk... | resin-io-library/base-images | balena-base-images/python/colibri-imx6dl/alpine/3.12/3.10.0/run/Dockerfile | Dockerfile | apache-2.0 | 4,132 |
FROM ubuntu:16.04
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y build-essential libmysqlclient-dev libwebsockets-dev mysql-client netcat wget
# Build the ASCL
COPY modules/ascl /opt/ASCL
RUN /opt/ASCL/build.sh
# Build manager
COPY modules/renewability /tmp/renewability
RUN /tmp/renewabi... | uel-aspire-fp7/renewability | Dockerfile | Dockerfile | bsd-2-clause | 700 |
FROM debian:8
MAINTAINER Shawn Waldon <shawn.waldon@kitware.com>
# Install packages
RUN apt-get update && apt-get install -y \
gcc \
g++ \
gfortran \
python-pip \
python-dev \
git \
libcurl4-openssl-dev \
curl \
libxt-dev \
libx11-dev \
libglu1-mesa-dev \
libxext-dev \
libz-dev \
xkb-data \... | mathturtle/tomviz-superbuild | itk-binaries/linux/Dockerfile | Dockerfile | bsd-3-clause | 831 |
from python:2.7-onbuild
expose 54321
entrypoint ["python", "relay.py"]
| OliverF/mjpeg-relay | Dockerfile | Dockerfile | mit | 73 |
FROM balenalib/amd64-alpine:3.13-build
LABEL io.balena.device-type="up-board"
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-board/alpine/3.13/build/Dockerfile | Dockerfile | apache-2.0 | 1,030 |
# AUTOGENERATED FILE
FROM balenalib/up-core-debian:buster-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 some sa... | nghiant2710/base-images | balena-base-images/openjdk/up-core/debian/buster/11-jre/build/Dockerfile | Dockerfile | apache-2.0 | 3,748 |
FROM scratch
ADD build/base-files.tar.gz /
COPY build/ca-certificates.crt /usr/etc/ssl/certs/
COPY build/dockerlaunch /usr/bin/
COPY build/docker /usr/bin/docker
VOLUME /var/lib/docker
ENTRYPOINT ["/usr/bin/dockerlaunch", "/usr/bin/docker"]
CMD ["-d", "-s", "overlay"]
| maxfierke/rancher-os | Godeps/_workspace/src/github.com/rancher/docker-from-scratch/Dockerfile | Dockerfile | apache-2.0 | 269 |
FROM ubuntu:latest
MAINTAINER Andruschenko "me@andrekovac.com"
RUN apt-get update -y
RUN apt-get install -y tar git curl nano build-essential
# RUN apt-get install -y python3.5 python-pip python3.5-dev build-essential python-numpy
RUN apt-get install -y python3.5 python3.5-dev python-distribute python-pip python-numpy
... | DerGut/opinio | Dockerfile | Dockerfile | mit | 500 |
FROM ubuntu:yakkety
# Install basic utility
RUN apt-get update && \
apt-get install -y \
ssh
# Install Postgres
RUN apt-get install -y postgresql-client-9.5
# Install Python for AWS CLI
RUN apt-get install -y \
python \
python-pip \
python-virtualenv \
groff
# Install AWS CLI
RUN pip install... | wearemolecule/postgres-s3-backup | Dockerfile | Dockerfile | mit | 503 |
FROM snapcraft/ubuntu-base:amd64-16.04.1
MAINTAINER Rex Tsai "http://about.me/chihchun"
ENV SNAPCRAFT_VERSION=2.17
ENV DEBIAN_FRONTEND=noninteractive
RUN sed -i "/^# deb.*universe/ s/^# //" /etc/apt/sources.list
RUN sed -i "/^# deb.*multiverse/ s/^# //" /etc/apt/sources.list
RUN apt-get update
# build and install sn... | chihchun/snapcraft-docker | xenial/amd64/2.17/Dockerfile | Dockerfile | mit | 1,531 |
FROM ubuntu:bionic
RUN \
apt-get update && \
mkdir /var/run/sshd && \
apt-get install -y openssh-server && \
useradd -m ttesterson && \
useradd -m rpeterson && \
echo 'ttesterson:testpass' | chpasswd && \
echo 'rpeterson:otherpass' | chpasswd
EXPOSE 22
CMD ["/usr/sbin/sshd", "-D"]
| pwnbus/scoring_engine | docker/testbed/ssh/Dockerfile | Dockerfile | mit | 299 |
FROM rpawel/ubuntu:xenial
## START
RUN apt-get -q -y update \
&& apt-get dist-upgrade -y --no-install-recommends \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y -q memcached locales tzdata \
&& DEBIAN_FRONTEND=newt
ADD build.sh /
ADD run.sh /
## START
RUN chmod +x /build.sh /run.sh \
&& bash /build.sh &&... | rPawel/docker-memcache | Dockerfile | Dockerfile | mit | 403 |
FROM openjdk:8-jre
LABEL maintainer="phithon <root@leavesongs.com>"
COPY logging.yml ./config/logging.yml
COPY docker-entrypoint.sh /
RUN set -ex \
&& mkdir -p /usr/share/elasticsearch \
&& wget -qO- https://download.elastic.co/elasticsearch/elasticsearch/elasticsearch-1.1.1.tar.gz | tar zx \
--strip... | vulhub/vulhub | base/elasticsearch/1.1.1/Dockerfile | Dockerfile | mit | 556 |
FROM perfectlysoft/ubuntu1510
RUN /usr/src/Perfect-Ubuntu/install_swift.sh --sure
RUN git clone https://github.com/michaeltrimm/redis-swift /usr/src/redis-swift
WORKDIR /usr/src/redis-swift
RUN swift build
CMD .build/debug/redis-swift --port 80
| michaeltrimm/redis-swift | Dockerfile | Dockerfile | mit | 245 |
# Ruby (https://www.ruby-lang.org/en/)
FROM ubuntu:precise
MAINTAINER Ryan Seto <ryanseto@yak.net>
RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list && \
apt-get update && \
apt-get upgrade
# Ensure UTF-8
RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8... | Painted-Fox/docker-ruby | Dockerfile | Dockerfile | mit | 795 |
# Start from a Debian image with the latest version of Go installed
# and a workspace (GOPATH) configured at /go.
FROM golang:1.4.2
RUN apt-get update && apt-get install -y \
pkg-config rsync devscripts libkrb5-dev liblzma-dev libcap-dev
RUN apt-get install -y sudo
CMD ["bash"]
| tw4dl/docker-golang-dev | Dockerfile | Dockerfile | mit | 283 |
# see https://repo.skype.com
FROM debian:jessie
RUN useradd --create-home user
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
apt-transport-https \
ca-certificates \
&& rm -rf /var/lib/apt/lists/*
# https://repo.skype.com/data/SKYPE-GPG-KEY
ENV SKYPE_REPO_GPG \
# pub 2048R/DF7587C3 201... | jakirkham/dockerfiles | skype/Dockerfile | Dockerfile | mit | 1,203 |
# Docker File for Ubuntu based identt
FROM ubuntu:bionic
MAINTAINER S Roychowdhury <sroycode@gmail.com>
ENV DEBIAN_FRONTEND noninteractive
ENV LANG C.UTF-8
RUN apt-get -y update -qq && \
apt-get -y install locales apt-utils software-properties-common && \
locale-gen en_US.UTF-8 && \
update-locale LANG=e... | sroycode/identt | docker/identt/Dockerfile | Dockerfile | mit | 1,475 |
FROM node:9
# USER root
RUN npm update
RUN npm install elm
RUN yarn add webpack webpack-dev-server elm-webpack-loader file-loader style-loader css-loader url-loader
RUN yarn add ace-css@1.1 font-awesome@4
RUN yarn add foreman
USER node
| kolov/k8s-stuff | node8/Dockerfile | Dockerfile | mit | 238 |
# AUTOGENERATED FILE
FROM balenalib/generic-armv7ahf-alpine:3.13-run
ENV NODE_VERSION 15.7.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 \
6A010C5166... | nghiant2710/base-images | balena-base-images/node/generic-armv7ahf/alpine/3.13/15.7.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,029 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-gateway-ubuntu:focal-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 \
... | nghiant2710/base-images | balena-base-images/golang/beaglebone-green-gateway/ubuntu/focal/1.15.11/run/Dockerfile | Dockerfile | apache-2.0 | 2,368 |
# AUTOGENERATED FILE
FROM balenalib/surface-pro-6-debian:sid-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" || \
g... | resin-io-library/base-images | balena-base-images/node/surface-pro-6/debian/sid/12.22.9/build/Dockerfile | Dockerfile | apache-2.0 | 2,781 |
FROM arm32v7/ubuntu:eoan
LABEL io.balena.architecture="armv7hf"
LABEL io.balena.qemu.version="5.2.0+balena4-arm"
COPY qemu-arm-static /usr/bin
RUN apt-get update && apt-get install -y --no-install-recommends \
sudo \
ca-certificates \
findutils \
gnupg \
dirmngr \
inetutils-ping \
netbase \
curl \
... | nghiant2710/base-images | balena-base-images/armv7hf/ubuntu/eoan/build/Dockerfile | Dockerfile | apache-2.0 | 3,653 |
# before docker build can be executed, the war file, the tomcat and the
# conf directory have to be copied into this folder (done by maven build)
# use java as a base image
FROM openjdk:11-jdk
# add webofneeds default config env variables
ENV WON_CONFIG_DIR=/usr/src/matcher-service/conf
ENV LOGBACK_CONFIG=logback.xml... | researchstudio-sat/webofneeds | webofneeds/won-docker/image/matcher-service/Dockerfile | Dockerfile | apache-2.0 | 977 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen6xq2g-alpine:3.14-run
ENV GO_VERSION 1.17.7
# 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/nitrogen6xq2g/alpine/3.14/1.17.7/run/Dockerfile | Dockerfile | apache-2.0 | 2,470 |
# AUTOGENERATED FILE
FROM balenalib/kitra710-ubuntu:bionic-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/kitra710/ubuntu/bionic/14.15.4/run/Dockerfile | Dockerfile | apache-2.0 | 2,912 |
FROM i386/alpine:3.13
LABEL io.balena.architecture="i386"
RUN apk add --no-cache \
bash \
ca-certificates \
curl \
dbus \
findutils \
tar \
udev \
gnupg \
&& echo $'#!/bin/sh\n\
set -e\n\
set -u\n\
n=0\n\
max=2\n\
until [ $n -gt $max ]; do\n\
set +e\n\
(\n\
apk add --no-cache "$@"\n\
)\n\
... | resin-io-library/base-images | balena-base-images/i386/alpine/3.13/build/Dockerfile | Dockerfile | apache-2.0 | 2,709 |
# AUTOGENERATED FILE
FROM balenalib/imx6ul-var-dart-fedora:30-build
ENV NODE_VERSION 14.16.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver ... | nghiant2710/base-images | balena-base-images/node/imx6ul-var-dart/fedora/30/14.16.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,762 |
# AUTOGENERATED FILE
FROM balenalib/ccimx8x-sbc-pro-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... | resin-io-library/base-images | balena-base-images/python/ccimx8x-sbc-pro/alpine/edge/3.8.12/run/Dockerfile | Dockerfile | apache-2.0 | 4,133 |
# AUTOGENERATED FILE
FROM balenalib/odyssey-x86-debian:buster-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/odyssey-x86/debian/buster/16.14.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,785 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.