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 python:3.7
ENV PYTHONPATH=/app
ADD requirements.txt /requirements.txt
ADD requirements /requirements
RUN pip install -r /requirements.txt
CMD python manage.py migrate && python manage.py runserver 0.0.0.0:80
RUN mkdir /app
WORKDIR /app
| unt-libraries/django-nomination | Dockerfile | Dockerfile | bsd-3-clause | 244 |
FROM ubuntu:14.04
MAINTAINER Benjamin Michalski <benjamin.michalski@gmail.com>
WORKDIR /root
RUN \
apt-get update && \
apt-get install -y \
software-properties-common
RUN \
add-apt-repository ppa:brightbox/ruby-ng && \
apt-get update && \
apt-get install -y \
ruby2.2 \
ruby2.2-dev
RUN \
apt... | bmichalski/docker-redmine | Dockerfile | Dockerfile | mit | 2,659 |
# AUTOGENERATED FILE
FROM balenalib/astro-tx2-ubuntu:xenial-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/astro-tx2/ubuntu/xenial/11-jdk/build/Dockerfile | Dockerfile | apache-2.0 | 3,103 |
# AUTOGENERATED FILE
FROM balenalib/imx6ul-var-dart-ubuntu:xenial-run
# A few reasons for installing distribution-provided OpenJDK:
#
# 1. Oracle. Licensing prevents us from redistributing the official JDK.
#
# 2. Compiling OpenJDK also requires the JDK to be installed, and it gets
# really hairy.
#
# For s... | nghiant2710/base-images | balena-base-images/openjdk/imx6ul-var-dart/ubuntu/xenial/8-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 3,102 |
FROM openjdk:8-jdk-alpine
# Add jhipster-registry source
ADD . /code/
# Add OpenSSH, package the application and delete all lib
RUN apk update && apk add openssh && \
cd /code/ && \
rm -Rf target && \
chmod +x /code/mvnw && \
sleep 1 && \
./mvnw package && \
mv /code/target/*.war /jhipster-reg... | SixPenny/SpringCloud | project/Registry/Dockerfile | Dockerfile | apache-2.0 | 809 |
FROM golang:1.12
ENV GO111MODULE on
WORKDIR /go-std
COPY ./src /go-std
RUN go get github.com/valyala/quicktemplate/qtc
RUN go get -u github.com/mailru/easyjson/...
RUN go mod download
RUN go generate ./templates
RUN go build -ldflags="-s -w" -o app .
CMD ./app -db mgo -db_connection_string "tfb-database"
| stefanocasazza/FrameworkBenchmarks | frameworks/Go/go-std/go-mgo.dockerfile | Dockerfile | bsd-3-clause | 311 |
# DOCKER-VERSION 1.2.0
# VERSION 0.1.0
#
# rbd-unlock - release an RBD lock
#
FROM ceph/rbd
MAINTAINER Seán C McCord "ulexus@gmail.com"
ADD entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
# Execute the lock script
ENTRYPOINT ["/entrypoint.sh"]
| h0tbird/ceph-docker | rbd-unlock/Dockerfile | Dockerfile | mit | 258 |
FROM ontouchstart/rpi-base
MAINTAINER Sam Liu <ontouchstart@gmail.com>
ADD io.js /io.js
RUN cd /io.js/ && ./configure && make install
RUN iojs -e 'console.log(process)'
ENV HOME /home
WORKDIR /home
| ontouchstart/rpi-io.js | Dockerfile | Dockerfile | mit | 200 |
FROM ubuntu:13.10
MAINTAINER Love Nyberg "love@bloglovin.com"
RUN apt-get update && apt-get install -y wget
# Get and install drone
RUN wget http://downloads.drone.io/latest/drone.deb && dpkg -i drone.deb
EXPOSE 80
ADD start /start
RUN chmod 0755 /start
CMD ["/start"] | jacksoncage/docker-drone | Dockerfile | Dockerfile | mit | 274 |
#
# Besiege, simple web frontend for Siege.
#
FROM ubuntu:saucy
MAINTAINER Eric Platon <eplaton@gmx.com>
RUN apt-get update
RUN apt-get install -y siege git ruby2.0 ruby2.0-dev build-essential
RUN git clone git://github.com/ic/besiege.git
RUN gem install bundler --no-rdoc --no-ri
RUN cd /besiege && \
bundle ins... | ic/docker-besiege | Dockerfile | Dockerfile | mit | 379 |
FROM ubuntu:14.04
MAINTAINER keakon <keakon@gmail.com>
ENV DOODLE_PATH /data/doodle
RUN apt-get update && \
apt-get install -y \
git \
wget \
python \
build-essential \
python-dev \
libcurl4-openssl-dev && \
rm -rf /var/lib/apt/lists/*
RUN git clone https://github.com/keakon/Doodle.git $DOODLE_PATH
WOR... | keakon/Doodle | docker/Dockerfile | Dockerfile | mit | 630 |
# Start with CUDA base image
FROM kaixhin/cuda:latest
MAINTAINER Kai Arulkumaran <design@kaixhin.com>
# Install CUDA repo (needed for cuDNN)
ENV CUDA_REPO_PKG=cuda-repo-ubuntu1404_7.5-18_amd64.deb
RUN wget http://developer.download.nvidia.com/compute/cuda/repos/ubuntu1404/x86_64/$CUDA_REPO_PKG && \
dpkg -i $CUDA_REP... | Kaixhin/dockerfiles | cudnn/cudnn_v7.5/Dockerfile | Dockerfile | mit | 611 |
FROM alpine:3.6
MAINTAINER rpd@noradltd.com
RUN apk update \
&& apk add fortune
EXPOSE 17
ENTRYPOINT [ "nc", "-lk", "-p", "17", "-e", "fortune" ]
| rdammkoehler/DockerKata | sh_qotd_Dockerfile | Dockerfile | mit | 154 |
FROM saltstack/opensuse-12.3
MAINTAINER info@signalsciences.com
LABEL com.signalsciences.base-os_name=sles \
com.signalsciences.base-os_version=12
# Upgrade System and Install dependencies
RUN zypper --gpg-auto-import-keys --non-interactive refresh && \
zypper --gpg-auto-import-keys --non-interactive update ... | signalsciences/os-server-combos | sigsciserverimg/sles_12-dev/Dockerfile | Dockerfile | mit | 442 |
FROM {{oracle_xe_base_image}}:{{oracle_xe_version}}
# Add playbooks to the Docker image
ADD site.yml /tmp/site.yml
ADD roles /tmp/
{% if oracle_pump.stat.exists %}
ADD {{module}}.dmp.zip /tmp/
{% endif %}
WORKDIR /tmp
# Run Ansible to configure the Docker image
RUN ansible-playbook site.yml -c local -e docker=yes &&... | fupelaqu/ansible-oraclexe-docker-base | oracle/templates/Dockerfile | Dockerfile | mit | 341 |
# Ubuntu Dockerfile
#
# https://github.com/dockerfile/ubuntu
#
# Pull base image.
FROM ubuntu:14.04
# Install.
RUN \
sed -i 's/# \(.*multiverse$\)/\1/g' /etc/apt/sources.list && \
apt-get update && \
apt-get -y upgrade && \
apt-get install -y build-essential pkg-config apt-utils libncurses-dev libreadline-dev... | ldhagen/docker-jupyter | Dockerfile | Dockerfile | mit | 4,221 |
FROM python:2.7
WORKDIR /sherparesponse
ENV HOME /root
RUN apt-get -y autoclean && apt-get -y autoremove && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
COPY requirements.txt /sherparesponse/
RUN pip install --src /tmp -r /sherparesponse/requirements.txt
COPY . /sherparesponse/
| Turistforeningen/sherpa-response | Dockerfile | Dockerfile | mit | 283 |
FROM ubuntu:trusty
MAINTAINER Jeffery Utter "jeff.utter@firespring.com"
RUN bash -c "debconf-set-selections <<< 'mysql-server mysql-server/root_password password super'"
RUN bash -c "debconf-set-selections <<< 'mysql-server mysql-server/root_password_again password super'"
RUN apt-get update \
&& apt-get install -y... | jeffutter/mogile-tracker-docker | Dockerfile | Dockerfile | mit | 1,523 |
FROM node:6
#install all globally
RUN npm install -g rimraf webpack webpack-dev-server typescript@2 wintersmith@2
| Fost/ng2-seed | Dockerfile | Dockerfile | mit | 115 |
FROM vothanhkiet/alpine-s6-proxy:3.8
LABEL softwares.mariadb="10.3.9"
COPY root /
RUN apk update && \
apk add --update mariadb mariadb-client bash pwgen && \
rm -f /var/cache/apk/* && \
mkdir -p /etc/mysql/conf.d \
&& { \
echo '[mysqld]'; \
echo 'skip-host-cache'; \
echo 'skip-na... | vothanhkiet/dockerfile-collections | alpine-s6-proxy-mariadb/Dockerfile | Dockerfile | mit | 881 |
# AUTOGENERATED FILE
FROM balenalib/aio-3288c-debian:buster-run
ENV GO_VERSION 1.16.14
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
&& apt-ge... | resin-io-library/base-images | balena-base-images/golang/aio-3288c/debian/buster/1.16.14/run/Dockerfile | Dockerfile | apache-2.0 | 2,355 |
# AUTOGENERATED FILE
FROM balenalib/nuc-ubuntu:cosmic-build
ENV GO_VERSION 1.14.13
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-amd64.tar.gz" \
&& echo "bfea0c8d7b70c1ad99b0266b321608db57df75820e8f4333efa448a43da01992 go$GO_VERSION.linux-amd64.tar.gz" | sha25... | nghiant2710/base-images | balena-base-images/golang/nuc/ubuntu/cosmic/1.14.13/build/Dockerfile | Dockerfile | apache-2.0 | 2,009 |
FROM openjdk:8 as builder
COPY . datahub-src
RUN cd datahub-src && ./gradlew :metadata-ingestion-examples:mce-cli:build
FROM openjdk:8-jre-alpine
COPY --from=builder datahub-src/metadata-ingestion-examples/mce-cli/build/libs/mce-cli.jar ./
COPY --from=builder datahub-src/metadata-ingestion-examples/mce-cli/example-boo... | mars-lan/WhereHows | docker/ingestion/Dockerfile | Dockerfile | apache-2.0 | 394 |
# AUTOGENERATED FILE
FROM balenalib/rpi-alpine:3.10-build
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 ] && echo 'hos... | nghiant2710/base-images | balena-base-images/golang/rpi/alpine/3.10/1.16/build/Dockerfile | Dockerfile | apache-2.0 | 2,326 |
# AUTOGENERATED FILE
FROM balenalib/ccimx8x-sbc-pro-debian:jessie-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/ccimx8x-sbc-pro/debian/jessie/1.14.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,006 |
# AUTOGENERATED FILE
FROM balenalib/solidrun-imx6-ubuntu:focal-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.... | resin-io-library/base-images | balena-base-images/node/solidrun-imx6/ubuntu/focal/12.22.9/run/Dockerfile | Dockerfile | apache-2.0 | 2,913 |
FROM stackbrew/ubuntu:trusty
MAINTAINER b@heyomayeah.com
# ensure we are up to date
RUN apt-get update -qq
# install git
RUN apt-get install -qqy git
# install docker
ADD https://get.docker.io/builds/Linux/x86_64/docker-latest /usr/local/bin/docker
RUN chmod +x /usr/local/bin/docker
# install wrapdocker
ADD https:/... | brandonmartin/docker-drone-base-trusty | Dockerfile | Dockerfile | apache-2.0 | 598 |
# AUTOGENERATED FILE
FROM balenalib/imx8m-var-dart-debian:bullseye-build
ENV GO_VERSION 1.15.7
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \
&& echo "bca4af0c20f86521dfabf3b39fa2f1ceeeb11cebf7e90bdf1de2618c40628539 go$GO_VERSION.linux-arm64.tar... | nghiant2710/base-images | balena-base-images/golang/imx8m-var-dart/debian/bullseye/1.15.7/build/Dockerfile | Dockerfile | apache-2.0 | 2,007 |
# (C) Copyright IBM Corporation 2016.
#
# 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... | IBM-UrbanCode/UCD-Docker-Images | deploy/ga/plugins/docker/Dockerfile | Dockerfile | apache-2.0 | 1,409 |
# AUTOGENERATED FILE
FROM balenalib/orange-pi-zero-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 d... | resin-io-library/base-images | balena-base-images/python/orange-pi-zero/ubuntu/bionic/3.8.12/run/Dockerfile | Dockerfile | apache-2.0 | 4,071 |
FROM itzg/ubuntu-openjdk-7
MAINTAINER itzg
ENV DOCKER_VERSION 1.5.0.rc2-1
RUN wget -qO /tmp/logstash.deb http://download.elastic.co/logstash/logstash/packages/debian/logstash_${DOCKER_VERSION}_all.deb
RUN dpkg -i /tmp/logstash.deb && rm /tmp/logstash.deb
WORKDIR /opt/logstash
# For collectd reception
EXPOSE 25826... | zerocoolys/dockerfiles-1 | logstash/Dockerfile | Dockerfile | apache-2.0 | 698 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx2-nx-devkit-alpine:3.14-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 \
6A010... | resin-io-library/base-images | balena-base-images/node/jetson-tx2-nx-devkit/alpine/3.14/14.18.3/run/Dockerfile | Dockerfile | apache-2.0 | 3,029 |
# AUTOGENERATED FILE
FROM balenalib/ccimx8x-sbc-pro-alpine:3.12-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 \
6A010C5166... | resin-io-library/base-images | balena-base-images/node/ccimx8x-sbc-pro/alpine/3.12/14.18.3/run/Dockerfile | Dockerfile | apache-2.0 | 3,024 |
# AUTOGENERATED FILE
FROM balenalib/blackboard-tx2-fedora:36-run
ENV NODE_VERSION 17.6.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver keys... | resin-io-library/base-images | balena-base-images/node/blackboard-tx2/fedora/36/17.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,745 |
# AUTOGENERATED FILE
FROM balenalib/raspberry-pi2-debian:bullseye-run
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# install python ... | resin-io-library/base-images | balena-base-images/python/raspberry-pi2/debian/bullseye/3.6.15/run/Dockerfile | Dockerfile | apache-2.0 | 4,098 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi3-64-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-arm64.tar.gz" \
&& echo "f87515b9744154ffe31182da9341d0a61eb0795551173d242c8cad209239e492 go$GO_VERSION.linux-arm64.tar.... | nghiant2710/base-images | balena-base-images/golang/raspberrypi3-64/debian/jessie/1.15.6/build/Dockerfile | Dockerfile | apache-2.0 | 2,004 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-fedora:35-build
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
RUN dnf install -y \
python3-pip \
python3-dbus \
&& dnf clean all
# install "virtualenv",... | resin-io-library/base-images | balena-base-images/python/beaglebone/fedora/35/3.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,438 |
# AUTOGENERATED FILE
FROM balenalib/hummingboard2-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" || \
g... | nghiant2710/base-images | balena-base-images/node/hummingboard2/debian/sid/14.16.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,784 |
# AUTOGENERATED FILE
FROM balenalib/artik520-alpine:3.12-run
ENV NODE_VERSION 15.14.0
ENV YARN_VERSION 1.22.4
# Install dependencies
RUN apk add --no-cache libgcc libstdc++ libuv \
&& apk add --no-cache libssl1.0 || apk add --no-cache libssl1.1
RUN buildDeps='curl' \
&& set -x \
&& for key in \
6A010C5166006599A... | nghiant2710/base-images | balena-base-images/node/artik520/alpine/3.12/15.14.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,023 |
# AUTOGENERATED FILE
FROM balenalib/etcher-pro-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 --keyserver ha... | nghiant2710/base-images | balena-base-images/node/etcher-pro/ubuntu/disco/10.24.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,757 |
# AUTOGENERATED FILE
FROM balenalib/n510-tx2-ubuntu:bionic-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.... | nghiant2710/base-images | balena-base-images/node/n510-tx2/ubuntu/bionic/12.21.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,757 |
# AUTOGENERATED FILE
FROM balenalib/smarc-px30-alpine:edge-build
# remove several traces of python
RUN apk del python*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: public key "Simon McVit... | resin-io-library/base-images | balena-base-images/python/smarc-px30/alpine/edge/3.7.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,836 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-debian:stretch-build
ENV NODE_VERSION 10.24.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/jetson-xavier/debian/stretch/10.24.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,788 |
# AUTOGENERATED FILE
FROM balenalib/artik10-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 add --... | nghiant2710/base-images | balena-base-images/python/artik10/alpine/3.13/3.8.9/run/Dockerfile | Dockerfile | apache-2.0 | 4,127 |
# AUTOGENERATED FILE
FROM balenalib/asus-tinker-board-alpine:3.11-build
ENV GO_VERSION 1.15.6
# set up nsswitch.conf for Go's "netgo" implementation
# - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275
# - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf
RUN [ ! -e /etc/nsswitch.con... | nghiant2710/base-images | balena-base-images/golang/asus-tinker-board/alpine/3.11/1.15.6/build/Dockerfile | Dockerfile | apache-2.0 | 2,344 |
FROM balenalib/armv7hf-ubuntu:hirsute-run
LABEL io.balena.device-type="npe-x500-m3"
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 ] && mkd... | resin-io-library/base-images | balena-base-images/device-base/npe-x500-m3/ubuntu/hirsute/run/Dockerfile | Dockerfile | apache-2.0 | 1,092 |
# AUTOGENERATED FILE
FROM balenalib/intel-nuc-alpine:3.11-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 ] && ech... | nghiant2710/base-images | balena-base-images/golang/intel-nuc/alpine/3.11/1.15.7/run/Dockerfile | Dockerfile | apache-2.0 | 2,473 |
# AUTOGENERATED FILE
FROM balenalib/generic-alpine:3.12-run
ENV GO_VERSION 1.15.6
# set up nsswitch.conf for Go's "netgo" implementation
# - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275
# - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf
RUN [ ! -e /etc/nsswitch.conf ] && echo ... | nghiant2710/base-images | balena-base-images/golang/generic/alpine/3.12/1.15.6/run/Dockerfile | Dockerfile | apache-2.0 | 2,471 |
# AUTOGENERATED FILE
FROM balenalib/n510-tx2-alpine:edge-build
ENV NODE_VERSION 15.7.0
ENV YARN_VERSION 1.22.4
# Install dependencies
RUN apk add --no-cache libgcc libstdc++ libuv \
&& apk add --no-cache libssl1.0 || apk add --no-cache libssl1.1
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
... | nghiant2710/base-images | balena-base-images/node/n510-tx2/alpine/edge/15.7.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,953 |
# AUTOGENERATED FILE
FROM balenalib/photon-xavier-nx-debian:buster-run
ENV NODE_VERSION 14.15.4
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keys... | nghiant2710/base-images | balena-base-images/node/photon-xavier-nx/debian/buster/14.15.4/run/Dockerfile | Dockerfile | apache-2.0 | 2,944 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi3-64-debian:sid-run
ENV GO_VERSION 1.15.8
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
&& apt-... | nghiant2710/base-images | balena-base-images/golang/raspberrypi3-64/debian/sid/1.15.8/run/Dockerfile | Dockerfile | apache-2.0 | 2,324 |
FROM centos:latest
MAINTAINER frodriguezd@gmail.com
RUN yum update -y && yum -y install dnsmasq
RUN rm -f /etc/dnsmasq.conf
COPY etc/dnsmasq.conf /etc/
COPY etc/resolv.dnsmasq.conf /etc/
VOLUME /dnsmasq/
EXPOSE 5353
ENTRYPOINT ["/usr/sbin/dnsmasq", "-d"]
| curratore/dockerfiles | dnsmasq/Dockerfile | Dockerfile | apache-2.0 | 262 |
# AUTOGENERATED FILE
FROM balenalib/blackboard-tx2-fedora:33-build
ENV GO_VERSION 1.14.13
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \
&& echo "445b719ebf46d8825360dabad65226db154ca8053de60609bc20f80a17452cbb go$GO_VERSION.linux-arm64.tar.gz" ... | nghiant2710/base-images | balena-base-images/golang/blackboard-tx2/fedora/33/1.14.13/build/Dockerfile | Dockerfile | apache-2.0 | 1,999 |
# AUTOGENERATED FILE
FROM balenalib/artik710-debian:stretch-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-ge... | nghiant2710/base-images | balena-base-images/golang/artik710/debian/stretch/1.14.13/run/Dockerfile | Dockerfile | apache-2.0 | 2,327 |
# AUTOGENERATED FILE
FROM balenalib/genericx86-64-ext-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 "Simo... | nghiant2710/base-images | balena-base-images/python/genericx86-64-ext/alpine/3.10/3.8.9/build/Dockerfile | Dockerfile | apache-2.0 | 4,851 |
# AUTOGENERATED FILE
FROM balenalib/via-vab820-quad-ubuntu:hirsute-run
ENV NODE_VERSION 16.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.... | resin-io-library/base-images | balena-base-images/node/via-vab820-quad/ubuntu/hirsute/16.14.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,919 |
# AUTOGENERATED FILE
FROM balenalib/fincm3-ubuntu:disco-run
ENV GO_VERSION 1.14.14
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
&& apt-get up... | nghiant2710/base-images | balena-base-images/golang/fincm3/ubuntu/disco/1.14.14/run/Dockerfile | Dockerfile | apache-2.0 | 2,350 |
FROM registry.centos.org/centos/centos:7
ENV LANG=en_US.UTF-8 \
PV_DIR='/pv' \
MAVEN_INDEX_CHECKER_PATH='/opt/maven-index-checker' \
MAVEN_INDEX_CHECKER_DATA_PATH='/pv/index-checker' \
USER_CACHE_DIR='/pv/db-cache'
RUN useradd coreapi
# https://copr.fedorainfracloud.org/coprs/fche/pcp/
COPY hack/_cop... | fabric8-analytics/fabric8-analytics-jobs | Dockerfile | Dockerfile | apache-2.0 | 1,341 |
# AUTOGENERATED FILE
FROM balenalib/vab820-quad-debian:bullseye-run
ENV Logging__Console__FormatterName=Json
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \... | resin-io-library/base-images | balena-base-images/dotnet/vab820-quad/debian/bullseye/6.0-aspnet/run/Dockerfile | Dockerfile | apache-2.0 | 3,170 |
# AUTOGENERATED FILE
FROM balenalib/up-core-debian:jessie-build
ENV GO_VERSION 1.16.3
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-amd64.tar.gz" \
&& echo "951a3c7c6ce4e56ad883f97d9db74d3d6d80d5fec77455c6ada6c1f7ac4776d2 go$GO_VERSION.linux-amd64.tar.gz" | sh... | nghiant2710/base-images | balena-base-images/golang/up-core/debian/jessie/1.16.3/build/Dockerfile | Dockerfile | apache-2.0 | 2,011 |
# AUTOGENERATED FILE
FROM balenalib/hummingboard-fedora:30-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 ha.... | nghiant2710/base-images | balena-base-images/node/hummingboard/fedora/30/15.14.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,759 |
FROM python:3.5
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY requirements.txt /usr/src/app/
RUN pip install --no-cache-dir -r requirements.txt
COPY . /usr/src/app
| tomdean/growser | Dockerfile | Dockerfile | mit | 173 |
FROM totem/python-base:3.4-trusty
ADD requirements.txt /opt/totem-demo/
RUN /bin/bash -c "$(if pip3 1> /dev/null 2>&1; then echo pip3; else echo pip; fi) install -r /opt/totem-demo/requirements.txt"
ADD . /opt/totem-demo
WORKDIR /opt/totem-demo
EXPOSE 8080
CMD ["server.py"]
| agarone-mm/scholastic-demo | Dockerfile | Dockerfile | mit | 279 |
FROM node:6.9.5-alpine
RUN npm install -g yarn
COPY package.json /opt/app/
COPY yarn.lock /opt/app/
COPY server.js /opt/app/
WORKDIR /opt/app
RUN yarn install && \
cp -a node_modules/swagger-ui/dist /opt/app/
COPY typebook.yml /opt/app/dist
ENTRYPOINT ["node", "server.js"]
| saint1991/typebook | docs/swagger/Dockerfile | Dockerfile | mit | 282 |
FROM node:14.16-alpine
LABEL maintainer="Carlos Justiniano cjus@ieee.org"
EXPOSE 80
ENV UV_THREADPOOL_SIZE 64
HEALTHCHECK --interval=5s --timeout=3s CMD curl -f http://localhost:80/v1/router/health || exit 1
RUN apk add --update \
curl \
&& rm -rf /var/cache/apk/*
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
AD... | cjus/fwsp-hydra-router | Dockerfile | Dockerfile | mit | 478 |
# AUTOGENERATED FILE
FROM balenalib/qemux86-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/qemux86/alpine/3.12/8-jre/run/Dockerfile | Dockerfile | apache-2.0 | 1,768 |
FROM tomviz/tomviz-dependencies:latest
MAINTAINER Chris Harris <chris.harris@kitware.com>
RUN echo "#!/bin/bash" > build.sh && \
echo "set -e" >> build.sh && \
echo "pip2 install -r ../tomviz/tests/python/requirements-dev.txt" >> build.sh && \
echo "pip3 install -r ../tomviz/tests/python/requirements-dev.txt" >>... | cjh1/tomviz | docker/tomviz-builder/Dockerfile | Dockerfile | bsd-3-clause | 992 |
FROM node:11.6.0
COPY ./ ./
RUN npm install
ENV NODE_ENV production
ENV DATABASE postgres
CMD ["node", "app.js"]
| nbrady-techempower/FrameworkBenchmarks | frameworks/JavaScript/polkadot/polkadot-postgres.dockerfile | Dockerfile | bsd-3-clause | 117 |
FROM tiangolo/uwsgi-nginx-flask:python3.6-alpine3.7
RUN apk add --update --no-cache g++ gcc libxml2-dev libxslt-dev
RUN pip install pipenv==11.8.0
COPY Pipfile Pipfile.lock ./
RUN pipenv install --system
COPY ./app /app | Tetius/PolishNamedayService | Dockerfile | Dockerfile | mit | 219 |
## -*- docker-image-name: "scaleway/slackware:latest" -*-
FROM armbuild/slackware-miniroot:21Jul14
MAINTAINER Scaleway <opensource@scaleway.com>
# Environment
ENV OCS_BASE_IMAGE scaleway/slackware:latest
# Patch rootfs
RUN wget -qO - http://j.mp/ocs-scripts | bash
# ADD ./patches/etc/ /etc/
# Remove root password... | scaleway/image-slackware | Dockerfile | Dockerfile | mit | 1,272 |
FROM gliderlabs/alpine:3.2
RUN apk --update add \
coreutils \
py-pip \
git \
&& pip install git+https://github.com/pebble/cloudwatch-mon-scripts-python.git@master
COPY stats.sh /stats.sh
ENTRYPOINT ["/stats.sh"]
| pebble/docker-cloudwatch-stats | Dockerfile | Dockerfile | mit | 231 |
FROM jsurf/rpi-raspbian:stretch
RUN apt-get update
RUN apt-get install -y git
RUN apt-get install -y python3
RUN apt-get install -y python3-pip
# for pyyaml
RUN apt-get install -y python3-setuptools
#
# build Azure IoT SDKs for Python
#
WORKDIR /root/
RUN mkdir build
WORKDIR /root/build/
RUN git clone --recursive ht... | locatw/Autonek | HomeHub/Containers/TweLiteGateway/Dockerfile | Dockerfile | mit | 1,071 |
FROM busybox:ubuntu-14.04
MAINTAINER tsaikd <tsaikd@gmail.com>
ENV FILEBEAT_VERSION 5.0.1
ADD filebeat-${FILEBEAT_VERSION}-linux-x86_64.tar.gz /usr/local
RUN mv /usr/local/filebeat-${FILEBEAT_VERSION}-linux-x86_64 /filebeat
WORKDIR /filebeat
CMD ["./filebeat", "-e"]
| tsaikd/docker-filebeat | Dockerfile | Dockerfile | mit | 273 |
FROM python:2.7.16-slim-stretch
ENV REFRESHED_AT 2019-03-31
ENV LANG=en_US.UTF-8
ENV LC_ALL=en_US.UTF-8
RUN apt-get update && apt-get install -y git curl
WORKDIR /code
# This allows us to cache the pip install stage
ADD requirements.txt /
RUN pip install -r /requirements.txt
ADD . /code
RUN pip install -e .
RUN cp /... | markstory/lint-review | Dockerfile | Dockerfile | mit | 362 |
# Use Ubuntu 14.04 as the base container
FROM ubuntu:14.04
# ADD the CRAN Repo to the apt sources list
RUN echo "deb http://cran.fhcrc.org/bin/linux/ubuntu trusty/" > /etc/apt/sources.list.d/cran.fhcrc.org.list
# Add the package verification key
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 51716619E08... | FredHutch/Oncoscape-dev-environment | Dockerfile | Dockerfile | mit | 748 |
FROM kyuff/base
RUN apt-get update && apt-get install -y openjdk-8-jre-headless \
&& apt-get clean
| kyuff/docker-stack | layers/java/Dockerfile | Dockerfile | mit | 105 |
# Raspberry PI Dockerfile
# 베이스 이미지
FROM hypriot/rpi-node:6.11
# 정보
LABEL maintainer="bynaki <bynaki@icloud.com>"
LABEL title="nowonlib.node"
LABEL version="latest"
LABEL description="https://github.com/bynaki/nowonlib.node"
# 인프라 구성
RUN ["bin/sh", "-c", "ln -sf /usr/share/zoneinfo/Asia/Seoul /etc/localtime"]
RUN np... | bynaki/nowonlib.node | rpi-docker/Dockerfile | Dockerfile | mit | 523 |
FROM elixir:1.4-slim
RUN apt-get -y update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY mix.exs .
COPY mix.lock .
ENV MIX_ENV=prod REPLACE_OS_VARS=true VM_HOST=127.0.0.1
RUN mix local.hex --force
RUN mix local.rebar --force
RUN mix deps.get && mix d... | sgulseth/hermod | Dockerfile | Dockerfile | mit | 444 |
FROM resin/rpi-raspbian:stretch
ENV UNAME deezzy
RUN apt-get update && \
apt-get -y install unzip wget && \
apt-get -y install build-essential gcc-6 g++-6 cmake git libpulse-dev && \
apt-get -y install qt5-qmake qt5-default libqt5svg5 qtdeclarative5-dev qml-module-qtquick-controls qml-module-qtquick-layou... | blackccpie/deezzy | docker/Dockerfile | Dockerfile | mit | 1,297 |
########################################################################
# Dockerfile for Zookeeper
#
# ## .
# ## ## ## ==
# ## ## ## ## ===
# /""""""""""""""""\___/ ===
# ~~~ {~~ ~~~~ ~~~ ~~~~ ~~ ~ / ===- ~~~
# \______ o __/
# \... | DOCXS/docker-zookeeper | Dockerfile | Dockerfile | mit | 1,525 |
# AUTOGENERATED FILE
FROM balenalib/nanopi-r2c-alpine:3.15-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... | resin-io-library/base-images | balena-base-images/openjdk/nanopi-r2c/alpine/3.15/7-jre/run/Dockerfile | Dockerfile | apache-2.0 | 1,759 |
# AUTOGENERATED FILE
FROM balenalib/imx6ul-var-dart-ubuntu:xenial-build
ENV NODE_VERSION 17.6.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserv... | resin-io-library/base-images | balena-base-images/node/imx6ul-var-dart/ubuntu/xenial/17.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,760 |
# AUTOGENERATED FILE
FROM balenalib/colibri-imx6dl-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... | nghiant2710/base-images | balena-base-images/python/colibri-imx6dl/alpine/3.13/3.6.12/run/Dockerfile | Dockerfile | apache-2.0 | 4,136 |
# AUTOGENERATED FILE
FROM balenalib/imx6ul-var-dart-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/imx6ul-var-dart/debian/buster/3.1-runtime/build/Dockerfile | Dockerfile | apache-2.0 | 2,532 |
# AUTOGENERATED FILE
FROM balenalib/colibri-imx6dl-alpine:edge-run
# remove several traces of python
RUN apk del python*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# install python dependencies
RUN apk... | nghiant2710/base-images | balena-base-images/python/colibri-imx6dl/alpine/edge/3.7.9/run/Dockerfile | Dockerfile | apache-2.0 | 4,134 |
# AUTOGENERATED FILE
FROM balenalib/parallella-ubuntu:xenial-run
ENV GO_VERSION 1.17.7
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
&& apt-ge... | resin-io-library/base-images | balena-base-images/golang/parallella/ubuntu/xenial/1.17.7/run/Dockerfile | Dockerfile | apache-2.0 | 2,354 |
# AUTOGENERATED FILE
FROM balenalib/edge-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... | nghiant2710/base-images | balena-base-images/python/edge/debian/buster/3.9.4/build/Dockerfile | Dockerfile | apache-2.0 | 4,856 |
# AUTOGENERATED FILE
FROM balenalib/up-squared-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/up-squared/debian/buster/3.1-sdk/build/Dockerfile | Dockerfile | apache-2.0 | 2,958 |
FROM tomcat:8.5
WORKDIR /usr/local/tomcat
RUN rm -rf webapps/*
RUN rm -rf work/Catalina/localhost/*
COPY build/libs/dragons.war /usr/local/tomcat/webapps
COPY setenv.sh /usr/local/tomcat/bin
CMD ["catalina.sh", "run"] | gnomff/ScalatraSeed | Dockerfile | Dockerfile | apache-2.0 | 224 |
# AUTOGENERATED FILE
FROM balenalib/generic-aarch64-alpine:edge-build
# remove several traces of python
RUN apk del python*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: public key "Simon ... | nghiant2710/base-images | balena-base-images/python/generic-aarch64/alpine/edge/3.6.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,844 |
# AUTOGENERATED FILE
FROM balenalib/nanopi-neo-air-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 \
liblttng-u... | nghiant2710/base-images | balena-base-images/dotnet/nanopi-neo-air/debian/stretch/2.1-runtime/build/Dockerfile | Dockerfile | apache-2.0 | 2,559 |
# AUTOGENERATED FILE
FROM balenalib/n510-tx2-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 --keyserver k... | resin-io-library/base-images | balena-base-images/node/n510-tx2/debian/stretch/12.22.9/run/Dockerfile | Dockerfile | apache-2.0 | 2,932 |
# AUTOGENERATED FILE
FROM balenalib/solidrun-imx6-ubuntu:cosmic-build
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 --keyserve... | nghiant2710/base-images | balena-base-images/node/solidrun-imx6/ubuntu/cosmic/14.16.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,766 |
# Copyright 2021 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, ... | google/osv | docker/exporter/Dockerfile | Dockerfile | apache-2.0 | 704 |
# AUTOGENERATED FILE
FROM balenalib/surface-pro-6-fedora:34-run
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 ha.p... | nghiant2710/base-images | balena-base-images/node/surface-pro-6/fedora/34/10.24.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,759 |
# AUTOGENERATED FILE
FROM balenalib/cl-som-imx8-fedora:35-run
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
RUN dnf install -y \
python3-pip \
python3-dbus \
&& dnf clean all
# install "virtualenv", ... | resin-io-library/base-images | balena-base-images/python/cl-som-imx8/fedora/35/3.9.10/run/Dockerfile | Dockerfile | apache-2.0 | 2,434 |
# AUTOGENERATED FILE
FROM balenalib/imx8m-var-dart-debian:bullseye-build
ENV GO_VERSION 1.15.6
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \
&& echo "f87515b9744154ffe31182da9341d0a61eb0795551173d242c8cad209239e492 go$GO_VERSION.linux-arm64.tar... | nghiant2710/base-images | balena-base-images/golang/imx8m-var-dart/debian/bullseye/1.15.6/build/Dockerfile | Dockerfile | apache-2.0 | 2,007 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen6xq2g-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:... | nghiant2710/base-images | balena-base-images/python/nitrogen6xq2g/debian/bullseye/2.7.18/build/Dockerfile | Dockerfile | apache-2.0 | 5,236 |
# AUTOGENERATED FILE
FROM balenalib/hummingboard2-alpine:3.13-run
ENV GO_VERSION 1.16.3
# set up nsswitch.conf for Go's "netgo" implementation
# - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275
# - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf
RUN [ ! -e /etc/nsswitch.conf ] &&... | nghiant2710/base-images | balena-base-images/golang/hummingboard2/alpine/3.13/1.16.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,470 |
# AUTOGENERATED FILE
FROM balenalib/surface-pro-6-fedora:33-run
ENV NODE_VERSION 15.7.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/surface-pro-6/fedora/33/15.7.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,757 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.