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/odroid-u3+-ubuntu:xenial-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 h... | nghiant2710/base-images | balena-base-images/node/odroid-u3+/ubuntu/xenial/14.16.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,763 |
# AUTOGENERATED FILE
FROM balenalib/cl-som-imx8-fedora:33-run
ENV NODE_VERSION 14.16.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.poo... | nghiant2710/base-images | balena-base-images/node/cl-som-imx8/fedora/33/14.16.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,750 |
# AUTOGENERATED FILE
FROM balenalib/orange-pi-one-alpine:3.10-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/orange-pi-one/alpine/3.10/3.9.4/build/Dockerfile | Dockerfile | apache-2.0 | 4,840 |
# AUTOGENERATED FILE
FROM balenalib/generic-amd64-fde-debian:bookworm-build
ENV NODE_VERSION 14.18.3
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/generic-amd64-fde/debian/bookworm/14.18.3/build/Dockerfile | Dockerfile | apache-2.0 | 2,795 |
# AUTOGENERATED FILE
FROM balenalib/revpi-connect-debian:stretch-run
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu57 \
libssl1.1 \
... | nghiant2710/base-images | balena-base-images/dotnet/revpi-connect/debian/stretch/3.1-aspnet/run/Dockerfile | Dockerfile | apache-2.0 | 3,129 |
FROM golang:1.12-alpine as builder
ENV GO111MODULE=on
WORKDIR /go/src/example
RUN apk add --no-cache git
COPY . .
RUN go get ./...
RUN CGO_ENABLED=0 GOOS=linux go build -v -o /go/bin/helloworld
ENV PORT 8080
EXPOSE $PORT
CMD ["/go/bin/helloworld"]
| google/prometheus-slo-burn-example | server/Dockerfile | Dockerfile | apache-2.0 | 251 |
# AUTOGENERATED FILE
FROM balenalib/orbitty-tx2-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 ad... | nghiant2710/base-images | balena-base-images/python/orbitty-tx2/alpine/3.12/3.9.4/run/Dockerfile | Dockerfile | apache-2.0 | 4,131 |
# AUTOGENERATED FILE
FROM balenalib/odroid-u3+-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", s... | resin-io-library/base-images | balena-base-images/python/odroid-u3+/fedora/34/3.7.12/run/Dockerfile | Dockerfile | apache-2.0 | 2,433 |
# AUTOGENERATED FILE
FROM balenalib/raspberry-pi2-debian:buster-build
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: p... | resin-io-library/base-images | balena-base-images/python/raspberry-pi2/debian/buster/3.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 4,857 |
ARG SF_DOCKER_CI_FROM
FROM ${SF_DOCKER_CI_FROM}
ARG SF_DOCKER_CI_IMAGE_NAME
ARG SF_DOCKER_CI_IMAGE_TAG
ARG SF_CI_BREW_INSTALL
SHELL ["/bin/bash", "-c"]
ADD . /support-firecloud
RUN SF_DOCKER_CI_IMAGE_NAME=${SF_DOCKER_CI_IMAGE_NAME} \
SF_DOCKER_CI_IMAGE_TAG=${SF_DOCKER_CI_IMAGE_TAG} \
SF_CI_BREW_INSTALL=${SF_... | tobiipro/support-firecloud | dockerfiles/sf-ubuntu-xenial/Dockerfile | Dockerfile | apache-2.0 | 449 |
# Copyright 2015, Google Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the f... | arkmaxim/grpc | tools/dockerfile/interoptest/grpc_interop_cxx/Dockerfile | Dockerfile | bsd-3-clause | 2,579 |
FROM ubuntu:14.04
COPY bin/install.sh /tmp/ubuntu-docker-dev-install.sh
RUN chmod +x /tmp/ubuntu-docker-dev-install.sh
RUN bash /tmp/ubuntu-docker-dev-install.sh
| arturh85/ubuntu-docker-dev | Dockerfile | Dockerfile | mit | 162 |
# AUTOGENERATED FILE
FROM balenalib/intel-nuc-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/intel-nuc/alpine/3.12/7-jre/run/Dockerfile | Dockerfile | apache-2.0 | 1,773 |
# AUTOGENERATED FILE
FROM balenalib/jetson-nano-2gb-devkit-fedora:33-run
RUN dnf -y update \
&& dnf clean all \
&& dnf -y install \
gzip \
java-1.8.0-openjdk \
java-1.8.0-openjdk-devel \
tar \
&& dnf clean all
# set JAVA_HOME
ENV JAVA_HOME /usr/lib/jvm/java-openjdk
CMD ["echo","'No CMD command was set in ... | nghiant2710/base-images | balena-base-images/openjdk/jetson-nano-2gb-devkit/fedora/33/8-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 1,328 |
# AUTOGENERATED FILE
FROM balenalib/artik10-alpine:3.13-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/artik10/alpine/3.13/8-jdk/build/Dockerfile | Dockerfile | apache-2.0 | 1,756 |
# AUTOGENERATED FILE
FROM balenalib/blackboard-tx2-alpine:3.13-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 'd... | nghiant2710/base-images | balena-base-images/openjdk/blackboard-tx2/alpine/3.13/8-jre/build/Dockerfile | Dockerfile | apache-2.0 | 1,767 |
FROM fedora-rdo-swift-base
MAINTAINER Steven Dake <sdake@redhat.com>
ADD ./start.sh /start.sh
CMD ["/start.sh"]
| jlabocki/superhappyfunshow | docker/swift/swift-proxy-server/Dockerfile | Dockerfile | apache-2.0 | 114 |
FROM balenalib/armv7hf-ubuntu:xenial-run
LABEL io.balena.device-type="fincm3"
RUN apt-get update && apt-get install -y --no-install-recommends \
software-properties-common \
&& add-apt-repository ppa:ubuntu-raspi2/ppa -y \
&& apt-get purge -y --auto-remove software-properties-common \
&& rm -rf /var/lib/apt/lists... | nghiant2710/base-images | balena-base-images/device-base/fincm3/ubuntu/xenial/run/Dockerfile | Dockerfile | apache-2.0 | 1,353 |
FROM openjdk:8-jre-alpine
# Environment Variables (should not be modified)
ENV OODT_HOME="/oodt"
ENV RESMGR_HOME="/oodt/resmgr"
# Environment Variables (should be user specified)
# Steps to Extract Source
WORKDIR /oodt
ARG SRC_FILE
ADD target/${SRC_FILE} .
# Volumes (You can mount these directories from the host ma... | apache/oodt | mvn/archetypes/radix/src/main/resources/archetype-resources/resmgr/Dockerfile | Dockerfile | apache-2.0 | 764 |
FROM sumeetchhetri/ffead-cpp-5.0-base:5.3
ENV IROOT=/installs
RUN rm -f /usr/local/lib/libffead-* /usr/local/lib/libte_benc* /usr/local/lib/libinter.so /usr/local/lib/libdinter.so && \
ln -s ${IROOT}/ffead-cpp-5.0/lib/libte_benchmark_um.so /usr/local/lib/libte_benchmark_um.so && \
ln -s ${IROOT}/ffead-cpp-5.0/lib/l... | jaguililla/FrameworkBenchmarks | frameworks/C++/ffead-cpp/ffead-cpp-go-gnet.dockerfile | Dockerfile | bsd-3-clause | 975 |
#
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/amd64/generate.sh"!
#
FROM ubuntu:precise
RUN apt-get update && apt-get install -y apparmor bash-completion build-essential cmake curl ca-certificates debhelper dh-apparmor git libapparmor-dev libltdl-dev pkg-config vim-common --no-install-recommends && rm ... | jdel/clairctl | vendor/github.com/docker/docker/contrib/builder/deb/amd64/ubuntu-precise/Dockerfile | Dockerfile | apache-2.0 | 654 |
# Inherit from Heroku's stack
FROM heroku/cedar:14
RUN mkdir -p /app/user
WORKDIR /app/user
ENV STACK "cedar-14"
ENV HOME /app
# Install the JDK
RUN mkdir -p /app/.jdk
ENV JAVA_HOME /app/.jdk
RUN curl -s --retry 3 -L https://lang-jvm.s3.amazonaws.com/jdk/cedar-14/openjdk1.8-latest.tar.gz | tar xz -C /app/.jdk
ENV PA... | jkutner/jruby-image | Dockerfile | Dockerfile | mit | 865 |
FROM tatsushid/tinycore:7.0-x86_64
# Instructions are run with 'tc' user
# 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 tce-load -wic gnupg curl \
&& rm -rf /tmp/tce/optional/*
# gpg: key F73C700D... | cglewis/docker-tinycore-python | 3.5/Dockerfile | Dockerfile | mit | 4,319 |
FROM adama/serfnode
MAINTAINER Walter Moreira <wmoreira@tacc.utexas.edu>
RUN apt-get install -y iptables
COPY handler /handler
COPY worker.conf /programs/
COPY minion_server.conf /etc/supervisor/conf.d/
| waltermoreira/adama-minion | Dockerfile | Dockerfile | mit | 205 |
FROM alpine:latest
LABEL maintainer="Óscar de Arriba <odarriba@gmail.com>"
##################
## BUILDING ##
##################
# Versions to use
ENV netatalk_version 3.1.12
WORKDIR /
# Prerequisites
RUN apk update && \
apk upgrade && \
apk add --no-cache \
bash \
curl \
libldap \
... | odarriba/docker-timemachine | Dockerfile | Dockerfile | mit | 2,151 |
# bump: yt-dlp /YT_DLP=([\d.-]+)/ https://github.com/yt-dlp/yt-dlp.git|/^\d/|sort
# bump: yt-dlp link "Release notes" https://github.com/yt-dlp/yt-dlp/releases/tag/$LATEST
ARG YT_DLP=2022.03.08.1
# bump: static-ffmpeg /FFMPEG_VERSION=([\d.-]+)/ docker:mwader/static-ffmpeg|/^\d/|sort
ARG FFMPEG_VERSION=5.0-1
# bump: gol... | wader/ydls | Dockerfile | Dockerfile | mit | 2,793 |
FROM ubuntu:16.04
MAINTAINER Aaron Culich / Berkeley Research Computing <brc+aculich@berkeley.edu>
## Please feel free to contact Berkeley Research Computing (BRC) if you have
## questions or if you want dedicated computational infrastructure if
## http://beta.mybinder.org/ does not provide enough power or if you nee... | daneschi/berkeleytutorial | Dockerfile | Dockerfile | mit | 3,059 |
FROM postgres:9.5
MAINTAINER Jeremias Wong <jellyjellyrobot@gmail.com>
RUN sed --in-place 's/httpredir.debian.org/mirror.0x.sg/' /etc/apt/sources.list
RUN until apt-get update; \
do echo "retrying update" ; \
done;
# Configure Postgres
ENV POSTGRES_PASSWORD=NOT_THIS_PASSWORD
ENV POSTGRES_USER=NOT_THIS_USER
EN... | CRAWLZSTAGE/infra | db/Dockerfile | Dockerfile | mit | 492 |
FROM alpine
MAINTAINER Lyndon Li <snakeliwei@gmail.com>
RUN apk add --update --no-cache nginx dhclient tzdata \
&& cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
&& apk del tzdata \
&& mkdir -p /etc/nginx/sites-enabled \
&& mkdir -p /ssl \
# forward request and error logs to docker log colle... | snakeliwei/docker-alpine-nginx | antiwx/Dockerfile | Dockerfile | mit | 576 |
# AUTOGENERATED FILE
FROM balenalib/orangepi-plus2-ubuntu:focal-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$GO_VER... | nghiant2710/base-images | balena-base-images/golang/orangepi-plus2/ubuntu/focal/1.15.8/build/Dockerfile | Dockerfile | apache-2.0 | 2,030 |
# AUTOGENERATED FILE
FROM balenalib/asus-tinker-board-s-fedora:30-run
RUN dnf -y update \
&& dnf clean all \
&& dnf -y install \
gzip \
java-1.8.0-openjdk \
java-1.8.0-openjdk-devel \
tar \
&& dnf clean all
# set JAVA_HOME
ENV JAVA_HOME /usr/lib/jvm/java-openjdk
CMD ["echo","'No CMD command was set in Doc... | nghiant2710/base-images | balena-base-images/openjdk/asus-tinker-board-s/fedora/30/8-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 1,325 |
FROM registry.access.redhat.com/rhscl/httpd-24-rhel7
ENV HTTPD_ROOT_DIR /opt/rh/httpd24/root
ADD www/* ${HTTPD_ROOT_DIR}/var/www/html/
ADD virtualhosts/* ${HTTPD_ROOT_DIR}/etc/httpd/conf.d/
| wtrocki/httpd-24-rhel7-openshift | Dockerfile | Dockerfile | apache-2.0 | 191 |
# AUTOGENERATED FILE
FROM balenalib/raspberry-pi2-fedora:30-build
ENV GO_VERSION 1.15.11
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 "f5253eb04ed6b92e49cb0cbc57a80b4777ce27c6590e05a5c91095870e8632a0 go$GO_VERSIO... | nghiant2710/base-images | balena-base-images/golang/raspberry-pi2/fedora/30/1.15.11/build/Dockerfile | Dockerfile | apache-2.0 | 2,027 |
# AUTOGENERATED FILE
FROM balenalib/jetson-nano-emmc-debian:bullseye-run
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu63 \
libssl1.1... | nghiant2710/base-images | balena-base-images/dotnet/jetson-nano-emmc/debian/bullseye/5.0-runtime/run/Dockerfile | Dockerfile | apache-2.0 | 2,953 |
# AUTOGENERATED FILE
FROM balenalib/armv7hf-debian:buster-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$GO_VERSION.l... | nghiant2710/base-images | balena-base-images/golang/armv7hf/debian/buster/1.15.8/build/Dockerfile | Dockerfile | apache-2.0 | 2,025 |
# AUTOGENERATED FILE
FROM balenalib/intel-edison-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 a... | nghiant2710/base-images | balena-base-images/python/intel-edison/alpine/3.13/3.6.12/run/Dockerfile | Dockerfile | apache-2.0 | 4,134 |
# AUTOGENERATED FILE
FROM balenalib/var-som-mx6-alpine:3.15-build
ENV GO_VERSION 1.16.14
# set up nsswitch.conf for Go's "netgo" implementation
# - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275
# - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf
RUN [ ! -e /etc/nsswitch.conf ] &... | resin-io-library/base-images | balena-base-images/golang/var-som-mx6/alpine/3.15/1.16.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,340 |
# docker-tomcat
#
FROM ubuntu:14.04.3
MAINTAINER EricoGR <ericomercial@yahoo.com.br>
#minimum to install packages
RUN \
apt-get update && \
apt-get install -y software-properties-common
#jdk installation
RUN \
echo oracle-java8-installer shared/accepted-oracle-license-v1-1 select true | debconf-set-selections ... | ericogr/docker-tomcat | Dockerfile | Dockerfile | apache-2.0 | 1,076 |
FROM ubuntu:18.04
RUN rm /bin/sh && ln -s /bin/bash /bin/sh
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
RUN apt-get -y update \
&& apt-get -y install \
build-essential \
gcc \
apt-utils \
pkg-config \
software-properties-common \
apt-transport-https \
libssl-dev ... | sinsharat/etcd | tests/Dockerfile | Dockerfile | apache-2.0 | 1,802 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen6x-debian:stretch-run
ENV NODE_VERSION 14.16.1
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserver... | nghiant2710/base-images | balena-base-images/node/nitrogen6x/debian/stretch/14.16.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,944 |
FROM ubuntu:precise
MAINTAINER Charlie Lewis
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys B97B0AFCAA1A47F044F244A07FCC7D46ACCC4CF8
RUN echo "deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main" > /etc/apt/sources.list.d/pgdg.list
RUN apt-get update
RUN apt-get -y -q install postgresql-9.3 \... | cglewis/bowl | bowl/containers/.default/services/ubuntu/precise/databases/dockerfiles/postgresql/Dockerfile | Dockerfile | apache-2.0 | 1,066 |
# AUTOGENERATED FILE
FROM balenalib/imx7-var-som-alpine:3.14-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 McV... | resin-io-library/base-images | balena-base-images/python/imx7-var-som/alpine/3.14/3.9.10/build/Dockerfile | Dockerfile | apache-2.0 | 4,838 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi0-2w-64-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 63C7C... | resin-io-library/base-images | balena-base-images/python/raspberrypi0-2w-64/debian/stretch/3.7.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,864 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx2-fedora:36-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/jetson-tx2/fedora/36/3.9.7/build/Dockerfile | Dockerfile | apache-2.0 | 2,437 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-debian:buster-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$GO_... | nghiant2710/base-images | balena-base-images/golang/beaglebone-green/debian/buster/1.15.8/build/Dockerfile | Dockerfile | apache-2.0 | 2,034 |
# AUTOGENERATED FILE
FROM balenalib/asus-tinker-board-debian:sid-build
ENV GO_VERSION 1.16.3
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 "0cfbfa848a1ab81e2aa2dd257c2b3572c3637d32562b1eaa6aeadb2909911606 go$GO_VE... | nghiant2710/base-images | balena-base-images/golang/asus-tinker-board/debian/sid/1.16.3/build/Dockerfile | Dockerfile | apache-2.0 | 2,029 |
# AUTOGENERATED FILE
FROM balenalib/coral-dev-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... | resin-io-library/base-images | balena-base-images/python/coral-dev/debian/sid/3.7.12/run/Dockerfile | Dockerfile | apache-2.0 | 4,084 |
# AUTOGENERATED FILE
FROM balenalib/nanopi-neo-air-alpine:3.11-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/nanopi-neo-air/alpine/3.11/3.7.9/build/Dockerfile | Dockerfile | apache-2.0 | 4,841 |
# AUTOGENERATED FILE
FROM balenalib/intel-nuc-alpine:3.13-run
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 buildDeps='curl' \
&& set -x \
&& for key in \
6A010C5166006599... | resin-io-library/base-images | balena-base-images/node/intel-nuc/alpine/3.13/14.18.3/run/Dockerfile | Dockerfile | apache-2.0 | 3,025 |
# AUTOGENERATED FILE
FROM balenalib/generic-amd64-fde-debian:bookworm-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/bookworm/16-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 3,026 |
# AUTOGENERATED FILE
FROM balenalib/odroid-xu4-fedora:30-run
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 ha.pool... | nghiant2710/base-images | balena-base-images/node/odroid-xu4/fedora/30/14.16.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,753 |
# AUTOGENERATED FILE
FROM balenalib/odroid-xu4-debian:bullseye-build
ENV NODE_VERSION 10.23.1
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserver keyserver.pgp.com --recv-keys "$key" || \
... | nghiant2710/base-images | balena-base-images/node/odroid-xu4/debian/bullseye/10.23.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,791 |
FROM jenkinsci/jnlp-slave
MAINTAINER Vic Iglesias <viglesias@google.com>
ENV CLOUDSDK_CORE_DISABLE_PROMPTS 1
ENV PATH /opt/google-cloud-sdk/bin:$PATH
USER root
RUN apt-get update -y
RUN apt-get install -y jq
RUN curl https://sdk.cloud.google.com | bash && mv google-cloud-sdk /opt
RUN gcloud components install kubect... | iioriatti/cd-kubernates-drupal8 | jenkins/docker-slave-image/Dockerfile | Dockerfile | apache-2.0 | 322 |
# AUTOGENERATED FILE
FROM balenalib/asus-tinker-board-debian:bookworm-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 63C7C... | resin-io-library/base-images | balena-base-images/python/asus-tinker-board/debian/bookworm/3.9.7/build/Dockerfile | Dockerfile | apache-2.0 | 4,863 |
# AUTOGENERATED FILE
FROM balenalib/jetson-nano-emmc-ubuntu:xenial-run
ENV NODE_VERSION 14.18.3
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.... | resin-io-library/base-images | balena-base-images/node/jetson-nano-emmc/ubuntu/xenial/14.18.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,914 |
###### QNIBTerminal child
FROM qnib/terminal:fd22
ADD ./rpms/ /tmp/
RUN dnf install -y /tmp/openvenus-1.9.19-0.fedora22.x86_64.rpm
| qnib/docker-openvenus | Dockerfile | Dockerfile | apache-2.0 | 133 |
#include "homeship.dockerfile
env http_proxy http://10.232.69.38:8080
env https_proxy http://10.232.69.38:8080
user root
run apt-get -y install mingw-w64
run dpkg --add-architecture i386
run apt-get -y install ppa-purge
run add-apt-repository ppa:ubuntu-wine/ppa && apt-get update
run apt-get -y install wine1.6-amd64
ru... | yazgoo/fuse_kafka | docker/homeship_mingw.dockerfile | Dockerfile | apache-2.0 | 1,103 |
# AUTOGENERATED FILE
FROM balenalib/odroid-u3+-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_VERS... | resin-io-library/base-images | balena-base-images/golang/odroid-u3+/ubuntu/hirsute/1.16.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,032 |
# AUTOGENERATED FILE
FROM balenalib/coral-dev-ubuntu:bionic-build
ENV GO_VERSION 1.16
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \
&& echo "3770f7eb22d05e25fbee8fb53c2a4e897da043eb83c69b9a14f8d98562cd8098 go$GO_VERSION.linux-arm64.tar.gz" | sh... | nghiant2710/base-images | balena-base-images/golang/coral-dev/ubuntu/bionic/1.16/build/Dockerfile | Dockerfile | apache-2.0 | 1,994 |
# AUTOGENERATED FILE
FROM balenalib/amd64-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", since ... | nghiant2710/base-images | balena-base-images/python/amd64/fedora/31/3.9.4/run/Dockerfile | Dockerfile | apache-2.0 | 2,442 |
# AUTOGENERATED FILE
FROM balenalib/odroid-u3+-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/odroid-u3+/ubuntu/cosmic/11-jre/build/Dockerfile | Dockerfile | apache-2.0 | 3,104 |
# AUTOGENERATED FILE
FROM balenalib/imx8mm-var-dart-debian:buster-build
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90:... | nghiant2710/base-images | balena-base-images/python/imx8mm-var-dart/debian/buster/3.9.1/build/Dockerfile | Dockerfile | apache-2.0 | 4,860 |
# AUTOGENERATED FILE
FROM balenalib/odroid-xu4-ubuntu:focal-run
ENV NODE_VERSION 12.22.1
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com... | nghiant2710/base-images | balena-base-images/node/odroid-xu4/ubuntu/focal/12.22.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,916 |
# Copyright 2016 Google Inc.
#
# 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,... | oliverchang/oss-fuzz | projects/llvm_libcxxabi/Dockerfile | Dockerfile | apache-2.0 | 879 |
FROM ubuntu:16.04
ENV HORIZON_BASEDIR=/opt/horizon \
LANG=C \
VERSION="stable/pike-gio"
COPY . ${HORIZON_BASEDIR}
WORKDIR ${HORIZON_BASEDIR}
RUN \
apt-get update && \
apt-get install -y \
make python-pip python-dev git gettext libpcre3-dev libpcre++-dev libyaml-dev && \
make clean && \
pip ins... | BiznetGIO/horizon | Dockerfile | Dockerfile | apache-2.0 | 1,318 |
# AUTOGENERATED FILE
FROM balenalib/aarch64-ubuntu:cosmic-run
ENV NODE_VERSION 15.7.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/aarch64/ubuntu/cosmic/15.7.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,909 |
# AUTOGENERATED FILE
FROM balenalib/orbitty-tx2-debian:buster-run
ENV NODE_VERSION 10.23.1
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserver... | nghiant2710/base-images | balena-base-images/node/orbitty-tx2/debian/buster/10.23.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,939 |
# AUTOGENERATED FILE
FROM balenalib/generic-aarch64-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.... | nghiant2710/base-images | balena-base-images/golang/generic-aarch64/ubuntu/disco/1.15.11/build/Dockerfile | Dockerfile | apache-2.0 | 2,004 |
# AUTOGENERATED FILE
FROM balenalib/colibri-imx6-debian:sid-run
ENV NODE_VERSION 14.18.3
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserver k... | resin-io-library/base-images | balena-base-images/node/colibri-imx6/debian/sid/14.18.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,932 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx1-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 depe... | resin-io-library/base-images | balena-base-images/python/jetson-tx1/debian/stretch/3.9.10/run/Dockerfile | Dockerfile | apache-2.0 | 4,093 |
FROM rancher/os-centosconsole-base
# FROM amd64=centos:7.7.1908 arm64=arm64v8/centos:7
COPY prompt.sh /etc/profile.d/
COPY build/sshd_config.append.tpl /etc/ssh/
RUN yum install -y iptables openssh-server rsync sudo \
vim less ca-certificates psmisc htop \
procps-ng iproute ope... | rancher/os-services | images/10-centosconsole/Dockerfile | Dockerfile | apache-2.0 | 1,197 |
# AUTOGENERATED FILE
FROM balenalib/generic-aarch64-debian:sid-run
ENV GO_VERSION 1.14.13
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
&& apt... | nghiant2710/base-images | balena-base-images/golang/generic-aarch64/debian/sid/1.14.13/run/Dockerfile | Dockerfile | apache-2.0 | 2,326 |
FROM java:8
ENTRYPOINT ["java", "-jar", "/app/app.jar"]
COPY maven/target/helloworld-service-0.1-opt-4.jar /app/app.jar
| saturnism/spring-boot-docker | examples/helloworld-service-opt-4/Dockerfile | Dockerfile | apache-2.0 | 121 |
# AUTOGENERATED FILE
FROM balenalib/ts4900-fedora:30-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.pool.s... | nghiant2710/base-images | balena-base-images/node/ts4900/fedora/30/10.24.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,753 |
# AUTOGENERATED FILE
FROM balenalib/orange-pi-one-alpine:3.11-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/orange-pi-one/alpine/3.11/1.15.8/run/Dockerfile | Dockerfile | apache-2.0 | 2,470 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-alpine:3.10-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/beaglebone/alpine/3.10/3.7.9/run/Dockerfile | Dockerfile | apache-2.0 | 4,130 |
# AUTOGENERATED FILE
FROM balenalib/orbitty-tx2-debian:jessie-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/orbitty-tx2/debian/jessie/14.15.4/build/Dockerfile | Dockerfile | apache-2.0 | 2,784 |
# AUTOGENERATED FILE
FROM balenalib/edge-ubuntu:xenial-build
ENV GO_VERSION 1.16
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-amd64.tar.gz" \
&& echo "013a489ebb3e24ef3d915abe5b94c3286c070dfe0818d5bca8108f1d6e8440d2 go$GO_VERSION.linux-amd64.tar.gz" | sha256s... | nghiant2710/base-images | balena-base-images/golang/edge/ubuntu/xenial/1.16/build/Dockerfile | Dockerfile | apache-2.0 | 2,004 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx1-fedora:32-build
ENV NODE_VERSION 12.21.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver ha.po... | nghiant2710/base-images | balena-base-images/node/jetson-tx1/fedora/32/12.21.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,753 |
# AUTOGENERATED FILE
FROM balenalib/jetson-nano-fedora:32-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 Dockerfil... | nghiant2710/base-images | balena-base-images/openjdk/jetson-nano/fedora/32/8-jdk/build/Dockerfile | Dockerfile | apache-2.0 | 1,321 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-pocket-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.co... | nghiant2710/base-images | balena-base-images/golang/beaglebone-pocket/alpine/3.12/1.15.11/build/Dockerfile | Dockerfile | apache-2.0 | 2,346 |
# AUTOGENERATED FILE
FROM balenalib/artik533s-debian:buster-run
ENV GO_VERSION 1.16.3
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
&& apt-get... | nghiant2710/base-images | balena-base-images/golang/artik533s/debian/buster/1.16.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,353 |
# AUTOGENERATED FILE
FROM balenalib/via-vab820-quad-debian:stretch-run
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu57 \
liblttng-us... | nghiant2710/base-images | balena-base-images/dotnet/via-vab820-quad/debian/stretch/2.1-runtime/run/Dockerfile | Dockerfile | apache-2.0 | 2,556 |
# AUTOGENERATED FILE
FROM balenalib/rpi-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/rpi/debian/bullseye/3.6.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,854 |
# AUTOGENERATED FILE
FROM balenalib/surface-go-ubuntu:cosmic-run
# A few reasons for installing distribution-provided OpenJDK:
#
# 1. Oracle. Licensing prevents us from redistributing the official JDK.
#
# 2. Compiling OpenJDK also requires the JDK to be installed, and it gets
# really hairy.
#
# For some s... | nghiant2710/base-images | balena-base-images/openjdk/surface-go/ubuntu/cosmic/8-jre/run/Dockerfile | Dockerfile | apache-2.0 | 3,112 |
FROM debian:stable-slim
LABEL maintainer.0="João Fonseca (@joaopaulofonseca)" \
maintainer.1="Pedro Branco (@pedrobranco)" \
maintainer.2="Rui Marinho (@ruimarinho)"
RUN useradd -r bitcoin \
&& apt-get update -y \
&& apt-get install -y curl gnupg gosu \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* /t... | ruimarinho/docker-bitcoin-core | 0.18/Dockerfile | Dockerfile | mit | 1,563 |
FROM openjdk:8-jre-alpine
VOLUME /tmp
RUN set -x && \
apk update && \
apk add nginx && \
adduser -D -g 'www' www && \
mv ./tmp/app.conf /etc/nginx/conf.d/ && \
| ShotaOd/Carbon | carbon-docker/app/Dockerfile | Dockerfile | mit | 183 |
# AUTOGENERATED FILE
FROM balenalib/am571x-evm-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/am571x-evm/alpine/3.12/8-jre/run/Dockerfile | Dockerfile | apache-2.0 | 1,759 |
FROM jshimko/meteor-launchpad:latest
| rndD/meteor-pointless-poker | Dockerfile | Dockerfile | apache-2.0 | 38 |
FROM ubuntu:14.04
RUN apt-get update && \
apt-get -qqy install --no-install-recommends nodejs-legacy npm && \
sudo npm install --global azure-cli@0.9.5
| devigned/azure-cli-docker | 0.9.5/Dockerfile | Dockerfile | mit | 169 |
FROM ubuntu:14.04
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
curl \
git \
gconf2 \
gconf-service \
libgtk2.0-0 \
libnotify4 \
libxtst6 \
libnss3 \
python \
gvfs-bin \
xdg-u... | ensime/ensime-atom | spec/issue144/Dockerfile | Dockerfile | mit | 521 |
FROM openjdk:8-jre-alpine
#EXPOSE 8443
ADD /target/petstore-3.0.1.jar server.jar
CMD ["/bin/sh","-c","java -XX:+UnlockExperimentalVMOptions -XX:+UseCGroupMemoryLimitForHeap -XX:MaxRAMFraction=1 -Dlight-4j-config-dir=/config -Dlogback.configurationFile=/config/logback.xml -jar /server.jar"] | networknt/light-java-example | rest/perstore-with-codegen/petstore-service/docker/Dockerfile | Dockerfile | apache-2.0 | 291 |
FROM gradle:5.4.1-jdk11 as gradle
WORKDIR /jawn
COPY build.gradle build.gradle
COPY src src
RUN gradle install --refresh-dependencies --no-daemon
FROM openjdk:11.0.5-jre-stretch
WORKDIR /jawn
COPY --from=gradle /jawn/build/install/jawn .
ENTRYPOINT ["bin/jawn"]
CMD ["8080","production"]
| stefanocasazza/FrameworkBenchmarks | frameworks/Java/jawn/jawn.dockerfile | Dockerfile | bsd-3-clause | 289 |
# Run ricochet in a container
# see: https://ricochet.im/
#
# docker run -d \
# --restart always \
# -v /etc/localtime:/etc/localtime:ro \
# -v /tmp/.X11-unix:/tmp/.X11-unix \
# -e DISPLAY=unix$DISPLAY \
# --name ricochet \
# jess/ricochet
#
FROM debian:sid
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get u... | rschmidtz/dockerfiles | ricochet/Dockerfile | Dockerfile | mit | 1,488 |
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not us... | a1vanov/ignite | modules/docker/Dockerfile | Dockerfile | apache-2.0 | 1,568 |
FROM armhf/ubuntu:trusty
RUN apt-get update && apt-get install -y apparmor bash-completion btrfs-tools build-essential curl ca-certificates debhelper dh-apparmor dh-systemd git libapparmor-dev libdevmapper-dev libltdl-dev libsqlite3-dev libsystemd-journal-dev --no-install-recommends && rm -rf /var/lib/apt/lists/*
ENV... | jnewland/kops | vendor/github.com/docker/docker/contrib/builder/deb/armhf/ubuntu-trusty/Dockerfile | Dockerfile | apache-2.0 | 539 |
FROM ubuntu:latest
MAINTAINER takecy
RUN apt-get update
RUN apt-get install -y wget
RUN apt-get install -y git
# Go
WORKDIR /tmp
RUN wget https://storage.googleapis.com/golang/go1.5.1.linux-amd64.tar.gz
RUN tar -C /usr/local -xf go1.5.1.linux-amd64.tar.gz
ENV PATH=$PATH:/usr/local/go/bin
ENV GOPATH=$HOME/go
ENV PATH... | takecy/docker.ubuntu.golang | Dockerfile | Dockerfile | mit | 738 |
FROM archlinux
MAINTAINER "Johann Weging <johann@weging.com>"
ENV DUMB_INIT_VERSION 1.0.1
ENV GOSU_VERSION 1.8
RUN set -x \
&& curl -sSL https://github.com/Yelp/dumb-init/releases/download/v$DUMB_INIT_VERSION/dumb-init_${DUMB_INIT_VERSION}_amd64 > /usr/bin/dumb-init \
&& chmod +x /usr/bin/dumb-init \
&& curl -sSL htt... | JohannWeging/docker-archlinux | archlinux/Dockerfile | Dockerfile | mit | 768 |
# Container image that runs your code
FROM fedora:30
#Copies your code file from your action repository to the filesystem path `/` of the container
COPY entrypoint.sh /entrypoint.sh
#Code file to execute when the docker container starts up (`entrypoint.sh`)
ENTRYPOINT ["/entrypoint.sh"]
| RosettaCommons/binder | .github/workflows/fedora30/Dockerfile | Dockerfile | mit | 290 |
## -*- docker-image-name: "scaleway/debian:sid" -*-
FROM armbuild/debian:sid
MAINTAINER Scaleway <opensource@scaleway.com> (@scaleway)
# Environment
ENV DEBIAN_FRONTEND noninteractive
# Useful for image inheritance
ENV SCW_BASE_IMAGE scaleway/debian:sid
# ./patches/usr/local/bin/ is where the builder downloads qemu... | QuentinPerez/image-debian | sid/Dockerfile | Dockerfile | mit | 2,178 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.