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 balenalib/amd64-ubuntu:focal-build
LABEL io.balena.device-type="nuc"
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/messages ] && mkdir -p /.ba... | nghiant2710/base-images | balena-base-images/device-base/nuc/ubuntu/focal/build/Dockerfile | Dockerfile | apache-2.0 | 1,097 |
FROM python:3.7-alpine
RUN apk add --no-cache libpq libstdc++
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY requirements.txt /usr/src/app
RUN apk add --no-cache --virtual build-deps \
g++ libffi-dev libuv-dev make musl-dev openssl-dev postgresql-dev && \
pip install --no-cache-dir -r /usr/src/app/requir... | volyrique/FrameworkBenchmarks | frameworks/Python/emmett/emmett.dockerfile | Dockerfile | bsd-3-clause | 499 |
from scratch
| TomSweeneyRedHat/buildah | pkg/util/test/test2/Dockerfile | Dockerfile | apache-2.0 | 13 |
# Copyright 2015 gRPC authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing... | adelez/grpc | tools/dockerfile/interoptest/grpc_interop_csharpcoreclr/Dockerfile | Dockerfile | apache-2.0 | 3,355 |
FROM golang:1.4
RUN mkdir -p /go/src/github.com/cpuguy83
RUN mkdir -p /go/src/github.com/cpuguy83 \
&& git clone -b v1.0.1 https://github.com/cpuguy83/go-md2man.git /go/src/github.com/cpuguy83/go-md2man \
&& cd /go/src/github.com/cpuguy83/go-md2man \
&& go get -v ./...
CMD ["/go/bin/go-md2man", "--help"]
| totherme/garden-linux-release | src/github.com/docker/docker/man/Dockerfile | Dockerfile | apache-2.0 | 318 |
FROM python:3.6-slim
# Update OS
RUN sed -i 's/# \(.*multiverse$\)/\1/g' /etc/apt/sources.list
RUN apt-get update
RUN apt-get -y upgrade
# Install Python
RUN apt-get install -y python-dev python-pip
# Create app directory
RUN mkdir /home/app
ADD . /home/app
# Install app requirements
RUN pip install -r /home/app/re... | Acaisoft/careercon | backend/Dockerfile | Dockerfile | mit | 650 |
# visExplorer jboss docker image.
#
# this docker contains only a jboss running. the configuration is injected after it runs.
#
FROM ubuntu:14.04
MAINTAINER george Marcotte "george@gmarcotte.com"
# Install packages we need for backend
RUN \
apt-get update && \
apt-get install -y wget && \
apt-get install -y sup... | gmarcotte3/georgesrepos | apachedocker/src/main/docker/Dockerfile | Dockerfile | mit | 2,538 |
FROM jboss/keycloak:11.0.2
MAINTAINER Steven Mirabito (smirabito@csh.rit.edu)
# Temporarily elevate permissions
USER root
# Copy customizations into container
ADD customization /opt/jboss/keycloak/customization
# Execute customization script
RUN cd /opt/jboss/keycloak && \
/opt/jboss/keycloak/customization/execute.s... | ComputerScienceHouse/csh-material-login | docker/Dockerfile | Dockerfile | mit | 352 |
FROM google/golang
MAINTAINER Lyan Hung <lyanchih@gmail.com>
RUN apt-get update && apt-get install -y pkg-config libxml2-dev && rm -rf /var/lib/apt/lists/*
WORKDIR /home/go
ADD . /home/go
RUN go get github.com/robfig/cron github.com/lyanchih/goamf code.google.com/p/go-uuid/uuid github.com/moovweb/gokogiri && go bu... | lyanchih/FreewayCrawler | Dockerfile | Dockerfile | mit | 387 |
# Based on https://hub.docker.com/r/continuumio/miniconda3/~/dockerfile/
# $ docker build . -t lennyt/magma:latest -t lennyt/magma:0.0.1
# $ docker run --rm -it lennyt/magma:latest /bin/bash
# $ docker push lennyt/magma:latest
# $ docker push lennyt/magma:0.0.1
FROM ubuntu:latest
ENV LANG=C.UTF-8 LC_ALL=C.UTF-8
... | phanrahan/magmathon | .mothball/docker/Dockerfile | Dockerfile | mit | 2,293 |
FROM python:3.6.2-alpine
ADD . /code
WORKDIR /code
RUN apk add --update linux-headers gcc musl-dev && pip install -r requirements.txt
CMD ["python", "register.py"]
| samneirinck/yons | register/Dockerfile | Dockerfile | mit | 164 |
FROM qixtand/debian-wheezy-buildpack
# skip installing gem documentation
RUN mkdir -p /usr/local/etc \
&& { \
echo 'install: --no-document'; \
echo 'update: --no-document'; \
} >> /usr/local/etc/gemrc
ENV RUBY_MAJOR 2.1
ENV RUBY_VERSION 2.1.5
ENV RUBY_DOWNLOAD_SHA256 22ba1eb8d475c9ed7e0541418d86044c1ea4c093ab79... | qixtand/qixtand | debian/wheezy/ruby/2.1.5/Dockerfile | Dockerfile | mit | 2,156 |
FROM ubuntu:16.04
LABEL maintainer="Sebastian Spreizer <spreizer@web.de>"
RUN apt-get update && apt-get install -y \
build-essential \
cmake \
cython \
libgsl0-dev \
libltdl7-dev \
libncurses5-dev \
libreadline6-dev \
python-all-dev \
python-flask \
python-numpy \
wget
WOR... | babsey/nest-server-simulation | Dockerfile | Dockerfile | mit | 761 |
# Dockerfile - alpine
# https://github.com/openresty/docker-openresty
ARG RESTY_IMAGE_BASE="alpine"
ARG RESTY_IMAGE_TAG="3.13"
FROM ${RESTY_IMAGE_BASE}:${RESTY_IMAGE_TAG}
LABEL maintainer="Evan Wies <evan@neomantra.net>"
# Docker Build Arguments
ARG RESTY_IMAGE_BASE="alpine"
ARG RESTY_IMAGE_TAG="3.13"
ARG RESTY_VER... | bestlong/laradock | openresty/Dockerfile | Dockerfile | mit | 8,509 |
# FROM alpine:3.7
# ENV VERSION=v10.24.1 NPM_VERSION=6 YARN_VERSION=v1.22.10 NODE_BUILD_PYTHON=python
FROM alpine:3.9
ENV VERSION=v12.22.3 NPM_VERSION=6 YARN_VERSION=v1.22.10 NODE_BUILD_PYTHON=python
# FROM alpine:3.11
# ENV VERSION=v14.17.3 NPM_VERSION=6 YARN_VERSION=v1.22.10 NODE_BUILD_PYTHON=python3
# FROM alpine... | mhart/alpine-node | build.dockerfile | Dockerfile | mit | 3,285 |
FROM ubuntu:14.04
MAINTAINER rafael.colton@gmail.com
ENV HOME /root
ENV DEBIAN_FRONTEND noninteractive
ENV GOROOT /usr/local/go
ENV GOPATH /app
ENV GO_TARBALL go1.3.3.linux-amd64.tar.gz
ENV TARBALL_SHA1_SUM 14068fbe349db34b838853a7878621bbd2b24646
ENV LD_LIBRARY_PATH /lib/x86_64-linux-gnu:/usr/local/lib:/usr/lib:/lib
... | rafecolton/docker-builder | Dockerfile | Dockerfile | mit | 1,852 |
# Run f.lux in a container
#
# docker run -d \
# -v /tmp/.X11-unix/:/tmp/.X11-unix/ \
# -e DISPLAY=unix$DISPLAY \
# --name flux \
# kleesc/flux \
# xflux \
# -l <latitude> \
# -g <longitude> \
# -k <colortemp> \
# -nofork
#
FROM ubuntu:latest
MAINTAINER Kenny Lee Sin Cheong... | kleesc/dockerfiles | flux/Dockerfile | Dockerfile | mit | 1,145 |
FROM tomcat
MAINTAINER Sergio Moya <smoya89@gmail.com>
COPY web/* /usr/local/tomcat/webapps/
| smoya/docker-amazon-iap-2.0 | Dockerfile | Dockerfile | mit | 94 |
FROM node:5-onbuild
EXPOSE 3000
| TestArmada/boaty-mcboatface | Dockerfile | Dockerfile | mit | 32 |
FROM alpine:3.13
RUN apk add --no-cache \
libxml2 \
libxslt \
python3 \
py3-lxml \
&& \
python3 -m ensurepip && \
pip3 install --upgrade pip && \
pip3 install 'dbb-ranking-parser==0.4.2' && \
rm -rf /var/cache/apk/*
# Only relevant for HTTP server mode.
EXPOSE 8... | homeworkprod/dbb-ranking-parser | Dockerfile | Dockerfile | mit | 359 |
FROM debian
MAINTAINER Koichi Nakashima <koichi@nksm.name>
RUN apt-get -y update \
&& apt-get -y install wget build-essential bison autoconf \
&& mkdir /usr/local/src/bash \
&& wget -qO- https://ftp.gnu.org/gnu/bash/bash-4.0.tar.gz | tar zx -C /usr/local/src/bash --strip-components=1 \
&& cd /usr/local... | ko1nksm/bash | 4.0/Dockerfile | Dockerfile | mit | 670 |
FROM nodesource/sid-base
MAINTAINER William Blankenship <wblankenship@nodesource.com>
RUN curl https://deb.nodesource.com/node_4.x/pool/main/n/nodejs/nodejs_4.4.4-1nodesource1~sid1_amd64.deb > node.deb \
&& dpkg -i node.deb \
&& rm node.deb
RUN npm install -g pangyp\
&& ln -s $(which pangyp) $(dirname $(which pang... | nodesource/docker-node | debian/sid/node/4.4.4/Dockerfile | Dockerfile | mit | 547 |
FROM centos:7
MAINTAINER David Lai
# Install Python Environment
RUN curl -o get_pip.py https://bootstrap.pypa.io/get-pip.py
RUN python get_pip.py
RUN rm get_pip.py
# Installing Locust.io
RUN pip install locustio
# Installing urwid for menus
RUN pip install urwid
# Create working Directory
RUN mkdir /locust
WORKDIR ... | dlai0001/docker-centos-locustio-rig | Dockerfile | Dockerfile | mit | 655 |
FROM fabric8/java-jboss-openjdk8-jdk:1.5.1
ENV JAVA_APP_JAR aloha-fat.jar
ENV AB_ENABLED off
ENV AB_JOLOKIA_AUTH_OPENSHIFT true
ENV JAVA_OPTIONS -Xmx256m
EXPOSE 8080
RUN chmod -R 777 /deployments/
ADD target/aloha-fat.jar /deployments/
| redhat-helloworld-msa/aloha | Dockerfile | Dockerfile | apache-2.0 | 240 |
FROM mongo:4.2.3
# generate a self signed mongodb with tls support
COPY openssl-test-ca.cnf openssl-test-ca.cnf
RUN openssl genrsa -out mongodb-test-ca.key 4096 && \
openssl req -subj "/C=PE/ST=Lima/L=Lima/O=Acme Inc. /OU=IT Department/CN=acme.com" -new -x509 -days 1826 -key mongodb-test-ca.key -out mongodb-test-c... | amazeeio/lagoon | local-dev/mongodb-dbaas-provider/Dockerfile | Dockerfile | apache-2.0 | 1,666 |
# AUTOGENERATED FILE
FROM balenalib/ccimx8x-sbc-pro-fedora:36-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 "virtualen... | resin-io-library/base-images | balena-base-images/python/ccimx8x-sbc-pro/fedora/36/3.10.2/run/Dockerfile | Dockerfile | apache-2.0 | 2,438 |
# AUTOGENERATED FILE
FROM balenalib/var-som-mx6-debian:stretch-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_VER... | nghiant2710/base-images | balena-base-images/golang/var-som-mx6/debian/stretch/1.15.11/build/Dockerfile | Dockerfile | apache-2.0 | 2,033 |
# AUTOGENERATED FILE
FROM balenalib/aio-3288c-fedora:30-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", si... | nghiant2710/base-images | balena-base-images/python/aio-3288c/fedora/30/3.9.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,431 |
# AUTOGENERATED FILE
FROM balenalib/imx8m-var-dart-ubuntu:xenial-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.pg... | nghiant2710/base-images | balena-base-images/node/imx8m-var-dart/ubuntu/xenial/10.24.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,918 |
# AUTOGENERATED FILE
FROM balenalib/revpi-connect-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 dep... | nghiant2710/base-images | balena-base-images/python/revpi-connect/ubuntu/focal/3.8.9/run/Dockerfile | Dockerfile | apache-2.0 | 4,070 |
# AUTOGENERATED FILE
FROM balenalib/surface-go-debian:buster-build
ENV NODE_VERSION 12.21.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserver keyserver.pgp.com --recv-keys "$key" || \
g... | nghiant2710/base-images | balena-base-images/node/surface-go/debian/buster/12.21.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,790 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-ubuntu:disco-build
ENV NODE_VERSION 10.24.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 --keyser... | nghiant2710/base-images | balena-base-images/node/beaglebone-green/ubuntu/disco/10.24.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,767 |
# AUTOGENERATED FILE
FROM balenalib/edge-ubuntu:focal-run
ENV GO_VERSION 1.15.11
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
&& apt-get upda... | nghiant2710/base-images | balena-base-images/golang/edge/ubuntu/focal/1.15.11/run/Dockerfile | Dockerfile | apache-2.0 | 2,334 |
# AUTOGENERATED FILE
FROM balenalib/nuc-fedora:31-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", since ... | nghiant2710/base-images | balena-base-images/python/nuc/fedora/31/3.8.9/build/Dockerfile | Dockerfile | apache-2.0 | 2,445 |
# AUTOGENERATED FILE
FROM balenalib/cl-som-imx8-debian:sid-build
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: public... | resin-io-library/base-images | balena-base-images/python/cl-som-imx8/debian/sid/3.9.10/build/Dockerfile | Dockerfile | apache-2.0 | 4,849 |
# AUTOGENERATED FILE
FROM balenalib/imx7-var-som-alpine:3.14-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... | resin-io-library/base-images | balena-base-images/python/imx7-var-som/alpine/3.14/3.6.15/run/Dockerfile | Dockerfile | apache-2.0 | 4,130 |
FROM python:3.6
MAINTAINER senthil kumaran <senthil@uthcode.com>
COPY . /app
WORKDIR /app
RUN pip install -r requirements.txt
ENTRYPOINT ["python"]
CMD ["golinks.py", "runserver"]
| orsenthil/golinks | Dockerfile | Dockerfile | apache-2.0 | 180 |
# AUTOGENERATED FILE
FROM balenalib/raspberry-pi2-ubuntu:cosmic-build
ENV NODE_VERSION 10.24.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 --keyserve... | nghiant2710/base-images | balena-base-images/node/raspberry-pi2/ubuntu/cosmic/10.24.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,766 |
# AUTOGENERATED FILE
FROM balenalib/imx8mm-var-dart-debian:stretch-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 --keys... | resin-io-library/base-images | balena-base-images/node/imx8mm-var-dart/debian/stretch/12.22.9/run/Dockerfile | Dockerfile | apache-2.0 | 2,939 |
# AUTOGENERATED FILE
FROM balenalib/generic-aarch64-debian:stretch-build
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... | resin-io-library/base-images | balena-base-images/dotnet/generic-aarch64/debian/stretch/3.1-runtime/build/Dockerfile | Dockerfile | apache-2.0 | 2,537 |
# AUTOGENERATED FILE
FROM balenalib/spacely-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/spacely-tx2/alpine/3.12/3.9.4/run/Dockerfile | Dockerfile | apache-2.0 | 4,131 |
# AUTOGENERATED FILE
FROM balenalib/generic-armv7ahf-alpine:edge-build
ENV NODE_VERSION 14.16.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/generic-armv7ahf/alpine/edge/14.16.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,963 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi-debian:buster-build
ENV GO_VERSION 1.16.3
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-armv6l.tar.gz" \
&& echo "0dae30385e3564a557dac7f12a63eedc73543e6da0f6017990e214ce8cc8797c go$GO_VERSION.linux-armv6l.tar.gz... | nghiant2710/base-images | balena-base-images/golang/raspberrypi/debian/buster/1.16.3/build/Dockerfile | Dockerfile | apache-2.0 | 2,004 |
FROM python:3.7
COPY tools/install_deps /install_deps
RUN pip install -r /install_deps/yapf.txt
COPY tools/install_deps/buildifier.sh ./buildifier.sh
RUN bash buildifier.sh
COPY tools/install_deps/clang-format.sh ./clang-format.sh
RUN bash clang-format.sh
WORKDIR /recommenders-addons
CMD ["python", "tools/pre_com... | tensorflow/recommenders-addons | tools/docker/pre-commit.Dockerfile | Dockerfile | apache-2.0 | 336 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-nx-devkit-ubuntu:focal-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 --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keys... | nghiant2710/base-images | balena-base-images/node/jetson-xavier-nx-devkit/ubuntu/focal/14.16.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,925 |
# AUTOGENERATED FILE
FROM balenalib/hummingboard2-alpine:3.15-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 'di... | resin-io-library/base-images | balena-base-images/openjdk/hummingboard2/alpine/3.15/8-jre/build/Dockerfile | Dockerfile | apache-2.0 | 1,766 |
FROM docker.dever.cc/java/base:latest
MAINTAINER Rabin "https://github.com/shemic"
# set environment variable
ENV HADOOP_HOME=/share/lib/hadoop
ENV HADOOP_CONF_DIR=$HADOOP_HOME/etc/hadoop
ENV YARN_CONF_DIR=$HADOOP_CONF_DIR
ENV PATH=$PATH:$HADOOP_HOME/bin:$HADOOP_HOME/sbin
ENV FLUME_HOME=/usr/local/flume
ENV FLUME_VE... | shemic/dm | src/docker/build/java/flume/Dockerfile | Dockerfile | apache-2.0 | 798 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-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 "virtua... | resin-io-library/base-images | balena-base-images/python/beaglebone-green/fedora/36/3.6.15/build/Dockerfile | Dockerfile | apache-2.0 | 2,444 |
# AUTOGENERATED FILE
FROM balenalib/aio-3288c-alpine:3.10-build
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 for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
... | nghiant2710/base-images | balena-base-images/node/aio-3288c/alpine/3.10/15.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,954 |
# AUTOGENERATED FILE
FROM balenalib/nanopi-neo-air-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 'd... | resin-io-library/base-images | balena-base-images/openjdk/nanopi-neo-air/alpine/3.14/8-jdk/build/Dockerfile | Dockerfile | apache-2.0 | 1,763 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-ubuntu:disco-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 --keyser... | nghiant2710/base-images | balena-base-images/node/beaglebone-green/ubuntu/disco/12.22.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,767 |
# AUTOGENERATED FILE
FROM balenalib/parallella-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/parallella/alpine/3.12/3.6.12/run/Dockerfile | Dockerfile | apache-2.0 | 4,132 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen6xq2g-ubuntu:eoan-build
ENV NODE_VERSION 10.24.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 ... | nghiant2710/base-images | balena-base-images/node/nitrogen6xq2g/ubuntu/eoan/10.24.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,762 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-pocket-ubuntu:bionic-run
ENV NODE_VERSION 14.18.3
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver... | resin-io-library/base-images | balena-base-images/node/beaglebone-pocket/ubuntu/bionic/14.18.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,919 |
# AUTOGENERATED FILE
FROM balenalib/i386-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: public key... | resin-io-library/base-images | balena-base-images/python/i386/debian/buster/3.7.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,848 |
# AUTOGENERATED FILE
FROM balenalib/imx7-var-som-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 de... | nghiant2710/base-images | balena-base-images/python/imx7-var-som/debian/stretch/3.9.4/run/Dockerfile | Dockerfile | apache-2.0 | 4,097 |
# AUTOGENERATED FILE
FROM balenalib/aio-3288c-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 McVitt... | nghiant2710/base-images | balena-base-images/python/aio-3288c/alpine/3.10/3.9.4/build/Dockerfile | Dockerfile | apache-2.0 | 4,836 |
# AUTOGENERATED FILE
FROM balenalib/kitra710-fedora:31-build
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
RUN dnf install -y \
python3-pip \
python3-dbus \
&& dnf clean all
# install "virtualenv", s... | nghiant2710/base-images | balena-base-images/python/kitra710/fedora/31/3.8.6/build/Dockerfile | Dockerfile | apache-2.0 | 2,435 |
# AUTOGENERATED FILE
FROM balenalib/artik530-alpine:3.13-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/artik530/alpine/3.13/1.15.7/run/Dockerfile | Dockerfile | apache-2.0 | 2,465 |
# AUTOGENERATED FILE
FROM balenalib/aio-3288c-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 depend... | resin-io-library/base-images | balena-base-images/python/aio-3288c/ubuntu/xenial/3.7.12/run/Dockerfile | Dockerfile | apache-2.0 | 4,066 |
# AUTOGENERATED FILE
FROM balenalib/ts4900-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 \
libicu67 \
libssl1.1 \
... | resin-io-library/base-images | balena-base-images/dotnet/ts4900/debian/bullseye/5.0-sdk/run/Dockerfile | Dockerfile | apache-2.0 | 2,909 |
# AUTOGENERATED FILE
FROM balenalib/orange-pi-lite-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 \
6A010C516600... | nghiant2710/base-images | balena-base-images/node/orange-pi-lite/alpine/3.13/15.7.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,027 |
# AUTOGENERATED FILE
FROM balenalib/parallella-hdmi-resin-debian:jessie-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 g... | nghiant2710/base-images | balena-base-images/golang/parallella-hdmi-resin/debian/jessie/1.16.3/build/Dockerfile | Dockerfile | apache-2.0 | 2,039 |
FROM centos:6.8
MAINTAINER Arturo Bayo <arturo.bayo@gmail.com>
USER root
# Removing cached packages, headers and fixing possible RPM database errors (/var/lib/rpm)
RUN yum clean all && rpm --rebuilddb && yum update -y;
# Installing Linux commands and utils
RUN yum install -y curl wget scp unzip tar sudo ntp
#RUN yum ... | docker-hdp/centos-base | Dockerfile | Dockerfile | apache-2.0 | 1,204 |
# AUTOGENERATED FILE
FROM balenalib/spacely-tx2-debian:buster-run
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu63 \
libssl1.1 \
... | nghiant2710/base-images | balena-base-images/dotnet/spacely-tx2/debian/buster/5.0-runtime/run/Dockerfile | Dockerfile | apache-2.0 | 2,944 |
FROM php:5.5-apache
COPY config/php.ini /usr/local/etc/php/
COPY src/ /var/www/html/
MAINTAINER Scott Eppler version: 0.1 | audioboxer217/docker_php | Dockerfile | Dockerfile | apache-2.0 | 123 |
# AUTOGENERATED FILE
FROM balenalib/ccimx8x-sbc-pro-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 "virtualen... | nghiant2710/base-images | balena-base-images/python/ccimx8x-sbc-pro/fedora/31/3.9.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,437 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx2-nx-devkit-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 63... | resin-io-library/base-images | balena-base-images/python/jetson-tx2-nx-devkit/debian/bullseye/3.8.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,868 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi3-ubuntu:focal-build
ENV NODE_VERSION 14.15.4
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/focal/14.15.4/build/Dockerfile | Dockerfile | apache-2.0 | 2,763 |
# AUTOGENERATED FILE
FROM balenalib/isg-503-ubuntu:hirsute-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 --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com -... | resin-io-library/base-images | balena-base-images/node/isg-503/ubuntu/hirsute/17.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,905 |
# AUTOGENERATED FILE
FROM balenalib/ts4900-debian:buster-run
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu57 \
liblttng-ust0 \
... | nghiant2710/base-images | balena-base-images/dotnet/ts4900/debian/buster/2.1-sdk/run/Dockerfile | Dockerfile | apache-2.0 | 2,961 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx2-nx-devkit-fedora:33-build
ENV NODE_VERSION 14.18.3
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyse... | resin-io-library/base-images | balena-base-images/node/jetson-tx2-nx-devkit/fedora/33/14.18.3/build/Dockerfile | Dockerfile | apache-2.0 | 2,757 |
FROM ubuntu
EXPOSE 26379
RUN apt-get update && apt-get install -y software-properties-common python-software-properties
RUN /usr/bin/add-apt-repository ppa:chris-lea/redis-server
RUN apt-get update
RUN apt-get -y --force-yes install redis-server
RUN touch /tmp/sentine... | tsuru/redisapi | dockerfiles/sentinel/Dockerfile | Dockerfile | bsd-3-clause | 449 |
FROM phusion/baseimage:0.9.16
MAINTAINER Lingliang Zhang <lingliangz@gmail.com>
# PHP 5.6
RUN apt-get update
RUN apt-get -y upgrade
# Basic Requirements
RUN apt-get -y install nginx php5-mysql php-apc curl unzip php5 php5-fpm
# Wordpress Requirements
RUN apt-get -y install php5-curl php5-gd php5-intl php-pear php5-i... | thegazelle-ad/gazelle-wordpress-core | Dockerfile | Dockerfile | mit | 2,433 |
FROM viapath/snappy_ngstools:flatdog
MAINTAINER David Brawand <dbrawand@nhs.net>
ENV HOME /root
# install miniconda
RUN wget http://repo.continuum.io/miniconda/Miniconda-latest-Linux-x86_64.sh -O miniconda.sh && \
bash miniconda.sh -b -p /usr/local/anaconda && rm miniconda.sh
ENV PATH /usr/local/anaconda/bin:$PATH... | viapath/snappydocker | snappy_alpaca/Dockerfile | Dockerfile | mit | 467 |
FROM asteris/java:centos7_java7
MAINTAINER Steven Borrelli <steve@aster.is>
ENV ZOOKEEPER_VERSION 3.5.0-alpha
RUN yum -y install tar wget
RUN wget -q -O - http://apache.mirrors.pair.com/zookeeper/zookeeper-$ZOOKEEPER_VERSION/zookeeper-$ZOOKEEPER_VERSION.tar.gz | tar -xzf - -C /opt \
&& mv /opt/zookeeper-$ZOOKE... | asteris-llc/docker-zookeeper | zookeeper-3.5/Dockerfile | Dockerfile | apache-2.0 | 659 |
FROM scratch
ADD ./confd-0.10.0-linux-amd64 /confd
| cloudnautique/compose-templates | utils/containers/confd/Dockerfile | Dockerfile | apache-2.0 | 52 |
FROM microsoft/dotnet:runtime
WORKDIR /app
COPY publish/* ./
ENTRYPOINT ["dotnet", "Silo.dll"]
| ashkan-saeedi-mazdeh/orleans | Samples/Docker-Simple/Silo/Dockerfile | Dockerfile | mit | 97 |
# Get the latest php FPM
FROM php:7.1.10-fpm
# Get the laravel dependencies
RUN apt-get update && apt-get install -y libmcrypt-dev \
mysql-client libmagickwand-dev --no-install-recommends \
&& pecl install imagick \
&& docker-php-ext-enable imagick \
&& docker-php-ext-install mcrypt pdo_mysql \
&& ... | GeorgGroenendaal/BankingSystem | app.dockerfile | Dockerfile | mit | 1,142 |
<<<<<<< 4edfd82ae145246eb19c296d149a121852cfb6e9
FROM alpine:latest
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
ENV HOME /home/gcalcli
RUN apk --no-cache add \
python \
python-dev \
py2-pip \
build-base \
&& adduser -S gcalcli \
&& chown -R gcalcli $HOME \
&& pip install vobject parsedatetime gcalcli
=... | rothgar/dockerfiles | gcalcli/Dockerfile | Dockerfile | mit | 799 |
FROM nvidia/cuda:9.0-base-ubuntu16.04
MAINTAINER "Max Woolf"
RUN apt-get update && apt-get install -y wget ca-certificates \
git curl vim python3-dev python3-pip libopencv-dev python-opencv \
libfreetype6-dev libpng12-dev libhdf5-dev openmpi-bin \
cuda-command-line-tools-9-0 \
cuda-cublas-9-0 \
cud... | minimaxir/keras-cntk-docker | Dockerfile | Dockerfile | mit | 1,503 |
FROM python:3.7-stretch
RUN apt update && apt install -y netcat
# set environment varibles
ENV PYTHONDONTWRITEBYTECODE 1
ENV PYTHONUNBUFFERED 1
# set work directory
WORKDIR /usr/src/app
COPY ./requirements.txt /usr/src/app/requirements.txt
RUN pip install --upgrade pip && \
pip install "psycopg2==2.8.6" && \
... | xflows/clowdflows-backend | Dockerfile | Dockerfile | mit | 484 |
# syntax=docker/dockerfile:1
# official image base
FROM openjdk:11
# default working directory
WORKDIR /app
# copy some files and dir into working dir
COPY .mvn/ .mvn
COPY mvnw pom.xml ./
# add source code to image
# copy src is a MUST
COPY src ./src
# a Dockerfile must be in the same path of the main Application
... | allenlam369/auction_api | src/main/java/allen/Dockerfile | Dockerfile | mit | 1,282 |
FROM nodesource/fedora23-base
MAINTAINER William Blankenship <wblankenship@nodesource.com>
RUN curl -sL -o ns.rpm https://rpm.nodesource.com/pub_4.x/fc/23/x86_64/nodejs-4.2.6-1nodesource.fc23.x86_64.rpm \
&& rpm -i --nosignature --force ns.rpm \
&& rm -f ns.rpm
RUN npm install -g pangyp\
&& ln -s $(which pangyp) $... | nodesource/docker-node | fedora/23/node/4.2.6/Dockerfile | Dockerfile | mit | 476 |
FROM python:2.7-slim
MAINTAINER Hamilton Turner <hamiltont@gmail.com>
# Yay devcron
RUN pip install https://bitbucket.org/dbenamy/devcron/get/tip.tar.gz
# Setup defaults
RUN mkdir /cron && \
echo "* * * * * /cron/sample.sh" > /cron/crontab && \
echo "echo hello world" > /cron/sample.sh && \
chmod a+x /cro... | hamiltont/docker-cron | Dockerfile | Dockerfile | mit | 387 |
# To make this a 32 bit version python:2.7.18-slim-stretch -> i386/python:2.7.18-slim-stretch
FROM python:2.7.18-slim-stretch
ENV iraf /iraf/iraf/
# To make this a 32 bit version linux64 -> linux
ENV IRAFARCH linux64
RUN apt-get update \
&& apt -y install gcc make flex git \
&& apt -y install libcurl4... | svalenti/lcogtsnpipe | Dockerfile | Dockerfile | mit | 2,874 |
FROM node:8
ENV NODE_ENV=production
WORKDIR /usr/src/app
COPY ./docker-prod/server/* ./
COPY ./build ./build
RUN npm install
CMD ["npm", "start" ]
EXPOSE 1337
| DecipherNow/gm-fabric-dashboard | docker-prod/Dockerfile | Dockerfile | mit | 166 |
FROM babim/ubuntubase:14.04
## Install wget ##
RUN apt-get update && apt-get install -y wget bind9 bind9utils bind9-doc dnsutils \
netcat-openbsd sudo libidn11 libpcre3 libgmp10 libexpat1 libstdc++6 libperl5.18 libaio1 resolvconf unzip pax sysstat sqlite3
RUN apt-get clean && \
apt-get autoclean && \
apt-get... | babim/docker-zimbra | Dockerfile | Dockerfile | mit | 748 |
FROM docker:17
RUN apk add --no-cache py-pip
RUN pip install docker-compose
ENTRYPOINT ["docker-entrypoint.sh"]
CMD ["sh"]
| siimeon/DockerComposeGitlabCI | Dockerfile | Dockerfile | mit | 125 |
FROM litaio/ruby:2.3.0
MAINTAINER Jimmy Cuadra <jimmy@jimmycuadra.com>
RUN gem install bundler && mkdir /app
COPY start /start
WORKDIR /app
CMD ["/start"]
ONBUILD COPY . /app
| litaio/docker-lita | Dockerfile | Dockerfile | mit | 177 |
FROM ubuntu:13.10
MAINTAINER Iliyan Trifonov <iliyan.trifonov@gmail.com>
RUN echo "deb mirror://mirrors.ubuntu.com/mirrors.txt saucy main restricted universe multiverse" > /etc/apt/sources.list && echo "deb mirror://mirrors.ubuntu.com/mirrors.txt saucy-updates main restricted universe multiverse" >> /etc/apt/sources.... | iliyan-trifonov/docker-nginx-sshd | Dockerfile | Dockerfile | mit | 1,169 |
# AUTOGENERATED FILE
FROM balenalib/spacely-tx2-debian:stretch-build
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: pu... | nghiant2710/base-images | balena-base-images/python/spacely-tx2/debian/stretch/3.8.6/build/Dockerfile | Dockerfile | apache-2.0 | 4,858 |
FROM node:6.2.0-slim
MAINTAINER Matthew Barry "matthew@komputerwiz.net"
RUN useradd -m -d /usr/src/app -s /bin/bash node
WORKDIR /usr/src/app
USER node
COPY package.json /usr/src/app
RUN npm install
COPY . /usr/src/app
CMD [ "npm", "start" ]
| komputerwiz/slack-parensbot | Dockerfile | Dockerfile | apache-2.0 | 246 |
# AUTOGENERATED FILE
FROM balenalib/armv7hf-debian:buster-build
ENV NODE_VERSION 14.16.1
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg ... | nghiant2710/base-images | balena-base-images/node/armv7hf/debian/buster/14.16.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,784 |
# AUTOGENERATED FILE
FROM balenalib/generic-armv7ahf-alpine:3.14-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.con... | resin-io-library/base-images | balena-base-images/golang/generic-armv7ahf/alpine/3.14/1.16.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,345 |
# AUTOGENERATED FILE
FROM balenalib/imx8m-var-dart-debian:sid-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.gz"... | nghiant2710/base-images | balena-base-images/golang/imx8m-var-dart/debian/sid/1.14.14/build/Dockerfile | Dockerfile | apache-2.0 | 1,999 |
FROM centos:centos7
ADD . /opt/pixiebot
RUN yum install -y epel-release
RUN yum install -y python python-devel python-tox
RUN cd /opt/pixiebot && tox -v -evenv --notest
CMD /opt/pixiebot/.tox/venv/bin/python -m pixiebot.bot
| umago/pixiebot | Dockerfile | Dockerfile | apache-2.0 | 229 |
# Copyright 2019 Google, LLC.
#
# 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, ... | GoogleCloudPlatform/serverless-expeditions | webhooks-with-cloud-run/MicroServices/GitHub/Dockerfile | Dockerfile | apache-2.0 | 1,277 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx1-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 McVit... | nghiant2710/base-images | balena-base-images/python/jetson-tx1/alpine/3.10/2.7.18/build/Dockerfile | Dockerfile | apache-2.0 | 5,280 |
FROM ubuntu:14.04
MAINTAINER Payam Emami, payam.emami@medsci.uu.se
RUN apt-get update && apt-get install --yes openms
ENTRYPOINT ["TextExporter"]
| phnmnl/workflow-demo | OpenMS/OpenMSDockers/TextExporter/Dockerfile | Dockerfile | apache-2.0 | 146 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.