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/surface-go-ubuntu:focal-run # remove several traces of debian python RUN apt-get purge -y python.* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # install python depend...
resin-io-library/base-images
balena-base-images/python/surface-go/ubuntu/focal/3.10.2/run/Dockerfile
Dockerfile
apache-2.0
4,072
# AUTOGENERATED FILE FROM balenalib/parallella-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: publ...
nghiant2710/base-images
balena-base-images/python/parallella/ubuntu/bionic/3.6.12/build/Dockerfile
Dockerfile
apache-2.0
4,833
# AUTOGENERATED FILE FROM balenalib/genericx86-64-ext-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 pytho...
nghiant2710/base-images
balena-base-images/python/genericx86-64-ext/ubuntu/bionic/2.7.18/run/Dockerfile
Dockerfile
apache-2.0
4,457
FROM jbaublitz/ubuntu-musl ENV LD_LIBRARY_PATH=/usr/x86_64-linux-musl/lib/ RUN curl -o rustup.sh --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs RUN sh rustup.sh -y --default-host=x86_64-unknown-linux-musl --default-toolchain=stable RUN /root/.cargo/bin/rustup install nightly-x86_64-unknown-linux-musl
jbaublitz/nl
test/rust-musl-ci/Dockerfile
Dockerfile
bsd-3-clause
309
FROM photon:2.0 RUN tdnf install -y shadow sudo >>/dev/null\ && tdnf clean all \ && mkdir /chartserver/ \ && mkdir /harbor/ \ && groupadd -r -g 10000 chartuser \ && useradd --no-log-init -m -r -g 10000 -u 10000 chartuser COPY ./make/photon/chartserver/binary/chartm /chartserver/ COPY ./make/photon/...
steven-zou/harbor
make/photon/chartserver/Dockerfile
Dockerfile
apache-2.0
720
# AUTOGENERATED FILE FROM balenalib/etcher-pro-alpine:3.13-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.13/7-jdk/run/Dockerfile
Dockerfile
apache-2.0
1,755
# AUTOGENERATED FILE FROM balenalib/qemux86-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 some s...
nghiant2710/base-images
balena-base-images/openjdk/qemux86-64/ubuntu/xenial/11-jre/run/Dockerfile
Dockerfile
apache-2.0
3,115
FROM ruby:2.4 WORKDIR /padrino COPY app app COPY config config COPY models models COPY .components .components COPY config.ru config.ru COPY Gemfile Gemfile COPY Rakefile Rakefile RUN bundle install --jobs=4 --gemfile=/padrino/Gemfile --path=/padrino/padrino/bundle EXPOSE 8080 CMD ["bundle", "exec", "puma", "-C", "...
martin-g/FrameworkBenchmarks
frameworks/Ruby/padrino/padrino.dockerfile
Dockerfile
bsd-3-clause
361
############################################################ # Dockerfile to build Traffic Ops Url Rewriter container images # Based on NGINX 1.9 ############################################################ # # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compl...
rscrimojr/incubator-trafficcontrol
traffic_ops/experimental/url-rewriter-nginx/Url_Rewriter_Dockerfile
Dockerfile
apache-2.0
1,808
FROM openshift/openldap-2441-centos7:latest # OpenLDAP server image for OpenShift Origin testing based on OpenLDAP 2.4.41 # # Volumes: # * /var/lib/openldap/data - Datastore for OpenLDAP # * /etc/openldap/slapd.d - Config directory for slapd # Environment: # * $OPENLDAP_DEBUG_LEVEL (Optional) - OpenLDAP debugging lev...
rhuss/gofabric8
vendor/github.com/openshift/origin/images/openldap/Dockerfile
Dockerfile
apache-2.0
694
FROM python:3.5 MAINTAINER Freija Descamps <freija@gmail.com> EXPOSE 5000 COPY requirements.txt / RUN pip install -r requirements.txt VOLUME ["/data"] COPY app/ app/ COPY tools/gensimple/get_simple_wiki_corpus.py / COPY tools/gensimple/get_speech_corpus.py / COPY tools/gensimple/get_arxiv_corpus.py / WORKDIR /data #CMD...
fajifr/recontent
Dockerfile
Dockerfile
mit
499
# # NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" # # PLEASE DO NOT EDIT IT DIRECTLY. # FROM alpine:3.15 RUN apk add --no-cache java-cacerts ENV JAVA_HOME /opt/openjdk-19 ENV PATH $JAVA_HOME/bin:$PATH # https://jdk.java.net/ # > # > Java Development Kit builds, from Oracle # > ENV JAVA_VERSION 19-ea+5...
docker-library/openjdk
19/jdk/alpine3.15/Dockerfile
Dockerfile
mit
1,750
FROM resin/rpi-raspbian:jessie-20160831 MAINTAINER sejnub # Update your package administration: RUN apt-get update #### Install commodities #### # Just for development. Not needed for production RUN apt-get -qy install apt-utils \ apt-transport-https \ wget \ ...
sejnub/docker-beats
Dockerfile
Dockerfile
mit
1,842
FROM develop/javac RUN apt-get update && apt-get -y install ant && rm /var/lib/apt/lists/* -rf ENTRYPOINT ["ant"]
plause/dockerfiles
develop/ant/Dockerfile
Dockerfile
mit
116
# # Redis Dockerfile # # https://github.com/dockerfile/redis # # Pull base image FROM dockerfile/ubuntu # Install Redis RUN \ cd /tmp && \ wget http://download.redis.io/redis-stable.tar.gz && \ tar xvzf redis-stable.tar.gz && \ cd redis-stable && \ make && \ make install && \ cp -f src/redis-sentinel /u...
jrgcubano/docker-play
redis/Dockerfile
Dockerfile
mit
872
FROM maven:3-jdk-8 MAINTAINER Adam De <developer@noxcuse.pl> WORKDIR /app # Add POM and source ADD pom.xml /app/pom.xml ADD src /app/src #Build application RUN ["mvn", "dependency:resolve"] RUN ["mvn", "verify"] RUN ["mvn", "clean", "package"] #Run application #ADD /target/account-service.jar /app/autostop/account-...
noxcuse/piggy
account-service/Dockerfile
Dockerfile
mit
437
# Dockerfile for building LogicTech Media Server music volumes # # John Tarlton # # docker build --tag="jtarlton/music" . # docker run --name music -t jtarlton/music true # FROM busybox MAINTAINER John Tarlton RUN mkdir /music VOLUME /music
jtarlton/docker-logitechmediaserver
logitechmediaserver-music/Dockerfile
Dockerfile
mit
246
FROM docker:stable-dind RUN apk update && \ apk add bash make git openssh-client curl && \ apk add --no-cache py-pip && \ pip install docker==2.4.2 && \ pip install docker-compose && \ rm -rf /var/cache/apk/* /var/tmp/* /tmp/* && \ touch /.harpoon-container COPY . /harpoon ENV PATH /harpoon:$PATH
bgetsug/harpoon
Dockerfile
Dockerfile
mit
300
FROM kampka/arch-core:latest MAINTAINER Kevin Deenanauth <kevin@deenanauth.com> # TODO specify version RUN pacman -Syu --noconfirm RUN pacman -S gcc --noconfirm
kdeenanauth/docker-gcc
1.0/Dockerfile
Dockerfile
mit
163
# AlpineLinux with a glibc-2.23 and Oracle Java 8 FROM tomaer/alpine:edge-utc MAINTAINER tomaer <i@tomaer.com> # Anastas Dancha <anapsix@random.io> # thanks to Vladimir Krivosheev <develar@gmail.com> aka @develar for smaller image # and Victor Palma <palma.victor@gmail.com> aka @devx for pointing it out # Java Versio...
tomaer/docker-oracle-java
X86/8/utc/111b14/unlimited/jdk/Dockerfile
Dockerfile
mit
4,090
FROM microsoft/aspnetcore:2.0.5 AS base WORKDIR /app EXPOSE 80 FROM microsoft/aspnetcore-build:2.0 AS build WORKDIR /src COPY . . RUN dotnet restore -nowarn:msb3202,nu1503 WORKDIR /src/src/ApiGateways/Web.Bff.Shopping/aggregator RUN dotnet build --no-restore -c Release -o /app FROM build AS publish RUN dotnet publish...
productinfo/eShopOnContainers
src/ApiGateways/Web.Bff.Shopping/aggregator/Dockerfile
Dockerfile
mit
470
################################# #version: 1.00 #desc: opentsdb镜像 #opentsdb Version:2.3.0RC2 ################################# FROM openjdk:8-jdk-alpine MAINTAINER truman ENV TSDB_VERSION 2.3.0RC2 RUN mkdir /opt/ WORKDIR /opt/ RUN echo http://dl-cdn.alpinelinux.org/alpine/edge/community >> /etc/apk/repositories \ ...
TrumanDu/docker-library
opentsdb/opentsdb-2.3.0RC2/Dockerfile
Dockerfile
apache-2.0
1,087
# AUTOGENERATED FILE FROM balenalib/artik5-alpine:3.11-build # Default to UTF-8 file.encoding ENV LANG C.UTF-8 # add a simple script that can auto-detect the appropriate JAVA_HOME value # based on whether the JDK or only the JRE is installed RUN { \ echo '#!/bin/sh'; \ echo 'set -e'; \ echo; \ echo 'dirname "...
nghiant2710/base-images
balena-base-images/openjdk/artik5/alpine/3.11/7-jre/build/Dockerfile
Dockerfile
apache-2.0
1,759
# AUTOGENERATED FILE FROM balenalib/imx6ul-var-dart-debian:jessie-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/imx6ul-var-dart/debian/jessie/1.15.11/run/Dockerfile
Dockerfile
apache-2.0
2,361
# AUTOGENERATED FILE FROM balenalib/vab820-quad-debian:sid-build ENV NODE_VERSION 14.16.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/vab820-quad/debian/sid/14.16.0/build/Dockerfile
Dockerfile
apache-2.0
2,782
# AUTOGENERATED FILE FROM balenalib/artik5-ubuntu:bionic-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 ha.po...
nghiant2710/base-images
balena-base-images/node/artik5/ubuntu/bionic/12.20.1/build/Dockerfile
Dockerfile
apache-2.0
2,759
FROM maven:3.2-jdk-7 RUN curl -sL https://deb.nodesource.com/setup_4.x | bash - RUN apt-get install -y nodejs RUN apt-get install -y awscli VOLUME /build WORKDIR /build
SciSpike/yaktor-dsl-xtext
docker/Dockerfile
Dockerfile
apache-2.0
171
# AUTOGENERATED FILE FROM balenalib/surface-pro-6-alpine:3.13-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 ]...
nghiant2710/base-images
balena-base-images/golang/surface-pro-6/alpine/3.13/1.14.13/build/Dockerfile
Dockerfile
apache-2.0
2,349
# AUTOGENERATED FILE FROM balenalib/blackboard-tx2-alpine:3.11-run ENV GO_VERSION 1.16 # 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/blackboard-tx2/alpine/3.11/1.16/run/Dockerfile
Dockerfile
apache-2.0
2,467
FROM golang:1.8-jessie RUN mkdir /app ADD main/ /app/ WORKDIR /app RUN go build -o main . CMD ["/app/main"] EXPOSE 8000
monkeylittle/hello-world
Dockerfile
Dockerfile
apache-2.0
126
# AUTOGENERATED FILE FROM balenalib/imx8m-var-dart-fedora:31-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...
nghiant2710/base-images
balena-base-images/openjdk/imx8m-var-dart/fedora/31/8-jre/build/Dockerfile
Dockerfile
apache-2.0
1,324
# AUTOGENERATED FILE FROM balenalib/artik520-alpine:3.12-run # remove several traces of python RUN apk del python* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # install python dependencies RUN apk add -...
nghiant2710/base-images
balena-base-images/python/artik520/alpine/3.12/3.5.10/run/Dockerfile
Dockerfile
apache-2.0
4,130
# AUTOGENERATED FILE FROM balenalib/orangepi-plus2-debian:buster-build 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/orangepi-plus2/debian/buster/3.1-runtime/build/Dockerfile
Dockerfile
apache-2.0
2,531
# AUTOGENERATED FILE FROM balenalib/jetson-nano-fedora:31-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", ...
nghiant2710/base-images
balena-base-images/python/jetson-nano/fedora/31/3.8.9/run/Dockerfile
Dockerfile
apache-2.0
2,433
# AUTOGENERATED FILE FROM balenalib/colibri-imx6-debian:jessie-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/colibri-imx6/debian/jessie/7-jre/build/Dockerfile
Dockerfile
apache-2.0
3,094
# AUTOGENERATED FILE FROM balenalib/raspberrypi-debian:bullseye-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/raspberrypi/debian/bullseye/15.7.0/build/Dockerfile
Dockerfile
apache-2.0
2,815
# AUTOGENERATED FILE FROM balenalib/colibri-imx6dl-ubuntu:hirsute-build ENV GO_VERSION 1.16.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 "8a8e06b02a5e7339675cbbad9eb46a0db2cab7da21306de7c3a60d37a6a96022 go$GO_...
resin-io-library/base-images
balena-base-images/golang/colibri-imx6dl/ubuntu/hirsute/1.16.14/build/Dockerfile
Dockerfile
apache-2.0
2,036
# AUTOGENERATED FILE FROM balenalib/raspberrypi3-debian:buster-run ENV NODE_VERSION 10.24.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/raspberrypi3/debian/buster/10.24.0/run/Dockerfile
Dockerfile
apache-2.0
2,944
# AUTOGENERATED FILE FROM balenalib/nitrogen8mm-alpine:edge-build ENV GO_VERSION 1.16.3 # set up nsswitch.conf for Go's "netgo" implementation # - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275 # - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf RUN [ ! -e /etc/nsswitch.conf ] &&...
nghiant2710/base-images
balena-base-images/golang/nitrogen8mm/alpine/edge/1.16.3/build/Dockerfile
Dockerfile
apache-2.0
2,338
# AUTOGENERATED FILE FROM balenalib/up-core-plus-fedora:32-run ENV GO_VERSION 1.15.11 # 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-amd64.tar.gz" \ && echo "8825b72d74b14e82b54ba3...
nghiant2710/base-images
balena-base-images/golang/up-core-plus/fedora/32/1.15.11/run/Dockerfile
Dockerfile
apache-2.0
2,090
# AUTOGENERATED FILE FROM balenalib/am571x-evm-alpine:3.12-run # remove several traces of python RUN apk del python* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # install python dependencies RUN apk add...
nghiant2710/base-images
balena-base-images/python/am571x-evm/alpine/3.12/3.9.4/run/Dockerfile
Dockerfile
apache-2.0
4,130
# AUTOGENERATED FILE FROM balenalib/apalis-imx6q-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: p...
resin-io-library/base-images
balena-base-images/python/apalis-imx6q/debian/stretch/3.9.10/build/Dockerfile
Dockerfile
apache-2.0
4,858
# AUTOGENERATED FILE FROM balenalib/odroid-ux3-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/odroid-ux3/ubuntu/focal/3.1-sdk/run/Dockerfile
Dockerfile
apache-2.0
2,941
# AUTOGENERATED FILE FROM balenalib/via-vab820-quad-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 ap...
resin-io-library/base-images
balena-base-images/python/via-vab820-quad/alpine/3.13/3.9.7/run/Dockerfile
Dockerfile
apache-2.0
4,131
# AUTOGENERATED FILE FROM balenalib/jetson-tx2-ubuntu:cosmic-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...
nghiant2710/base-images
balena-base-images/openjdk/jetson-tx2/ubuntu/cosmic/11-jdk/build/Dockerfile
Dockerfile
apache-2.0
3,104
# AUTOGENERATED FILE FROM balenalib/imx6ul-var-dart-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/imx6ul-var-dart/ubuntu/bionic/2.7.18/build/Dockerfile
Dockerfile
apache-2.0
5,209
# AUTOGENERATED FILE FROM balenalib/raspberry-pi2-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 de...
nghiant2710/base-images
balena-base-images/python/raspberry-pi2/ubuntu/bionic/3.9.4/run/Dockerfile
Dockerfile
apache-2.0
4,072
# AUTOGENERATED FILE FROM balenalib/artik5-alpine:3.11-build # Default to UTF-8 file.encoding ENV LANG C.UTF-8 # add a simple script that can auto-detect the appropriate JAVA_HOME value # based on whether the JDK or only the JRE is installed RUN { \ echo '#!/bin/sh'; \ echo 'set -e'; \ echo; \ echo 'dirname "...
nghiant2710/base-images
balena-base-images/openjdk/artik5/alpine/3.11/8-jdk/build/Dockerfile
Dockerfile
apache-2.0
1,755
# AUTOGENERATED FILE FROM balenalib/raspberrypi4-64-ubuntu:bionic-build ENV GO_VERSION 1.14.14 RUN mkdir -p /usr/local/go \ && curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \ && echo "511d764197121f212d130724afb9c296f0cb4a22424e5ae956a5cc043b0f4a29 go$GO_VERSION.linux-arm64.tar...
nghiant2710/base-images
balena-base-images/golang/raspberrypi4-64/ubuntu/bionic/1.14.14/build/Dockerfile
Dockerfile
apache-2.0
2,006
# AUTOGENERATED FILE FROM balenalib/nebra-hnt-ubuntu:xenial-run ENV NODE_VERSION 15.14.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/nebra-hnt/ubuntu/xenial/15.14.0/run/Dockerfile
Dockerfile
apache-2.0
2,913
# AUTOGENERATED FILE FROM balenalib/npe-x500-m3-ubuntu:focal-run ENV NODE_VERSION 10.24.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.co...
nghiant2710/base-images
balena-base-images/node/npe-x500-m3/ubuntu/focal/10.24.0/run/Dockerfile
Dockerfile
apache-2.0
2,917
# AUTOGENERATED FILE FROM balenalib/artik5-debian:bookworm-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" || \ gpg...
resin-io-library/base-images
balena-base-images/node/artik5/debian/bookworm/12.22.9/build/Dockerfile
Dockerfile
apache-2.0
2,781
# AUTOGENERATED FILE FROM balenalib/hummingboard-ubuntu:bionic-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...
nghiant2710/base-images
balena-base-images/node/hummingboard/ubuntu/bionic/15.14.0/build/Dockerfile
Dockerfile
apache-2.0
2,765
# AUTOGENERATED FILE FROM balenalib/fincm3-ubuntu:xenial-run ENV GO_VERSION 1.14.13 # gcc for cgo RUN apt-get update && apt-get install -y --no-install-recommends \ g++ \ gcc \ libc6-dev \ make \ pkg-config \ git \ && rm -rf /var/lib/apt/lists/* RUN set -x \ && fetchDeps=' \ curl \ ' \ && apt-get u...
nghiant2710/base-images
balena-base-images/golang/fincm3/ubuntu/xenial/1.14.13/run/Dockerfile
Dockerfile
apache-2.0
2,352
# AUTOGENERATED FILE FROM balenalib/up-core-debian:jessie-build ENV GO_VERSION 1.15.6 RUN mkdir -p /usr/local/go \ && curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-amd64.tar.gz" \ && echo "3918e6cc85e7eaaa6f859f1bdbaac772e7a825b0eb423c63d3ae68b21f84b844 go$GO_VERSION.linux-amd64.tar.gz" | sh...
nghiant2710/base-images
balena-base-images/golang/up-core/debian/jessie/1.15.6/build/Dockerfile
Dockerfile
apache-2.0
2,011
# AUTOGENERATED FILE FROM balenalib/genericx86-64-ext-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: ...
nghiant2710/base-images
balena-base-images/python/genericx86-64-ext/debian/sid/3.5.10/build/Dockerfile
Dockerfile
apache-2.0
4,865
# AUTOGENERATED FILE FROM balenalib/nitrogen8mm-ubuntu:xenial-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 --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.c...
resin-io-library/base-images
balena-base-images/node/nitrogen8mm/ubuntu/xenial/12.22.9/run/Dockerfile
Dockerfile
apache-2.0
2,909
# AUTOGENERATED FILE FROM balenalib/jetson-xavier-nx-devkit-seeed-2mic-hat-debian:buster-run # remove several traces of debian python RUN apt-get purge -y python.* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.U...
resin-io-library/base-images
balena-base-images/python/jetson-xavier-nx-devkit-seeed-2mic-hat/debian/buster/3.9.7/run/Dockerfile
Dockerfile
apache-2.0
4,117
# AUTOGENERATED FILE FROM balenalib/orange-pi-zero-alpine:3.13-build # remove several traces of python RUN apk del python* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # key 63C7CC90: public key "Simon M...
nghiant2710/base-images
balena-base-images/python/orange-pi-zero/alpine/3.13/3.8.9/build/Dockerfile
Dockerfile
apache-2.0
4,841
# AUTOGENERATED FILE FROM balenalib/nebra-hnt-ubuntu:disco-build ENV GO_VERSION 1.15.11 RUN mkdir -p /usr/local/go \ && curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \ && echo "bfc8f07945296e97c6d28c7999d86b5cab51c7a87eb2b22ca6781c41a6bb6f2d go$GO_VERSION.linux-arm64.tar.gz" | ...
nghiant2710/base-images
balena-base-images/golang/nebra-hnt/ubuntu/disco/1.15.11/build/Dockerfile
Dockerfile
apache-2.0
1,998
# AUTOGENERATED FILE FROM balenalib/imx6ul-var-dart-alpine:3.13-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 \ ...
nghiant2710/base-images
balena-base-images/node/imx6ul-var-dart/alpine/3.13/14.15.4/build/Dockerfile
Dockerfile
apache-2.0
2,962
# AUTOGENERATED FILE FROM balenalib/astro-tx2-alpine:3.12-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/astro-tx2/alpine/3.12/3.7.12/build/Dockerfile
Dockerfile
apache-2.0
4,835
# AUTOGENERATED FILE FROM balenalib/ts4900-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 McVittie ...
nghiant2710/base-images
balena-base-images/python/ts4900/alpine/3.13/3.9.1/build/Dockerfile
Dockerfile
apache-2.0
4,833
# AUTOGENERATED FILE FROM balenalib/nitrogen6x-debian:bullseye-run ENV GO_VERSION 1.16 # 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/nitrogen6x/debian/bullseye/1.16/run/Dockerfile
Dockerfile
apache-2.0
2,354
# AUTOGENERATED FILE FROM balenalib/raspberrypi2-ubuntu:focal-run ENV GO_VERSION 1.16 # gcc for cgo RUN apt-get update && apt-get install -y --no-install-recommends \ g++ \ gcc \ libc6-dev \ make \ pkg-config \ git \ && rm -rf /var/lib/apt/lists/* RUN set -x \ && fetchDeps=' \ curl \ ' \ && apt-get...
nghiant2710/base-images
balena-base-images/golang/raspberrypi2/ubuntu/focal/1.16/run/Dockerfile
Dockerfile
apache-2.0
2,350
# AUTOGENERATED FILE FROM balenalib/orange-pi-zero-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: pub...
resin-io-library/base-images
balena-base-images/python/orange-pi-zero/debian/sid/3.6.15/build/Dockerfile
Dockerfile
apache-2.0
4,852
# AUTOGENERATED FILE FROM balenalib/orbitty-tx2-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 \ 6A010C516600659...
nghiant2710/base-images
balena-base-images/node/orbitty-tx2/alpine/3.13/15.7.0/run/Dockerfile
Dockerfile
apache-2.0
3,024
# AUTOGENERATED FILE FROM balenalib/intel-nuc-debian:buster-run ENV NODE_VERSION 14.16.1 ENV YARN_VERSION 1.22.4 RUN buildDeps='curl libatomic1' \ && set -x \ && for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --batch --keyserver k...
nghiant2710/base-images
balena-base-images/node/intel-nuc/debian/buster/14.16.1/run/Dockerfile
Dockerfile
apache-2.0
2,944
### joachimvda/base-java7 from joachimvda/base-ssh maintainer Joachim Van der Auwera <joachim@progs.be> RUN apt-get -y install python-setuptools python-software-properties RUN add-apt-repository ppa:webupd8team/java RUN apt-get update && apt-get -y upgrade # automatically accept oracle license RUN echo oracle-java7...
joachimvda/docker
base/java7/Dockerfile
Dockerfile
apache-2.0
590
# AUTOGENERATED FILE FROM balenalib/up-core-plus-alpine:3.12-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 \ 6A010C51660065...
resin-io-library/base-images
balena-base-images/node/up-core-plus/alpine/3.12/17.6.0/run/Dockerfile
Dockerfile
apache-2.0
3,026
FROM ubuntu:16.04 MAINTAINER Aurelien Bruno <aurelbruno06@gmail.com> #RUN apt-get autoremove && apt-get update && apt-get upgrade -y && apt-get install -y wget && rm -rf /var/lib/apt/lists/* #ADD https://download.ceph.com/keys/release.asc /tmp/release.asc #RUN apt-key add /tmp/release.asc && echo "deb http://download...
abruno06/IoT
docker/ceph/Dockerfile
Dockerfile
apache-2.0
682
# AUTOGENERATED FILE FROM balenalib/raspberrypi3-64-ubuntu:xenial-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/raspberrypi3-64/ubuntu/xenial/1.16.3/build/Dockerfile
Dockerfile
apache-2.0
2,004
FROM ubuntu:18.04 # defaults RUN \ apt-get update && apt-get install -y \ git \ wget \ libssl-dev \ build-essential \ vim \ libtool \ autoconf \ automake \ pkg-config \ libgtk-3-dev \ vim \ valgrind \ libev-dev \ libpcre3-dev \ sudo \ python3 \ bison \ flex \ swig \ libcmocka0 \ libcmocka-dev \ ...
sysrepo/sysrepo
deploy/docker/sysrepo/legacy/Dockerfile
Dockerfile
bsd-3-clause
1,756
FROM bmichalski/php-fpm RUN \ base/configure.sh RUN \ apt-get install -y \ php5-xdebug \ php5-curl \ php5-intl \ curl \ git RUN \ curl -sS https://getcomposer.org/installer | php && \ mv /root/composer.phar /usr/bin/composer COPY conf/etc/php5 /etc/php5 CMD \ /root/on-startup.sh...
bmichalski/docker-symfony-dev
php-fpm/Dockerfile
Dockerfile
mit
321
################## BASE IMAGE ###################### FROM biocontainers/biocontainers:v1.0.0_cv4 ################## METADATA ###################### LABEL base_image="biocontainers:v1.0.0_cv4" LABEL version="3" LABEL software="shotmap" LABEL software.version="1.0.0" LABEL about.summary="A Shotgun Metagenome Annotation ...
BioDocker/containers
shotmap/1.0.0/Dockerfile
Dockerfile
apache-2.0
1,245
# Dockerfile for docker skeleton (useful for running blackbox binaries, scripts, or python actions). FROM resin/qemux86-64-alpine-python:2.7.12-slim # Upgrade and install basic Python dependencies RUN apk add --no-cache bash \ && apk add --no-cache --virtual .build-deps \ bzip2-dev \ gcc \ lib...
glikson/resin-multi-container
apps/ow2/Dockerfile
Dockerfile
apache-2.0
646
FROM biocontainers/biocontainers:vdebian-buster-backports_cv1 MAINTAINER biocontainers <biodocker@gmail.com> LABEL software="artfastqgenerator" \ base_image="biocontainers/biocontainers:vdebian-buster-backports_cv1" \ container="artfastqgenerator" \ about.summary="outputs artificial FASTQ files derive...
BioContainers/containers
artfastqgenerator/0.0.20150519-3-deb/Dockerfile
Dockerfile
apache-2.0
1,024
FROM balenalib/armv7hf-ubuntu:bionic-build LABEL io.balena.device-type="parallella-hdmi-resin" RUN apt-get update && apt-get install -y --no-install-recommends \ less \ kmod \ nano \ net-tools \ ifupdown \ iputils-ping \ i2c-tools \ usbutils \ && rm -rf /var/lib/apt/lists/* RUN [ ! -d /.balena/messag...
nghiant2710/base-images
balena-base-images/device-base/parallella-hdmi-resin/ubuntu/bionic/build/Dockerfile
Dockerfile
apache-2.0
1,104
FROM alpine RUN mkdir -p /opt/kubeac/manifests ADD manifests /opt/kubeac/manifests ADD kubeac /usr/bin/kubeac
Mirantis/k8s-AppController
Dockerfile
Dockerfile
apache-2.0
112
# 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...
theopolis/thrift
build/docker/centos6/Dockerfile
Dockerfile
apache-2.0
1,394
# nodezoo-info FROM node:4 RUN mkdir /src ADD package.json /src/ WORKDIR /src RUN npm install COPY . /src CMD ["node", "srv/start.js"]
apparatus/mu-app
services/info/Dockerfile
Dockerfile
mit
141
FROM debian:jessie RUN apt-get update && apt-get install -y \ build-essential \ curl \ nano \ supervisor # Install Node.js RUN curl -sL https://deb.nodesource.com/setup_4.x | bash - RUN apt-get install -y nodejs # Improve cache invalidations by only running npm if requirements have indeed changed WOR...
yoonic/atlas
Dockerfile
Dockerfile
mit
684
FROM python:3.4 WORKDIR /code ADD django_code /code RUN pip3 install -r requirements.txt CMD python3 manage.py runserver 0.0.0.0:8000 EXPOSE 8000
dharmit/docker_ahmedabad_meetup_2
Dockerfile
Dockerfile
mit
150
FROM minerapp/docker-base ADD ./ip-service ./
Minerapp/ip-service
Dockerfile
Dockerfile
mit
47
# AMAZON GREEN UP ON SciDB 14.8 # # VERSION 1.0 # # # # # # #PORT MAPPING #SERVICE DEFAULT MAPPED #ssh 22 49911 #shim 8083s 49912 #Postgresql 5432 49913 #SciDB 1239 49914 FROM ubuntu:12.04 MAINTAINER Alber Sanchez RUN echo "deb http://cran.rstudio.com/bin/linux/ubuntu precise/" >> /etc/apt/sources.l...
albhasan/amazonGreenUp2005
Dockerfile
Dockerfile
mit
3,024
FROM gliderlabs/alpine:3.2 MAINTAINER Fabio Rehm "fgrehm@gmail.com" RUN apk --update add bash nginx curl jq RUN curl -Ls https://github.com/progrium/entrykit/releases/download/v0.2.0/entrykit_0.2.0_Linux_x86_64.tgz \ | tar -zxC /bin \ && curl -s https://get.docker.io/builds/Linux/x86_64/docker-1.6.2 > /bin/dock...
fgrehm/devstep-envy
images/load-balancer/Dockerfile
Dockerfile
mit
580
FROM magnum/base MAINTAINER Dan Sosedoff "dan@magnum-ci.com" # Add PostgreSQL PPA repository RUN echo "deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main" > /etc/apt/sources.list.d/pgdg.list RUN curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - RUN apt-get update # Install PostgreSQL...
magnumci/dockerfiles
postgresql/Dockerfile
Dockerfile
mit
778
FROM ubuntu:latest EXPOSE 8080 RUN echo "Installing dependencies..." RUN apt-get update && apt-get install -y --force-yes \ wget \ build-essential \ clang \ rsync \ libpython-all-dev \ libedit-dev \ libxml2-dev \ libicu52 && \ apt-get clean RUN cd / RUN w...
huytd/swift-http
docker/Dockerfile
Dockerfile
mit
647
FROM beevelop/ionic AS build ARG registry=https://registry.npmjs.org/ LABEL Name=angular-pwa-seed Version=0.1.0 WORKDIR /usr/src/app RUN npm config set registry ${registry} RUN npm uninstall -g ionic cordova RUN npm install -g --unsafe-perm @angular/cli@1.7.1 cordova@6.5.0 ionic@2.2.3 typescript sleep-ms concurrently ...
jvitor83/angular-pwa-seed
Dockerfile
Dockerfile
mit
730
FROM tarantool/tarantool:1.7 COPY app.lua /opt/tarantool CMD ["tarantool", "/opt/tarantool/app.lua"]
asukhodko/dotnet-tarantool-client
tarantool/Dockerfile
Dockerfile
mit
104
# Go cross compiler (xgo): Go 1.12.11 # Copyright (c) 2019 Péter Szilágyi. All rights reserved. # # Released under the MIT license. FROM chrisfranko/xgo-base MAINTAINER Christopher Franko <chrisjfranko@gmail.com> # Configure the root Go distribution and bootstrap based on it ENV GO_VERSION 11211 RUN \ export ROOT...
chrisfranko/xgo
docker/go-1.12.11/Dockerfile
Dockerfile
mit
517
FROM php:7-fpm RUN apt-get update && apt-get install -y libmcrypt-dev mysql-client \ && docker-php-ext-install mcrypt pdo_mysql # Install Node RUN cd ~/ RUN curl -sL https://deb.nodesource.com/setup_7.x | bash - RUN apt-get install -y nodejs WORKDIR /var/www
xdega/laravel-with-docker
deploy/app.dockerfile
Dockerfile
mit
266
FROM ubuntu:14.10 MAINTAINER kjs <kjs2013@neowiz.com> RUN apt-get update RUN apt-get install -y nginx RUN echo "\ndaemon off;" >> /etc/nginx/nginx.conf RUN chown -R www-data:www-data /var/lib/nginx VOLUME ["/data", "/etc/nginx/site-enabled", "/var/log/nginx"] WORKDIR /etc/nginx CMD ["nginx"] EXPOSE 80 EXPOSE 443
zzragida/DockerExamples
ubuntu-nginx/Dockerfile
Dockerfile
mit
319
FROM php:5.6-apache # Copy wivet's source code COPY . /var/www/html/ # Make sure we can write to the stats directory RUN chmod 777 /var/www/html/offscanpages/statistics/
andresriancho/wivet
Dockerfile
Dockerfile
mit
172
FROM debian:7.7 VOLUME /legco-data
legco-watch/legco-watch
docker/appdata/Dockerfile
Dockerfile
mit
35
FROM ubuntu:14.04 RUN sudo apt-get update && sudo apt-get install -y libpq-dev ADD target/hcomments /usr/bin/ CMD hcomments
ilya-murzinov/hcomments
Dockerfile
Dockerfile
mit
127
FROM node:latest RUN mkdir /bot && cd /bot ADD . /bot EXPOSE 9999 WORKDIR /bot CMD ["bin/hubot", "--adapter", "slack"]
fenneclab/fennecbot
Dockerfile
Dockerfile
mit
124
FROM vulhub/java:7u21-jdk ENV ACTIVEMQ_VERSION 5.11.1 ENV ACTIVEMQ apache-activemq-$ACTIVEMQ_VERSION ENV ACTIVEMQ_TCP=61616 ACTIVEMQ_UI=8161 ENV ACTIVEMQ_HOME /opt/activemq RUN set -x && \ curl -s -S https://archive.apache.org/dist/activemq/$ACTIVEMQ_VERSION/$ACTIVEMQ-bin.tar.gz | tar xvz -C /opt && \ ln -s ...
vulhub/vulhub
base/activemq/5.11.1/Dockerfile
Dockerfile
mit
454
FROM patavi/build-ready ADD patavi /var/lib/patavi/src RUN chown -R patavi.patavi /var/lib/patavi/src RUN su - patavi -c 'cd src/common && lein install' RUN su - patavi -c 'cd src/worker && lein with-profile production deps' RUN su - patavi -c 'cd src/server && lein with-profile production deps' RUN su - patavi -c 'c...
ConnorStroomberg/patavi-docker
base/Dockerfile
Dockerfile
mit
683
FROM ubuntu:trusty RUN apt-get update && apt-get install -y --no-install-recommends haskell-platform cabal-install RUN cabal update RUN cabal install Cabal ENV SRC_DIR /usr/share/src ADD . ${SRC_DIR} WORKDIR ${SRC_DIR} RUN cabal install --only-dependencies RUN cabal install --global CMD ["/usr/local/bin/autentific...
lstephen/autentifica
Dockerfile
Dockerfile
mit
325