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 nginx
MAINTAINER Alexander Li <a.li@playboy.de>
RUN rm /etc/nginx/nginx.conf
ADD nginx.conf /etc/nginx/
RUN \
apt-get update && apt-get -y install apt-utils && \
apt-get -y install wget && \
apt-get -y install imagemagick && \
wget http://pear.php.net/go-pear.phar && \
apt-get -y install vim && \
# I... | alex0412/docker-nginx-php | Dockerfile | Dockerfile | mit | 2,150 |
# Run Chrome Headless in a container
#
# What was once a container using the experimental build of headless_shell from
# tip, this container now runs and exposes stable Chrome headless via
# google-chome --headless.
#
# What's New
#
# 1. Pulls from Chrome Stable
# 2. You can now use the ever-awesome Jessie Frazelle sec... | justinribeiro/dockerfiles | chrome-headless/Dockerfile | Dockerfile | mit | 2,098 |
FROM ubuntu:focal
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
avr-libc \
binutils-arm-none-eabi \
binutils-avr \
ca-certificates \
dfu-util \
gcc \
gcc-arm-none-eabi \
gcc-avr \
git-core \
libnewlib-arm-none-eabi \
make \
... | KyleOndy/dotfiles | keyboard/Dockerfile | Dockerfile | mit | 1,048 |
FROM haskell:7.8
MAINTAINER Lyndon Maydwell <maydwell@gmail.com>
RUN cabal update
ADD . /opt/deadpan-ddp
RUN cd /opt/deadpan-ddp && cabal install -j4
RUN apt-get update
RUN apt-get -y install zip 1> /dev/null 2> /dev/null
ENV PATH /root/.cabal/bin:/bin:/opt/X11/bin:/opt/local/sbin:/sbin:/usr/X11R6/bin:/usr/bin:/usr/l... | sordina/Deadpan-DDP | Dockerfile | Dockerfile | mit | 478 |
# Dock de prod pour application python 3.4 / uwsgi
# Pour mettre à jours les sources il faut relancer le dock
FROM ubuntu:latest
MAINTAINER Maxime Rayanal <me@maxproject.fr>
ENV GIT_URL 'http://github.io/user/project.git'
# Il faut remplacer __application__ par le nom de l'application
ENV PROJECT_DIRECTORY '/var/www/... | MaximeRaynal/docker-files | application/uwsgi/Dockerfile | Dockerfile | mit | 1,111 |
FROM ubuntu
COPY search /usr/bin/
COPY static /usr/share/search
EXPOSE 8080
ENV ELASTIC_URL http://elastic:9200
ENV GIN_MODE release
ENV STATIC_FOLDER /usr/share/search/
CMD /usr/bin/search
| yellowiscool/magnets | Dockerfile | Dockerfile | mit | 190 |
FROM node:6
RUN mkdir -p /server
WORKDIR /server
COPY package.json /server/
RUN npm install
COPY .babelrc ./
COPY db/ ./db
COPY *.js ./
COPY models/ ./models
COPY migrations/ ./migrations
COPY client/ ./client
COPY api/ ./api
RUN npm run build
EXPOSE 5000
VOLUME db
CMD [ "npm", "start" ] | Matterwiki/Matterwiki | Dockerfile | Dockerfile | mit | 295 |
FROM google/nodejs-runtime
MAINTAINER Dennis de Greef <github@link0.net>
| dennisdegreef/mqtt-hue-bridge | Dockerfile | Dockerfile | mit | 74 |
FROM debian:stretch
MAINTAINER ivan4th <ivan4th@gmail.com>
ENV DEBIAN_FRONTEND noninteractive
RUN echo "deb [arch=amd64] http://releases.contactless.ru/stable/stretch stretch main" > /etc/apt/sources.list.d/contactless.list && \
sed -e "s/httpredir.debian.org/mirror.yandex.ru/g" -i /etc/apt/sources.list && \
... | contactless/wirenboard | devenv/Dockerfile | Dockerfile | mit | 4,025 |
FROM debezium/kafka:1.9
LABEL maintainer="Debezium Community"
USER root
RUN microdnf -y install libaio && microdnf clean all
USER kafka
EXPOSE 8083
VOLUME ["/kafka/data","/kafka/logs","/kafka/config"]
COPY docker-entrypoint.sh /
COPY --chown=kafka:kafka log4j.properties $KAFKA_HOME/config/log4j.properties
COPY doc... | debezium/docker-images | connect-base/1.9/Dockerfile | Dockerfile | mit | 2,564 |
FROM fedora:20
MAINTAINER "Andy Thompson" <andy@webtatic.com>
ENV container docker
# Update all base packages to keep them fresh
RUN yum -y update; yum clean all
# Turn off most systemd services
RUN (cd /lib/systemd/system/sysinit.target.wants/; for i in *; do [ $i == systemd-tmpfiles-setup.service ] || rm -f $i; don... | webtatic-dockerfiles/fedora20 | Dockerfile | Dockerfile | mit | 890 |
FROM scratch
MAINTAINER CIeNET
ADD centos4.7-i386-image.tar.gz /
ADD CentOS-Base.repo /etc/yum.repos.d/
# Fix RPM database error
RUN rm /var/lib/rpm/*
RUN rpm --initdb
ENTRYPOINT ["linux32"]
CMD ["/bin/bash"]
| cienet/docker-centos-4 | 4.7/Dockerfile | Dockerfile | mit | 213 |
###################################################
## # build command: ##
## docker build -f Dockerfile .. -t atk4_ui_demo ##
## # run command: ##
## docker run --rm -p 80:80 -it atk4_ui_demo ##
###################################################
FROM ph... | atk4/ui | demos/Dockerfile | Dockerfile | mit | 1,589 |
FROM ruby:1.9.3
MAINTAINER Giles Dring <giles@dringtech.com>
# Install dependencies
RUN apt-get update -qq && apt-get install -y build-essential
ENV COMPONENT=publisher
RUN mkdir /${COMPONENT}
WORKDIR /${COMPONENT}
# Need to add Gemfile and Gemfile.lock to ensure that gems are installed correctly
ADD repo/Gemfile /${CO... | dringtech/dockerfleeg | publisher/Dockerfile | Dockerfile | mit | 899 |
# VERSION v1
# docker build -t="liulantao/fpm" .
FROM liulantao/centos6
MAINTAINER Liu Lantao <liulantao@gmail.com>
ENV REFRESHED_AT 2016-08-25
RUN yum install tar which -y && yum clean all
RUN gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3
RUN curl -sSL https://get.rvm.io | b... | Lax/Dockerfile | fpm/Dockerfile | Dockerfile | mit | 405 |
# Container for Sage with MariaDB and Python.
#
# http://www.sagemath.org/
# https://www.mariadb.org/
#
FROM tylertreat/mariapy
MAINTAINER Tyler Treat <tyler.treat@webfilings.com>
RUN apt-get update
RUN apt-get install -y build-essential ca-certificates m4 curl
RUN curl -Lso /tmp/sage-6.1.1.tar.gz http://bo... | tylertreat/dockerfiles | sage-mariapy/Dockerfile | Dockerfile | apache-2.0 | 526 |
FROM logstash:latest
RUN apt-get update && apt-get install pv
COPY docker-entrypoint.sh /
ENV HOME /od-index
COPY config/log4j2.properties /etc/logstash
COPY config $HOME/config
COPY ArcGIS_Open_Data_Index.txt.gz /tmp
| dmfenton/ArcGIS_Open_Data_Index | Dockerfile | Dockerfile | apache-2.0 | 224 |
# AUTOGENERATED FILE
FROM balenalib/intel-nuc-alpine:edge-run
ENV GO_VERSION 1.14.13
# set up nsswitch.conf for Go's "netgo" implementation
# - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275
# - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf
RUN [ ! -e /etc/nsswitch.conf ] && ec... | nghiant2710/base-images | balena-base-images/golang/intel-nuc/alpine/edge/1.14.13/run/Dockerfile | Dockerfile | apache-2.0 | 2,475 |
# AUTOGENERATED FILE
FROM balenalib/aarch64-ubuntu:cosmic-run
ENV GO_VERSION 1.15.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 u... | nghiant2710/base-images | balena-base-images/golang/aarch64/ubuntu/cosmic/1.15.7/run/Dockerfile | Dockerfile | apache-2.0 | 2,322 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-pocket-ubuntu:focal-run
ENV GO_VERSION 1.14.14
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
&&... | nghiant2710/base-images | balena-base-images/golang/beaglebone-pocket/ubuntu/focal/1.14.14/run/Dockerfile | Dockerfile | apache-2.0 | 2,361 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-wifi-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; \
... | resin-io-library/base-images | balena-base-images/openjdk/beaglebone-green-wifi/alpine/3.14/7-jdk/build/Dockerfile | Dockerfile | apache-2.0 | 1,770 |
# AUTOGENERATED FILE
FROM balenalib/astro-tx2-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/astro-tx2/debian/bookworm/3.1-runtime/run/Dockerfile | Dockerfile | apache-2.0 | 2,529 |
# AUTOGENERATED FILE
FROM balenalib/colibri-imx6-alpine:3.10-run
ENV NODE_VERSION 15.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 \
6A010C51660065... | nghiant2710/base-images | balena-base-images/node/colibri-imx6/alpine/3.10/15.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,025 |
# AUTOGENERATED FILE
FROM balenalib/surface-go-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/surface-go/fedora/35/3.7.12/build/Dockerfile | Dockerfile | apache-2.0 | 2,453 |
# AUTOGENERATED FILE
FROM balenalib/ccimx8x-sbc-pro-alpine:3.11-run
ENV NODE_VERSION 15.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... | nghiant2710/base-images | balena-base-images/node/ccimx8x-sbc-pro/alpine/3.11/15.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,028 |
# AUTOGENERATED FILE
FROM balenalib/odroid-u3+-alpine:3.11-build
ENV NODE_VERSION 15.14.0
ENV YARN_VERSION 1.22.4
# Install dependencies
RUN apk add --no-cache libgcc libstdc++ libuv \
&& apk add --no-cache libssl1.0 || apk add --no-cache libssl1.1
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do ... | nghiant2710/base-images | balena-base-images/node/odroid-u3+/alpine/3.11/15.14.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,957 |
# AUTOGENERATED FILE
FROM balenalib/zc702-zynq7-alpine:3.12-build
ENV GO_VERSION 1.15.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 ] &&... | nghiant2710/base-images | balena-base-images/golang/zc702-zynq7/alpine/3.12/1.15.7/build/Dockerfile | Dockerfile | apache-2.0 | 2,338 |
# AUTOGENERATED FILE
FROM balenalib/n310-tx2-debian:bookworm-build
ENV GO_VERSION 1.16.14
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \
&& echo "5e59056e36704acb25809bcdb27191f27593cb7aba4d716b523008135a1e764a go$GO_VERSION.linux-arm64.tar.gz" ... | resin-io-library/base-images | balena-base-images/golang/n310-tx2/debian/bookworm/1.16.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,003 |
# AUTOGENERATED FILE
FROM balenalib/hummingboard-debian:buster-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 \
' \
&& apt... | resin-io-library/base-images | balena-base-images/golang/hummingboard/debian/buster/1.16.14/run/Dockerfile | Dockerfile | apache-2.0 | 2,358 |
# AUTOGENERATED FILE
FROM balenalib/odyssey-x86-debian:stretch-run
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# install python dep... | resin-io-library/base-images | balena-base-images/python/odyssey-x86/debian/stretch/3.10.2/run/Dockerfile | Dockerfile | apache-2.0 | 4,101 |
# AUTOGENERATED FILE
FROM balenalib/nanopi-neo-air-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... | resin-io-library/base-images | balena-base-images/python/nanopi-neo-air/debian/bullseye/3.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 4,862 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi400-64-ubuntu:eoan-build
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90:... | nghiant2710/base-images | balena-base-images/python/raspberrypi400-64/ubuntu/eoan/3.6.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,836 |
FROM r-base
MAINTAINER Stephanie Herman, stephanie.herman.3820@student.uu.se
ADD FeatureSelection.r /
ENTRYPOINT ["Rscript", "FeatureSelection.r"]
| phnmnl/workflow-demo | FeatureSelection/Dockerfile | Dockerfile | apache-2.0 | 149 |
# AUTOGENERATED FILE
FROM balenalib/edison-ubuntu:xenial-build
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: public k... | nghiant2710/base-images | balena-base-images/python/edison/ubuntu/xenial/3.5.10/build/Dockerfile | Dockerfile | apache-2.0 | 4,829 |
# AUTOGENERATED FILE
FROM balenalib/i386-alpine:3.15-build
ENV NODE_VERSION 14.18.3
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 \
gp... | resin-io-library/base-images | balena-base-images/node/i386/alpine/3.15/14.18.3/build/Dockerfile | Dockerfile | apache-2.0 | 2,945 |
# AUTOGENERATED FILE
FROM balenalib/revpi-connect-alpine:3.13-build
ENV GO_VERSION 1.15.6
# 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/revpi-connect/alpine/3.13/1.15.6/build/Dockerfile | Dockerfile | apache-2.0 | 2,340 |
# AUTOGENERATED FILE
FROM balenalib/zc702-zynq7-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", ... | resin-io-library/base-images | balena-base-images/python/zc702-zynq7/fedora/33/3.10.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,434 |
# AUTOGENERATED FILE
FROM balenalib/rpi-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 "$(d... | resin-io-library/base-images | balena-base-images/openjdk/rpi/alpine/3.14/8-jre/build/Dockerfile | Dockerfile | apache-2.0 | 1,756 |
# AUTOGENERATED FILE
FROM balenalib/parallella-alpine:edge-build
# remove several traces of python
RUN apk del python*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: public key "Simon McVit... | nghiant2710/base-images | balena-base-images/python/parallella/alpine/edge/2.7.18/build/Dockerfile | Dockerfile | apache-2.0 | 5,236 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi-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" || \
... | nghiant2710/base-images | balena-base-images/node/raspberrypi/debian/jessie/10.24.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,788 |
# AUTOGENERATED FILE
FROM balenalib/aarch64-debian:jessie-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" | sh... | nghiant2710/base-images | balena-base-images/golang/aarch64/debian/jessie/1.15.8/build/Dockerfile | Dockerfile | apache-2.0 | 1,996 |
# AUTOGENERATED FILE
FROM balenalib/orange-pi-lite-alpine:edge-build
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 for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; ... | nghiant2710/base-images | balena-base-images/node/orange-pi-lite/alpine/edge/15.7.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,959 |
# AUTOGENERATED FILE
FROM balenalib/up-core-debian:bullseye-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-ge... | nghiant2710/base-images | balena-base-images/golang/up-core/debian/bullseye/1.15.11/run/Dockerfile | Dockerfile | apache-2.0 | 2,343 |
# AUTOGENERATED FILE
FROM balenalib/up-core-debian:bookworm-run
ENV NODE_VERSION 12.22.9
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 k... | resin-io-library/base-images | balena-base-images/node/up-core/debian/bookworm/12.22.9/run/Dockerfile | Dockerfile | apache-2.0 | 2,940 |
FROM ubuntu:16.04 as itksoftwareguide-base
MAINTAINER Matt McCormick <matt.mccormick@kitware.com>
RUN apt-get update && apt-get install -y \
apt-utils \
build-essential \
ccache \
curl \
git \
ninja-build \
python \
vim \
&& apt-get clean
# Install the latest CMake release
WORKDIR /tmp/
#RUN curl -... | InsightSoftwareConsortium/ITKDevelopmentEnvironment | Docker/itksoftwareguide-base/Dockerfile | Dockerfile | apache-2.0 | 1,664 |
# AUTOGENERATED FILE
FROM balenalib/rockpi-4b-rk3399-ubuntu:xenial-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... | resin-io-library/base-images | balena-base-images/python/rockpi-4b-rk3399/ubuntu/xenial/3.10.0/run/Dockerfile | Dockerfile | apache-2.0 | 4,073 |
# AUTOGENERATED FILE
FROM balenalib/orange-pi-one-debian:bullseye-build
ENV NODE_VERSION 12.22.1
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserver keyserver.pgp.com --recv-keys "$key" || ... | nghiant2710/base-images | balena-base-images/node/orange-pi-one/debian/bullseye/12.22.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,794 |
# AUTOGENERATED FILE
FROM balenalib/zc702-zynq7-ubuntu:disco-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 h... | nghiant2710/base-images | balena-base-images/node/zc702-zynq7/ubuntu/disco/12.21.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,762 |
# AUTOGENERATED FILE
FROM balenalib/artik710-fedora:32-run
ENV GO_VERSION 1.16
# gcc for cgo
RUN dnf install -y \
gcc-c++ \
gcc \
git \
&& dnf clean all
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \
&& echo "3770f7eb22d05e25fbee8fb53c2a4... | nghiant2710/base-images | balena-base-images/golang/artik710/fedora/32/1.16/run/Dockerfile | Dockerfile | apache-2.0 | 2,065 |
# AUTOGENERATED FILE
FROM balenalib/qemux86-64-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/qemux86-64/ubuntu/focal/5.0-runtime/run/Dockerfile | Dockerfile | apache-2.0 | 2,571 |
# AUTOGENERATED FILE
FROM balenalib/aio-3288c-ubuntu:xenial-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... | nghiant2710/base-images | balena-base-images/node/aio-3288c/ubuntu/xenial/10.24.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,762 |
# AUTOGENERATED FILE
FROM balenalib/imx8mm-var-dart-debian:stretch-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" || ... | resin-io-library/base-images | balena-base-images/node/imx8mm-var-dart/debian/stretch/17.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,782 |
# AUTOGENERATED FILE
FROM balenalib/up-core-alpine:3.12-run
ENV GO_VERSION 1.15.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 ] && echo ... | nghiant2710/base-images | balena-base-images/golang/up-core/alpine/3.12/1.15.7/run/Dockerfile | Dockerfile | apache-2.0 | 2,471 |
# AUTOGENERATED FILE
FROM balenalib/imx8mm-var-dart-fedora:31-run
ENV NODE_VERSION 15.6.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver ha.... | nghiant2710/base-images | balena-base-images/node/imx8mm-var-dart/fedora/31/15.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,752 |
# AUTOGENERATED FILE
FROM balenalib/solidrun-imx6-alpine:3.13-build
# remove several traces of python
RUN apk del python*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: public key "Simon Mc... | nghiant2710/base-images | balena-base-images/python/solidrun-imx6/alpine/3.13/3.8.9/build/Dockerfile | Dockerfile | apache-2.0 | 4,840 |
FROM balenalib/armv7hf-debian:bullseye-run
LABEL io.balena.device-type="raspberrypi3"
RUN echo "deb http://archive.raspbian.org/raspbian bullseye main contrib non-free rpi firmware" >> /etc/apt/sources.list \
&& apt-key adv --batch --keyserver ha.pool.sks-keyservers.net --recv-key 0x9165938D90FDDD2E \
&& echo "deb ... | nghiant2710/base-images | balena-base-images/device-base/raspberrypi3/debian/bullseye/run/Dockerfile | Dockerfile | apache-2.0 | 1,543 |
# AUTOGENERATED FILE
FROM balenalib/up-core-plus-debian:jessie-run
ENV NODE_VERSION 14.16.0
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserve... | nghiant2710/base-images | balena-base-images/node/up-core-plus/debian/jessie/14.16.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,947 |
# pushed to docker as slintes/awestruct
FROM goldmann/awestruct
MAINTAINER Marc Sluiter <marc.sluiter@luminis.eu>
# just add some gems I need
RUN bash --login -c 'gem install redcarpet minify htmlcompressor uglifier execjs therubyracer' | slintes/docker | awestruct/Dockerfile | Dockerfile | apache-2.0 | 239 |
# AUTOGENERATED FILE
FROM balenalib/ts4900-alpine:3.10-run
ENV NODE_VERSION 14.16.1
ENV YARN_VERSION 1.22.4
# Install dependencies
RUN apk add --no-cache libgcc libstdc++ libuv \
&& apk add --no-cache libssl1.0 || apk add --no-cache libssl1.1
RUN buildDeps='curl' \
&& set -x \
&& for key in \
6A010C5166006599AA1... | nghiant2710/base-images | balena-base-images/node/ts4900/alpine/3.10/14.16.1/run/Dockerfile | Dockerfile | apache-2.0 | 3,021 |
# AUTOGENERATED FILE
FROM balenalib/photon-nano-debian:jessie-run
ENV GO_VERSION 1.15.8
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
&& apt-g... | nghiant2710/base-images | balena-base-images/golang/photon-nano/debian/jessie/1.15.8/run/Dockerfile | Dockerfile | apache-2.0 | 2,326 |
# AUTOGENERATED FILE
FROM balenalib/aio-3288c-alpine:3.13-build
# remove several traces of python
RUN apk del python*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: public key "Simon McVitt... | resin-io-library/base-images | balena-base-images/python/aio-3288c/alpine/3.13/3.6.15/build/Dockerfile | Dockerfile | apache-2.0 | 4,835 |
FROM scratch
EXPOSE 8000 9000 10000
ADD _output/qaclana /
CMD ["/qaclana"]
| qaclana/qaclana | Dockerfile | Dockerfile | apache-2.0 | 77 |
# Base image of the IPython/Jupyter notebook, with conda
# Intended to be used in a tmpnb installation
# Customized from https://github.com/jupyter/docker-demo-images/tree/master/common
FROM debian:jessie
MAINTAINER Andrew Osheroff <andrewosh@gmail.com>
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update -y &&\
... | ahmadia/binder | images/base/Dockerfile | Dockerfile | apache-2.0 | 1,629 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-gateway-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 "... | nghiant2710/base-images | balena-base-images/node/beaglebone-green-gateway/debian/jessie/10.24.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,801 |
FROM ubuntu:20.04
LABEL maintainer="Rob Whitby" url="https://github.com/robwhitby/shakedown"
RUN apt-get update \
&& apt-get install -y curl jq \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
COPY shakedown.sh /usr/local/bin/shakedown.sh
| robwhitby/shakedown | Dockerfile | Dockerfile | apache-2.0 | 256 |
FROM nantesmetropole/debian:wheezy
RUN set -x && \
apt-get update && \
apt-get install -y \
libtcnative-1 \
openjdk-7-jre-headless \
tomcat6 \
&& rm -rf /var/lib/apt/lists/* && \
cp -a /var/lib/tomcat6/webapps/ROOT/META-INF/context.xml /etc/tomcat6/Catalina/localhost/ROOT.xml &&... | nantesmetropole/docker-paas | tomcat/6-jdk7-onbuild/Dockerfile | Dockerfile | apache-2.0 | 1,161 |
# AUTOGENERATED FILE
FROM balenalib/armv7hf-alpine:3.10-build
ENV GO_VERSION 1.15.6
# 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 ] && ech... | nghiant2710/base-images | balena-base-images/golang/armv7hf/alpine/3.10/1.15.6/build/Dockerfile | Dockerfile | apache-2.0 | 2,334 |
FROM node:latest
MAINTAINER Bertrand Martel <bmartel.fr@gmail.com>
# Create app directory
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
# install pm2 (node package manager) & setup pm2 start script
RUN npm install -g pm2
# Install app dependencies
COPY app/package.json /usr/src/app/
# Bundle app source
COPY ./app... | bertrandmartel/google-cross-client-node | Dockerfile | Dockerfile | mit | 417 |
FROM webdevops/apache:ubuntu-16.04
MAINTAINER Eric Pfeiffer <computerfr33k@users.noreply.github.com>
ARG PHP_SOCKET="php-fpm:9000"
ENV WEB_PHP_SOCKET=$PHP_SOCKET
ENV WEB_DOCUMENT_ROOT=/var/www/laravel/public
EXPOSE 80 443
WORKDIR /var/www/laravel/public
ENTRYPOINT ["/opt/docker/bin/entrypoint.sh"]
CMD ["supervi... | wilsonsgro/LearningDocker | apache2/Dockerfile | Dockerfile | mit | 327 |
FROM golang:1.4.2
ADD . /go/src/github.com/arvinkulagin/wschat
RUN go get github.com/gorilla/websocket
RUN go install github.com/arvinkulagin/wschat
WORKDIR /go/src/github.com/arvinkulagin/wschat
EXPOSE 8888
ENTRYPOINT wschat | programmer10110/wschat | Dockerfile | Dockerfile | mit | 231 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi4-64-ubuntu:xenial-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 s... | nghiant2710/base-images | balena-base-images/openjdk/raspberrypi4-64/ubuntu/xenial/11-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 3,105 |
# AUTOGENERATED FILE
FROM balenalib/etcher-pro-alpine:3.12-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/etcher-pro/alpine/3.12/7-jre/run/Dockerfile | Dockerfile | apache-2.0 | 1,759 |
# Copyright 2017 Istio 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 ... | geeknoid/istio | samples/bookinfo/src/details/Dockerfile | Dockerfile | apache-2.0 | 900 |
FROM ubuntu:bionic-20190807
ADD setup.sh /setup.sh
ADD get-jdk-url.sh /get-jdk-url.sh
RUN ./setup.sh java8
ENV JAVA_HOME /opt/openjdk
ENV PATH $JAVA_HOME/bin:$PATH
ADD docker-lib.sh /docker-lib.sh
ADD build-release-scripts.sh /build-release-scripts.sh
ADD releasescripts /release-scripts
RUN ./build-release-scripts.s... | eddumelendez/spring-boot | ci/images/spring-boot-ci-image/Dockerfile | Dockerfile | apache-2.0 | 402 |
#
# LEAN Docker Container 20200522
# Cross platform deployment for multiple brokerages
#
# Use base system
FROM quantconnect/lean:foundation
MAINTAINER QuantConnect <contact@quantconnect.com>
#Install debugpy and PyDevD for remote python debugging
RUN pip install --no-cache-dir ptvsd==4.3.2 debugpy~=1.5.1 pydevd... | QuantConnect/Lean | Dockerfile | Dockerfile | apache-2.0 | 1,172 |
FROM alpine:3.11
ENV PATH "/root/.local/share/ponyup/bin:$PATH"
RUN apk add --update \
curl \
build-base \
binutils-gold \
libexecinfo-dev \
libexecinfo-static \
git
RUN curl -s --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/ponylang/ponyup/master/ponyup-init.sh | sh \
&& ... | kulibali/ponyc | .dockerfiles/latest/x86-64-unknown-linux-musl/Dockerfile | Dockerfile | bsd-2-clause | 506 |
FROM golang:1.6.2
RUN go get github.com/golang/lint/golint \
github.com/mattn/goveralls \
golang.org/x/tools/cover \
github.com/tools/godep \
github.com/aktau/github-release
ENV USER root
WORKDIR /go/src/github.com/HewlettPackard/oneview-golang
COPY . /go/src/github.c... | kaufers/infrakit | vendor/github.com/HewlettPackard/oneview-golang/Dockerfile | Dockerfile | apache-2.0 | 367 |
FROM poolmon/tickbase:latest
MAINTAINER David Antliff <david.antliff@gmail.com>
RUN apt-get update && apt-get install -y kapacitor
COPY kapacitor.conf /etc/kapacitor/kapacitor.conf
EXPOSE 9092
VOLUME ["/etc/kapacitor", "/var/lib/kapacitor", "/var/log/kapacitor"]
CMD /usr/bin/kapacitord
| DavidAntliff/poolmon | services/kapacitor/Dockerfile | Dockerfile | mit | 291 |
<%= generation_message %>
<% flavor = version.end_with?('slim') ? 'slim' : 'fat' -%>
FROM instructure/php:<%= version %>
LABEL maintainer=Instructure
ENV DD_AGENT_MAJOR_VERSION=7
ENV DD_TRACE_AGENT_VERSION=0.41.1
ARG DD_TRACER_AGENT_URL=https://github.com/DataDog/dd-trace-php/releases/download/${DD_TRACE_AGENT_VERSION... | instructure/dockerfiles | php-nginx/template/Dockerfile | Dockerfile | mit | 3,333 |
FROM ubuntu:14.04
MAINTAINER Jason Gerfen <jason.gerfen@utah.edu>
# Update the system
RUN apt-get update && apt-get upgrade -y
# Add common shell scripts
ADD common/create-accounts /usr/bin/
ADD common/openssh-service /usr/bin/
# Create some user accounts
RUN /usr/bin/create-accounts
# Ensure we can manage the cont... | marriott-library/Automated-CI-Service | docker-templates/db/mariadb/Dockerfile | Dockerfile | mit | 1,069 |
FROM microsoft/iis:windowsservercore
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
WORKDIR /Users/ContainerAdministrator/Downloads
# Visual C++ 2015 Redistributable
RUN Invoke-WebRequest 'https://download.microsoft.com/download/9/3/F/93FCF1E7-E6... | StefanScherer/dockerfiles-windows | php/Dockerfile | Dockerfile | mit | 2,120 |
FROM php:7.1.0RC6-fpm
# Environment variable
ENV APCU_VERSION 5.1.2
ENV APCU_BC_VERSION 1.0.0
# Dependencies
RUN apt-get update \
&& apt-get install -y \
libpq-dev \
libicu-dev \
zlib1g-dev \
libfreetype6-dev \
libjpeg62-turbo-dev \
libpng12-dev \
git \
... | majisti/boilerplate | docker/fpm/Dockerfile | Dockerfile | mit | 1,932 |
FROM alpine:latest
ENV BUILD_DEPS gcc \
cargo \
musl-dev
RUN apk -U add \
${BUILD_DEPS} \
libffi-dev \
libxml2-dev \
libxslt-dev \
openssl-dev \
libressl-dev \
python3-dev \
py-pip \
curl \
ca-certificates \
&& update-ca-certi... | aciobanu/docker-scrapy | Dockerfile | Dockerfile | mit | 613 |
FROM php:8-cli-alpine
RUN set -xe && apk update && apk add --no-cache \
libzip \
bash \
curl \
libmcrypt-dev \
libxml2-dev \
libzip-dev \
pcre-dev \
git \
autoconf \
g++ \
make
RUN docker-php-ext-install zip soap \
&& docker-php-source extract \
&& pecl install xd... | marvin255/cbrfservice | docker/php/Dockerfile | Dockerfile | mit | 775 |
FROM php:7
ADD . /opt/phpdoc
RUN apt-get update \
&& apt-get install -yq graphviz curl git libicu-dev libicu52 zlib1g-dev \
&& rm -rf /var/lib/apt/lists/* \
&& docker-php-ext-install -j$(nproc) intl zip \
&& cd /opt/phpdoc \
&& curl -O https://getcomposer.org/composer.phar \
&& php composer.ph... | mbed67/phpDocumentor2 | Dockerfile | Dockerfile | mit | 467 |
########## OS ##########
FROM xtity/docker-centos7-elixir
########## OS ##########
########## DRONE.IO ##########
ENV DRONE_PORT 80
RUN wget downloads.drone.io/master/drone.rpm
RUN yum localinstall -y drone.rpm
########## DRONE.IO ##########
########## ON BOOT ##########
CMD /usr/local/bin/droned --config=/etc/dro... | xtity/docker-centos7-elixir-drone | Dockerfile | Dockerfile | mit | 365 |
FROM php:7.1-fpm
RUN apt-get update && \
apt-get install -y \
libicu-dev \
libjpeg-dev \
libpng12-dev \
libpq-dev \
git && \
docker-php-ext-install \
mbstring \
bcmath \
intl \
opcache \
zip \
pcntl \
pdo \
... | nicolasdewez/website | docker/app/Dockerfile | Dockerfile | mit | 2,051 |
FROM fedora:25
RUN dnf update -y && dnf install -y curl golang git unzip
ENV GOPATH=/go
RUN go get -v github.com/golang/protobuf/{proto,protoc-gen-go}
ENV PATH=/go/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
RUN cd /usr/local && curl -Ls https://github.com/google/protobuf/releases/download/v3.2.... | tobstarr/dockerfiles | protobuf/Dockerfile | Dockerfile | mit | 461 |
MAINTAINER Eloy Adonis Colell
FROM ubuntu
RUN make virtualenv deploy; make run
| limiear/solarbot | Dockerfile | Dockerfile | mit | 79 |
FROM node:7.10.0
RUN npm install -g cloudflare-cli
ENTRYPOINT ["cfcli"]
| anjunabeats/docker-cfcli | Dockerfile | Dockerfile | mit | 74 |
FROM centos:centos6
RUN yum -y update
RUN yum -y install openssh-server openssh-clients
RUN ssh-keygen -q -N "" -t dsa -f /etc/ssh/ssh_host_dsa_key && ssh-keygen -q -N "" -t rsa -f /etc/ssh/ssh_host_rsa_key && sed -ri "s/^#PermitRootLogin yes/PermitRootLogin yes/" /etc/ssh/sshd_config && sed -i "s/UsePAM.*/UsePAM no/g... | MisumiRize/OSX-CI-Agent | Dockerfile | Dockerfile | mit | 489 |
FROM ubuntu:xenial
RUN \
apt-get update && apt-get upgrade -q -y && \
apt-get install -y --no-install-recommends golang git make gcc libc-dev ca-certificates && \
git clone --depth 1 --branch release/1.5 https://github.com/lab2528/go-oneTime && \
(cd go-ethereum && make geth) && \
cp go-ethereum/build/bin/ge... | lab2528/go-oneTime | containers/docker/master-ubuntu/Dockerfile | Dockerfile | mit | 496 |
FROM alpine:3.4
RUN apk add --no-cache nginx
RUN mkdir /run/nginx
COPY index.html /var/lib/nginx/html/index.html
# make utf-8 enabled by default
ENV LANG en_US.utf8
EXPOSE 80 443
VOLUME /var/lib/nginx/html
CMD ["nginx", "-g", "daemon off;"]
| tranhuucuong91/docker-training | dockerize-nginx/v2/Dockerfile | Dockerfile | mit | 248 |
# AUTOGENERATED FILE
FROM balenalib/smarc-px30-ubuntu:xenial-build
ENV GO_VERSION 1.16.14
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \
&& echo "5e59056e36704acb25809bcdb27191f27593cb7aba4d716b523008135a1e764a go$GO_VERSION.linux-arm64.tar.gz" ... | resin-io-library/base-images | balena-base-images/golang/smarc-px30/ubuntu/xenial/1.16.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,001 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi3-ubuntu:bionic-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... | nghiant2710/base-images | balena-base-images/node/raspberrypi3/ubuntu/bionic/10.24.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,765 |
FROM ubuntu:16.04
ARG IMAGE
ENV DEFAULT_DOCKCROSS_IMAGE=${IMAGE} \
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
# https://sourceware.org/bugzilla/show_bug.cgi?id=17318#c4
# > set en_US.UTF-8 instead of C.UT... | thewtex/docker-centos-build | ubuntu1604-gcc5/Dockerfile | Dockerfile | apache-2.0 | 2,311 |
# AUTOGENERATED FILE
FROM balenalib/asus-tinker-board-s-debian:bullseye-run
ENV NODE_VERSION 17.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 --... | resin-io-library/base-images | balena-base-images/node/asus-tinker-board-s/debian/bullseye/17.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,947 |
############################
# Builder image
############################
ARG GOLANG_BUILDER_VERSION=1.13rc1-alpine
FROM golang:${GOLANG_BUILDER_VERSION} AS builder
# Here's a oneliner for your Dockerfile that fails if the Alpine image is vulnerable.
# RUN apk add --no-network --no-cache --repositories-file /dev/null ... | graniet/operative-framework | Dockerfile | Dockerfile | apache-2.0 | 1,922 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-gateway-fedora:30-build
ENV NODE_VERSION 12.22.1
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --k... | nghiant2710/base-images | balena-base-images/node/beaglebone-green-gateway/fedora/30/12.22.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,771 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-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"... | resin-io-library/base-images | balena-base-images/python/jetson-xavier/fedora/34/3.9.7/run/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.