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 gcr.io/google_appengine/python-compat
MAINTAINER Grow SDK Authors <hello@grow.io>
# Update system.
RUN apt-get update
RUN apt-get upgrade -y
# Install Grow dependencies.
RUN apt-get install -y --no-install-recommends \
python python-pip build-essential python-all-dev zip \
libc6 libyaml-dev libffi-dev libxml... | grow/baseimage-managed-vms | Dockerfile | Dockerfile | mit | 1,175 |
FROM java
COPY target/jar/tela.jar /usr/tela/tela.jar
WORKDIR /usr/tela
# Application port
ENV PORT 80
EXPOSE 80
# Configure redis
ENV CACHE_MODE redis
ENV REDIS_HOST redis
ENV REDIS_PORT 6379
# Configure OrientDB
ENV ORIENTDB_MODE remote
ENV ORIENTDB_HOST orientdb
ENV ORIENTDB_PORT 2480
ENV ORIENTDB_USER root
ENV O... | reneses/tela | tela-server/Dockerfile | Dockerfile | mit | 377 |
FROM ruby:2.3
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
nodejs \
&& rm -rf /var/lib/apt/lists/*
ENV LANG C.UTF-8
WORKDIR /usr/src/app
COPY . .
RUN bundle install --local
WORKDIR /usr/src/app/spec/test_app
RUN bin/rake magaz:install:migrations
RUN bin/rake db:migrate SCOPE... | nmix/magaz | Dockerfile | Dockerfile | mit | 409 |
# Run ykpersonalize in a container
#
# docker run --rm -it \
# --device /dev/bus/usb \
# --device /dev/usb
# --name ykpersonalize \
# jess/ykpersonalize
#
FROM debian:sid
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get update && apt-get install -y \
software-properties-common \
--no-install-recommends &&... | coolhacks/docker-hacks | dockerfiles/ykpersonalize/Dockerfile | Dockerfile | mit | 708 |
FROM ubuntu:trusty
MAINTAINER Jim Sander <jim.sander@enstratius.com>
RUN apt-get update && apt-get install -y curl wget openssl supervisor
RUN useradd -d /home/sensu -m -s /bin/bash sensu
RUN echo sensu:sensu | chpasswd
ADD https://raw.githubusercontent.com/jimsander/sensu-docker/compose/support/install-sensu.sh /tm... | jimsander/sensu-docker | Sensu/Dockerfile | Dockerfile | mit | 642 |
FROM mhart/alpine-node:0.12
ADD . /app
WORKDIR /app
RUN apk add --no-cache make gcc g++ python git && \
npm install && \
npm rebuild && \
npm install gulp -g && \
gulp build && \
npm uninstall gulp -g && \
apk del make gcc g++ python git
# replace this with your application's default port
EX... | ninjablocks/douitsu | Dockerfile | Dockerfile | mit | 397 |
FROM docker:latest
MAINTAINER Pavel Bezrukov, https://bezr.pro
ENV RANCHER_COMPOSE_VERSION=v0.12.5
ADD ./blue-green-discovery /usr/local/bin/blue-green-discovery
RUN apk add --update python py-pip python-dev && pip install docker-compose && \
chmod +x /usr/local/bin/blue-green-discovery
RUN apk add --quiet --n... | bezrukovp/docker-rancher-compose | Dockerfile | Dockerfile | mit | 607 |
FROM lazabogdan/nginx-hhvm:latest
# copy image files
COPY . /app/
# remove nginx default vhost
RUN rm /etc/nginx/sites-enabled/default
# enable laravel vhost
RUN ln -s /app/laravel /etc/nginx/sites-enabled/laravel
# install composer
RUN curl -sS https://getcomposer.org/installer | php -- \
--install-dir=/usr/local... | lazabogdan/docker-images | images/apps/laravel/Dockerfile | Dockerfile | mit | 572 |
FROM swift:latest
MAINTAINER Petter Rasmussen "petter.rasmussen@gmail.com"
# Grant access to swift files for all users
RUN chmod 0755 /usr/lib/swift -R
# Add user
RUN groupadd glot
RUN useradd -m -d /home/glot -g glot -s /bin/bash glot
# Install code-runner
ADD https://github.com/prasmussen/glot-code-runner/releases... | prasmussen/glot-containers | swift/latest/Dockerfile | Dockerfile | mit | 485 |
FROM centos:5
MAINTAINER Andy Neff <andyneff@users.noreply.github.com>
#Docker RUN example, pass in the git-lfs checkout copy you are working with
LABEL RUN="docker run -v git-lfs-repo-dir:/src -v repo_dir:/repo"
COPY test_lfs.bsh /tmp/test_lfs.bsh
CMD yum install -y curl.x86_64 && \
curl -L -O http://${REPO_HOS... | clareliguori/git-lfs | docker/git-lfs-test_centos_5/Dockerfile | Dockerfile | mit | 661 |
FROM ubuntu:18.04@sha256:5f4bdc3467537cbbe563e80db2c3ec95d548a9145d64453b06939c4592d67b6d
ENV LC_ALL=C.UTF-8 LANG=C.UTF-8
RUN apt-get update -q && \
apt-get install -qy \
git \
wget \
make \
autotools-dev \
autoconf \
libtool \
xz-utils \
libssl-dev ... | fyookball/electrum | contrib/build-linux/srcdist_docker/Dockerfile | Dockerfile | mit | 743 |
FROM eclipse-mosquitto
RUN mkdir /etc/mosquitto/tls
COPY ca.crt server.crt server.key /etc/mosquitto/tls/
RUN touch /etc/mosquitto/passwd && \
mosquitto_passwd -b /etc/mosquitto/passwd eventr secretpassword
| neckhair/owntracks-eventr | docker/Dockerfile | Dockerfile | mit | 213 |
FROM ruby:2.5.0
RUN apt-get update -qq && \
apt-get install -y \
build-essential \
libpq-dev \
postgresql-client
WORKDIR /usr/src/app
COPY ./api/ ./
COPY ./scripts/after_db_ready.sh /usr/local/bin
RUN bundle install
VOLUME /usr/src/app
RUN chmod 755 /usr/local/bin/after_db_ready.sh
ENTRYPOINT ["/usr/local/b... | jollopre/mps | infra/api/production/Dockerfile | Dockerfile | mit | 393 |
FROM node:0.10.35-slim
# Install dependencies.
COPY package.json /usr/local/src/
WORKDIR /usr/local/src
RUN npm install --production
# Symlink watchy executable for convenience.
COPY bin/watchy /usr/local/src/bin/
RUN ln -s /usr/local/src/bin/watchy /usr/local/bin/
# Copy the code into the container.
COPY . /usr/loc... | cloud9ide/react-enquiry | node_modules/watchy/Dockerfile | Dockerfile | mit | 492 |
FROM node:12.14.1
MAINTAINER Caro carozzo@yahoo.com.tw
ARG APP_ENV
ARG APP_PORT
ARG APP_NAME
ENV NODE_ENV ${APP_ENV}
ENV APP_PORT ${APP_PORT}
RUN apt-get update && apt-get install -y --no-install-recommends apt-utils
# Install vim
RUN apt-get install -y vim
# Install npm
RUN npm i npm@latest -g
# Install pm2
RUN ... | carozozo/caro-back | docker/Dockerfile | Dockerfile | mit | 561 |
# AUTOGENERATED FILE
FROM balenalib/nanopc-t4-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 ... | resin-io-library/base-images | balena-base-images/python/nanopc-t4/alpine/3.13/3.8.12/run/Dockerfile | Dockerfile | apache-2.0 | 4,127 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi3-ubuntu:cosmic-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 --keyserver... | nghiant2710/base-images | balena-base-images/node/raspberrypi3/ubuntu/cosmic/12.22.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,765 |
FROM debian:buster
ENV DEBIAN_FRONTEND=noninteractive
RUN set -e -x; \
apt-get update; \
apt-get install -y --no-install-recommends locales \
git vim python ansible
COPY entrypoint /
CMD [ "/entrypoint" ]
| lpenz/dotvim | .github/actions/ansible/Dockerfile | Dockerfile | apache-2.0 | 223 |
# AUTOGENERATED FILE
FROM balenalib/am571x-evm-alpine:3.13-run
ENV GO_VERSION 1.14.13
# set up nsswitch.conf for Go's "netgo" implementation
# - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275
# - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf
RUN [ ! -e /etc/nsswitch.conf ] && e... | nghiant2710/base-images | balena-base-images/golang/am571x-evm/alpine/3.13/1.14.13/run/Dockerfile | Dockerfile | apache-2.0 | 2,469 |
FROM boot2docker/boot2docker
MAINTAINER Everton Ribeiro <everton@azukiapp.com>
ENV ROOTFS /rootfs
ENV TCZ_DEPS fuse
# Install the TCZ dependencies
RUN for dep in $TCZ_DEPS; do \
echo "Download $TCL_REPO_BASE/tcz/$dep.tcz" &&\
curl -L -o /tmp/$dep.tcz $TCL_REPO_BASE/tcz/$dep.tcz && \
... | azukiapp/azkiso | Dockerfile | Dockerfile | apache-2.0 | 774 |
# AUTOGENERATED FILE
FROM balenalib/up-core-ubuntu:focal-run
ENV Logging__Console__FormatterName=Json
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
ca-certificates \
\
# .NET Core dependencies
libc6 \
libgcc1 \
l... | resin-io-library/base-images | balena-base-images/dotnet/up-core/ubuntu/focal/6.0-aspnet/run/Dockerfile | Dockerfile | apache-2.0 | 3,209 |
# AUTOGENERATED FILE
FROM balenalib/ccimx8x-sbc-pro-ubuntu:focal-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 \
' \
&& ap... | nghiant2710/base-images | balena-base-images/golang/ccimx8x-sbc-pro/ubuntu/focal/1.16.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,328 |
# Copyright 2017 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... | muxi/grpc | tools/dockerfile/interoptest/grpc_interop_go1.7/Dockerfile | Dockerfile | apache-2.0 | 1,109 |
# AUTOGENERATED FILE
FROM balenalib/blackboard-tx2-ubuntu:xenial-run
ENV NODE_VERSION 15.10.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/blackboard-tx2/ubuntu/xenial/15.10.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,918 |
# AUTOGENERATED FILE
FROM balenalib/asus-tinker-board-s-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 \
libssl... | nghiant2710/base-images | balena-base-images/dotnet/asus-tinker-board-s/debian/bullseye/3.1-sdk/run/Dockerfile | Dockerfile | apache-2.0 | 2,952 |
# AUTOGENERATED FILE
FROM balenalib/var-som-mx6-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/var-som-mx6/debian/bullseye/3.1-aspnet/run/Dockerfile | Dockerfile | apache-2.0 | 3,130 |
# AUTOGENERATED FILE
FROM balenalib/artik710-ubuntu:xenial-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.gz" | s... | nghiant2710/base-images | balena-base-images/golang/artik710/ubuntu/xenial/1.15.7/build/Dockerfile | Dockerfile | apache-2.0 | 1,997 |
# AUTOGENERATED FILE
FROM balenalib/aarch64-debian:bookworm-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 ... | resin-io-library/base-images | balena-base-images/openjdk/aarch64/debian/bookworm/16-jdk/build/Dockerfile | Dockerfile | apache-2.0 | 3,021 |
# AUTOGENERATED FILE
FROM balenalib/nuc-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" || \
gpg --b... | nghiant2710/base-images | balena-base-images/node/nuc/debian/stretch/10.24.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,785 |
FROM alpine:3.7
ARG BRANCH=master
ARG OPENSTACK_TAG=stable/pike
RUN apk --no-cache add --update \
python libffi libssl1.0 libjpeg-turbo py-pip bash \
grep sed wget ca-certificates git openssh-client && \
apk --no-cache add --virtual .build-deps --update \
python-dev build-base linux-header... | mywulin/functest | docker/core/Dockerfile | Dockerfile | apache-2.0 | 1,269 |
# AUTOGENERATED FILE
FROM balenalib/am571x-evm-fedora:33-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 Dockerfile... | resin-io-library/base-images | balena-base-images/openjdk/am571x-evm/fedora/33/8-jre/build/Dockerfile | Dockerfile | apache-2.0 | 1,320 |
# AUTOGENERATED FILE
FROM balenalib/bananapi-m1-plus-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 \
... | nghiant2710/base-images | balena-base-images/node/bananapi-m1-plus/alpine/3.10/15.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,961 |
# AUTOGENERATED FILE
FROM balenalib/astro-tx2-fedora:31-run
ENV NODE_VERSION 10.23.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.pool.... | nghiant2710/base-images | balena-base-images/node/astro-tx2/fedora/31/10.23.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,748 |
FROM balenalib/aarch64-ubuntu:disco-build
LABEL io.balena.device-type="nitrogen8mm"
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... | nghiant2710/base-images | balena-base-images/device-base/nitrogen8mm/ubuntu/disco/build/Dockerfile | Dockerfile | apache-2.0 | 1,092 |
# AUTOGENERATED FILE
FROM balenalib/raspberry-pi2-ubuntu:xenial-build
ENV NODE_VERSION 15.6.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver... | nghiant2710/base-images | balena-base-images/node/raspberry-pi2/ubuntu/xenial/15.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,764 |
ARG BASEOS
ARG BASEVER
ARG PG_FULL
ARG PREFIX
FROM golang:1.15.5 as badgerserver-build
WORKDIR /go/src/github.com/crunchydata/crunchy-containers
ADD ./badger ./badger
RUN CGO_ENABLED=0 GOOS=linux go build -a -o badgerserver ./badger
FROM ${PREFIX}/crunchy-base:${BASEOS}-${PG_FULL}-${BASEVER}
# For RHEL8 all arguments... | CrunchyData/crunchy-containers | build/pgbadger/Dockerfile | Dockerfile | apache-2.0 | 2,229 |
FROM ubuntu:16.04
MAINTAINER "Andre Martins <andre@cilium.io>"
RUN apt-get update && \
apt-get install -y --no-install-recommends dh-golang devscripts fakeroot dh-make \
build-essential curl gcc make libc6-dev.i386
RUN cd /tmp && \
curl -Sslk -o go1.7.1.linux-amd64.tar.gz \
https://storage.googleapis.com/golang/g... | ivar-lazzaro/cilium | contrib/packaging/deb/cfg/Dockerfile | Dockerfile | apache-2.0 | 790 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-wifi-ubuntu:focal-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 g... | resin-io-library/base-images | balena-base-images/golang/beaglebone-green-wifi/ubuntu/focal/1.16.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,039 |
# AUTOGENERATED FILE
FROM balenalib/orbitty-tx2-ubuntu:eoan-build
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: publi... | nghiant2710/base-images | balena-base-images/python/orbitty-tx2/ubuntu/eoan/3.6.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,830 |
# AUTOGENERATED FILE
FROM balenalib/fincm3-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 add --n... | resin-io-library/base-images | balena-base-images/python/fincm3/alpine/3.14/3.9.10/run/Dockerfile | Dockerfile | apache-2.0 | 4,124 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-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-u... | nghiant2710/base-images | balena-base-images/dotnet/beaglebone-green/debian/stretch/2.1-aspnet/run/Dockerfile | Dockerfile | apache-2.0 | 2,608 |
# AUTOGENERATED FILE
FROM balenalib/asus-tinker-board-s-ubuntu:focal-build
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
ca-certificates \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
li... | resin-io-library/base-images | balena-base-images/dotnet/asus-tinker-board-s/ubuntu/focal/6.0-runtime/build/Dockerfile | Dockerfile | apache-2.0 | 2,568 |
# AUTOGENERATED FILE
FROM balenalib/apalis-imx6-alpine:3.11-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 \
; do... | nghiant2710/base-images | balena-base-images/node/apalis-imx6/alpine/3.11/14.16.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,958 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen6x-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 \
libicu57 \
liblttng-ust0 \... | nghiant2710/base-images | balena-base-images/dotnet/nitrogen6x/debian/bullseye/2.1-sdk/run/Dockerfile | Dockerfile | apache-2.0 | 2,969 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi-debian:bookworm-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 s... | resin-io-library/base-images | balena-base-images/openjdk/raspberrypi/debian/bookworm/11-jre/build/Dockerfile | Dockerfile | apache-2.0 | 3,741 |
# AUTOGENERATED FILE
FROM balenalib/smarc-px30-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: pub... | resin-io-library/base-images | balena-base-images/python/smarc-px30/debian/stretch/3.10.2/build/Dockerfile | Dockerfile | apache-2.0 | 4,856 |
# AUTOGENERATED FILE
FROM balenalib/intel-edison-alpine:3.10-build
ENV NODE_VERSION 14.15.4
ENV YARN_VERSION 1.22.4
# Install dependencies
RUN apk add --no-cache libgcc libstdc++ libuv \
&& apk add --no-cache libssl1.0 || apk add --no-cache libssl1.1
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; d... | nghiant2710/base-images | balena-base-images/node/intel-edison/alpine/3.10/14.15.4/build/Dockerfile | Dockerfile | apache-2.0 | 2,959 |
# AUTOGENERATED FILE
FROM balenalib/imx8m-var-dart-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 "virtualenv... | resin-io-library/base-images | balena-base-images/python/imx8m-var-dart/fedora/36/3.8.12/run/Dockerfile | Dockerfile | apache-2.0 | 2,437 |
# AUTOGENERATED FILE
FROM balenalib/generic-aarch64-debian:bookworm-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.
#
# F... | resin-io-library/base-images | balena-base-images/openjdk/generic-aarch64/debian/bookworm/17-jdk/build/Dockerfile | Dockerfile | apache-2.0 | 3,030 |
# 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 use... | brosander/nifi-minifi | minifi-docker/dockerhub/Dockerfile | Dockerfile | apache-2.0 | 1,801 |
FROM balenalib/amd64-alpine:3.15-build
LABEL io.balena.device-type="surface-pro-6"
RUN apk add --update \
less \
nano \
net-tools \
ifupdown \
usbutils \
gnupg \
&& rm -rf /var/cache/apk/*
RUN [ ! -d /.balena/messages ] && mkdir -p /.balena/messages; echo $'Here are a few details about this Docker image ... | resin-io-library/base-images | balena-base-images/device-base/surface-pro-6/alpine/3.15/build/Dockerfile | Dockerfile | apache-2.0 | 1,035 |
# AUTOGENERATED FILE
FROM balenalib/odroid-u3+-ubuntu:disco-run
ENV GO_VERSION 1.16
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
&& apt-get u... | nghiant2710/base-images | balena-base-images/golang/odroid-u3+/ubuntu/disco/1.16/run/Dockerfile | Dockerfile | apache-2.0 | 2,348 |
# AUTOGENERATED FILE
FROM balenalib/zc702-zynq7-debian:jessie-build
ENV NODE_VERSION 15.14.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/zc702-zynq7/debian/jessie/15.14.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,788 |
FROM ubuntu:16.04
MAINTAINER Madhuri Yechuri <cosmokramer@gmail.com>
# Get OSv base ELF
RUN mkdir -p /osv/base
COPY ./loader-x86_64.elf /osv/base/loader.elf
# Get binutils for access to readelf
RUN apt-get update && \
apt-get install -y build-essential vim upx curl qemu-utils qemu-kvm
RUN upx -d /osv/base/loader.... | myechuri/ukonvrt | ukonvrt/docker-image-x86-64/Dockerfile | Dockerfile | apache-2.0 | 808 |
FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build
WORKDIR /app
COPY Benchmarks .
RUN dotnet publish -c Release -o out
FROM mcr.microsoft.com/dotnet/aspnet:5.0 AS runtime
ENV ASPNETCORE_URLS http://+:8080
WORKDIR /app
COPY --from=build /app/out ./
ENTRYPOINT ["dotnet", "Benchmarks.dll", "scenarios=plaintext"]
| volyrique/FrameworkBenchmarks | frameworks/CSharp/aspnetcore/aspcore-mw.dockerfile | Dockerfile | bsd-3-clause | 309 |
FROM ruby:2.2.0
RUN apt-get update -qq && apt-get install -y build-essential
# for postgres
RUN apt-get install -y libpq-dev
# for nokogiri
RUN apt-get install -y libxml2-dev libxslt1-dev
# for capybara-webkit
RUN apt-get install -y libqt4-webkit libqt4-dev xvfb
# for a JS runtime
RUN apt-get install -y nodejs
EN... | joshuaclayton/backbone-data-bootstrap | Dockerfile | Dockerfile | mit | 437 |
FROM golang:1.17-alpine
RUN apk --update upgrade \
&& apk --no-cache --no-progress add git mercurial bash gcc musl-dev curl tar ca-certificates tzdata \
&& update-ca-certificates \
&& rm -rf /var/cache/apk/*
# Which docker version to test on
ARG DOCKER_VERSION=18.09.7
# Download docker
RUN mkdir -p /usr/... | ldez/traefik | build.Dockerfile | Dockerfile | mit | 1,228 |
FROM python:3-onbuild
MAINTAINER Paulus Schoutsen <Paulus@PaulusSchoutsen.nl>
VOLUME /config
EXPOSE 8123
CMD [ "python", "-m", "homeassistant", "--config", "/config" ]
| JMSwag/home-assistant | Dockerfile | Dockerfile | mit | 171 |
## -*- docker-image-name: "scaleway/elk:latest" -*-
FROM scaleway/java:amd64-latest
# following 'FROM' lines are used dynamically thanks do the image-builder
# which dynamically update the Dockerfile if needed.
#FROM scaleway/java:armhf-latest # arch=armv7l
#FROM scaleway/java:arm64-latest # arch=arm64
#FRO... | scaleway/image-app-elk | Dockerfile | Dockerfile | mit | 2,119 |
# AUTOGENERATED FILE
FROM balenalib/kitra710-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/kitra710/alpine/3.13/7-jdk/build/Dockerfile | Dockerfile | apache-2.0 | 1,757 |
# AUTOGENERATED FILE
FROM balenalib/blackboard-tx2-ubuntu:bionic-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 ... | nghiant2710/base-images | balena-base-images/openjdk/blackboard-tx2/ubuntu/bionic/11-jre/build/Dockerfile | Dockerfile | apache-2.0 | 3,108 |
# AUTOGENERATED FILE
FROM balenalib/astro-tx2-debian:stretch-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/astro-tx2/debian/stretch/8-jre/run/Dockerfile | Dockerfile | apache-2.0 | 3,098 |
FROM balenalib/armv7hf-alpine:edge-run
LABEL io.balena.device-type="var-som-mx6"
RUN apk add --update \
less \
nano \
net-tools \
ifupdown \
usbutils \
gnupg \
&& rm -rf /var/cache/apk/*
RUN [ ! -d /.balena/messages ] && mkdir -p /.balena/messages; echo $'Here are a few details about this Docker image (F... | nghiant2710/base-images | balena-base-images/device-base/var-som-mx6/alpine/edge/run/Dockerfile | Dockerfile | apache-2.0 | 1,016 |
# 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/7-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 1,764 |
FROM busybox
MAINTAINER Andrew O'Neill <foolusion@gmail.com>
COPY mongo-store /mongo-store
CMD ["/mongo-store"]
| Nordstrom/choices | cmd/mongo-store/Dockerfile | Dockerfile | apache-2.0 | 112 |
FROM busybox
MAINTAINER John Doe "user@spotify.com"
RUN date >> /build-timestamp
| davidkarlsen/docker-maven-plugin | src/test/resources/dockerDirectory/Dockerfile | Dockerfile | apache-2.0 | 88 |
FROM busybox
ENV PATH
| openshift/dockerexec | vendor/src/github.com/docker/docker/builder/parser/testfiles-negative/env_no_value/Dockerfile | Dockerfile | apache-2.0 | 23 |
FROM node
ADD . /node-hello-world
ENV PORT 80
EXPOSE 80
WORKDIR /node-hello-world
CMD node server.js
| tjmehta/node-hello-world | Dockerfile | Dockerfile | mit | 101 |
FROM mcr.microsoft.com/dotnet/core/sdk:3.1 AS build
WORKDIR /build/src
COPY . .
RUN dotnet restore
RUN dotnet publish -c Release -o /build/out
FROM mcr.microsoft.com/dotnet/core/aspnet:3.1 as runtime
WORKDIR /app
COPY --from=build /build/out ./
ENTRYPOINT ["dotnet", "Portfolio.API.dll"] | mwcaisse/portfolio | Portfolio/Portfolio.API/Dockerfile | Dockerfile | mit | 294 |
FROM microsoft/dotnet:1.1-sdk
WORKDIR /app
# copy csproj and restore as distinct layers
COPY WorldDominationCrawler.csproj .
RUN dotnet restore
# copy and build everything else
COPY . .
RUN dotnet publish -c Release -o out
ENTRYPOINT ["dotnet", "out/wdcrawler.dll"] | line64/WorldDominationCrawler | Dockerfile | Dockerfile | mit | 267 |
FROM ubuntu:latest
RUN apt-get update -y && \
apt-get install -y \
build-essential \
wget \
unzip
RUN sudo apt-get install cmake cmake-curses-gui -y
WORKDIR /tmp/downloads
RUN wget -O opencv-2.4.11.zip http://sourceforge.net/projects/opencvlibrary/files/opencv-unix/2.4.11/opencv-2.4.11.zip/dow... | kevinsimper/opencv-docker | Dockerfile | Dockerfile | mit | 575 |
FROM nginx:latest
MAINTAINER Mikhail Kantarovskiy <kantoramob@gmail.com>
RUN apt-get update && \
apt-get -y upgrade
COPY default.conf /etc/nginx/conf.d/
| KlusterKite/KlusterKite | Docker/KlusterKiteEntry/Dockerfile | Dockerfile | mit | 156 |
FROM base/arch
MAINTAINER Sander Smits
# overridable environment variables
ENV SC_URL sop://broker.sopcast.com:3912
ENV SC_CHANNEL 123456
# make sure multilib repository can be used
COPY pacman.conf /etc/pacman.conf
# update package list
RUN pacman -Syu --noconfirm
# install sopcast from multilib repository
RUN p... | jsmits/dockerfiles | sopcast/Dockerfile | Dockerfile | mit | 474 |
FROM pawurb/ruby-jemalloc-node-yarn:latest
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y tzdata && apt-get clean
RUN mkdir /app
COPY Gemfile* /app/
COPY package.json /app/
COPY yarn.lock /app/
WORKDIR /app
RUN bundle install --jobs 5 --retry 5 --without development test
RUN yarn install
COP... | coreyja/glassy-collections | Dockerfile | Dockerfile | mit | 401 |
FROM matriphe/alpine-php:fpm-7
| kcearns/ironwestern | nginx/Dockerfile | Dockerfile | mit | 46 |
#Openstack
FROM ubuntu
RUN echo 'deb http://archive.ubuntu.com/ubuntu precise main universe' > /etc/apt/sources.list && \
echo 'deb http://archive.ubuntu.com/ubuntu precise-updates universe' >> /etc/apt/sources.list && \
apt-get update
#Prevent daemon start during install
RUN echo '#!/bin/sh\nexit 101' > /u... | mingfang/docker-openstack | Dockerfile | Dockerfile | mit | 7,183 |
FROM piotrminkina/debian:lenny
MAINTAINER Piotr Minkina <projects[i.am.spammer]@piotrminkina.pl>
ADD bin/policy-rc.d /usr/sbin/policy-rc.d
ADD bin/start-stop-daemon /sbin/start-stop-daemon
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -yqq \
busybox \
apache2-mpm-worker \
libapa... | piotrminkina/docker-apache2 | src/Dockerfile | Dockerfile | mit | 617 |
FROM php:5.6-fpm
MAINTAINER Scott Collier <scott@onlinespaces.com>
ARG PROJECT_NAME
ARG XDEBUG_IDE_KEY
ARG XDEBUG_REMOTE_PORT
ARG TIME_ZONE
ARG PHP_FPM_PORT
ENV TERM xterm
COPY .bashrc /root/
COPY supervisord.conf /etc/supervisor/conf.d/
COPY .gitconfig /root/
RUN export TERM=xterm && \
apt-get clean && apt-get... | onlinespaces/docker-project-base | docker/php-fpm/5.6/Dockerfile | Dockerfile | mit | 6,007 |
############################################################
# Dockerfile to run an OrientDB (Graph) Container
############################################################
FROM openjdk:8-jdk-slim
MAINTAINER OrientDB LTD (info@orientdb.com)
# Override the orientdb download location with e.g.:
# docker build -t mine... | orientechnologies/orientdb-docker | release/3.0.x/3.0.38/Dockerfile | Dockerfile | mit | 1,602 |
#rferraro/cxx-common:debian-stretch
FROM debian:stretch
RUN apt-get update && apt-get install -y --no-install-recommends \
ca-certificates \
python \
make \
cmake \
jq \
curl \
git \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* \
&& curl -s http... | RFerraro/Docker | cxx/common/debian/stretch/Dockerfile | Dockerfile | mit | 442 |
FROM nodesource/wheezy-base
MAINTAINER William Blankenship <wblankenship@nodesource.com>
RUN curl https://deb.nodesource.com/node_5.x/pool/main/n/nodejs/nodejs_5.3.0-1nodesource1~wheezy1_amd64.deb > node.deb \
&& dpkg -i node.deb \
&& rm node.deb
RUN npm install -g pangyp\
&& ln -s $(which pangyp) $(dirname $(whic... | nodesource/docker-node | debian/wheezy/node/5.3.0/Dockerfile | Dockerfile | mit | 553 |
FROM ubuntu:15.10
MAINTAINER Phusion <info@phusion.nl>
ENV HOME /root
ADD . /build
RUN /build/prepare.sh && \
/build/system_services.sh && \
/build/utilities.sh && \
/build/cleanup.sh
CMD ["/sbin/my_init"]
| abelaska/baseimage-docker | image/Dockerfile | Dockerfile | mit | 212 |
FROM openjdk:8-jre-alpine
ENV JAR_VERSION=1.0.0
RUN mkdir -p /opt/osiris-web-backend
ADD ../../web-backend/${JAR_VERSION}/osiris-web-backend-${JAR_VERSION}.jar /opt/osiris-web-backend/osiris-web-backend.jar
RUN chmod -R 750 /opt/osiris-web-backend
CMD ["java", "-jar", "/opt/osiris-web-backend/osiris-web-backend.ja... | labtempo/osiris-binaries | docker-compose/web-interface-backend/Dockerfile | Dockerfile | apache-2.0 | 324 |
FROM debian:wheezy
# enable false as no-login shell
RUN echo "/bin/false" >> /etc/shells
# update package manager
RUN apt-get update -q
# install common software
RUN apt-get install -y --force-yes --no-install-recommends \
openssl selinux-basics selinux-policy-default auditd \
mysql-client mysql-server \
... | rstiller/docker-wordpress | Dockerfile | Dockerfile | apache-2.0 | 2,451 |
# AUTOGENERATED FILE
FROM balenalib/orbitty-tx2-alpine:3.13-run
ENV NODE_VERSION 14.16.1
ENV YARN_VERSION 1.22.4
# Install dependencies
RUN apk add --no-cache libgcc libstdc++ libuv \
&& apk add --no-cache libssl1.0 || apk add --no-cache libssl1.1
RUN buildDeps='curl' \
&& set -x \
&& for key in \
6A010C51660065... | nghiant2710/base-images | balena-base-images/node/orbitty-tx2/alpine/3.13/14.16.1/run/Dockerfile | Dockerfile | apache-2.0 | 3,026 |
# AUTOGENERATED FILE
FROM balenalib/asus-tinker-edge-t-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 pyth... | resin-io-library/base-images | balena-base-images/python/asus-tinker-edge-t/ubuntu/bionic/3.10.0/run/Dockerfile | Dockerfile | apache-2.0 | 4,075 |
# AUTOGENERATED FILE
FROM balenalib/odroid-ux3-alpine:3.10-run
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 buildDeps='curl' \
&& set -x \
&& for key in \
6A010C516600659... | nghiant2710/base-images | balena-base-images/node/odroid-ux3/alpine/3.10/14.16.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,025 |
FROM ubuntu:trusty
MAINTAINER Daniel Bruns <dbruns@gmail.com>
# Install packages
RUN apt-get update
RUN DEBIAN_FRONTEND=noninteractive apt-get -y install supervisor git apache2 libapache2-mod-php5 php5-ldap php5-mysql php5-gd php5-curl php-pear php-apc curl
RUN sed -i "s/variables_order.*/variables_order = \"EGPCS\"/... | dbruns/dbruns-docker-php | Dockerfile | Dockerfile | apache-2.0 | 710 |
# AUTOGENERATED FILE
FROM balenalib/hummingboard2-ubuntu:bionic-run
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu60 \
libssl1.1 \
l... | resin-io-library/base-images | balena-base-images/dotnet/hummingboard2/ubuntu/bionic/3.1-runtime/run/Dockerfile | Dockerfile | apache-2.0 | 2,520 |
# AUTOGENERATED FILE
FROM balenalib/kitra710-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/kitra710/alpine/3.12/3.7.9/run/Dockerfile | Dockerfile | apache-2.0 | 4,128 |
# AUTOGENERATED FILE
FROM balenalib/smarc-px30-debian:bullseye-build
ENV GO_VERSION 1.15.8
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \
&& echo "0e31ea4bf53496b0f0809730520dee98c0ae5c530f3701a19df0ba0a327bf3d2 go$GO_VERSION.linux-arm64.tar.gz"... | nghiant2710/base-images | balena-base-images/golang/smarc-px30/debian/bullseye/1.15.8/build/Dockerfile | Dockerfile | apache-2.0 | 2,003 |
# AUTOGENERATED FILE
FROM balenalib/etcher-pro-alpine:3.13-build
# remove several traces of python
RUN apk del python*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: public key "Simon McVit... | resin-io-library/base-images | balena-base-images/python/etcher-pro/alpine/3.13/3.8.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,836 |
# AUTOGENERATED FILE
FROM balenalib/artik533s-ubuntu:xenial-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 ha... | nghiant2710/base-images | balena-base-images/node/artik533s/ubuntu/xenial/14.15.4/build/Dockerfile | Dockerfile | apache-2.0 | 2,762 |
FROM ubuntu:trusty
MAINTAINER Citus Data https://citusdata.com
ENV CITUS_CONFDIR=/etc/citus \
CITUS_SERVICE_NAME=master
COPY . workerlistgen-src/
COPY reload.sh /reload.sh
# Install pip
RUN apt-get update && apt-get install -y --no-install-recommends python python-pip \
&& pip install -I /workerlistgen-src \... | citusdata/dockercloud-workerlist-gen | Dockerfile | Dockerfile | apache-2.0 | 648 |
# AUTOGENERATED FILE
FROM balenalib/artik520-alpine:3.12-build
# remove several traces of python
RUN apk del python*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: public key "Simon McVitti... | resin-io-library/base-images | balena-base-images/python/artik520/alpine/3.12/3.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 4,834 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-gateway-debian:bullseye-build
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu63 \
... | nghiant2710/base-images | balena-base-images/dotnet/beaglebone-green-gateway/debian/bullseye/3.1-runtime/build/Dockerfile | Dockerfile | apache-2.0 | 2,545 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx1-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/jetson-tx1/debian/buster/12.21.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,783 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen6x-ubuntu:eoan-build
ENV NODE_VERSION 12.20.1
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver ha.... | nghiant2710/base-images | balena-base-images/node/nitrogen6x/ubuntu/eoan/12.20.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,759 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-nx-devkit-emmc-fedora:32-build
ENV NODE_VERSION 15.6.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg ... | nghiant2710/base-images | balena-base-images/node/jetson-xavier-nx-devkit-emmc/fedora/32/15.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,769 |
# AUTOGENERATED FILE
FROM balenalib/kitra710-debian:bookworm-build
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/kitra710/debian/bookworm/5.0-runtime/build/Dockerfile | Dockerfile | apache-2.0 | 2,532 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.