code stringlengths 2 1.05M | repo_name stringlengths 5 101 | path stringlengths 4 991 | language stringclasses 3
values | license stringclasses 5
values | size int64 2 1.05M |
|---|---|---|---|---|---|
# AUTOGENERATED FILE
FROM balenalib/raspberry-pi2-alpine:3.13-run
# Default to UTF-8 file.encoding
ENV LANG C.UTF-8
# add a simple script that can auto-detect the appropriate JAVA_HOME value
# based on whether the JDK or only the JRE is installed
RUN { \
echo '#!/bin/sh'; \
echo 'set -e'; \
echo; \
echo 'dirn... | nghiant2710/base-images | balena-base-images/openjdk/raspberry-pi2/alpine/3.13/8-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 1,758 |
# AUTOGENERATED FILE
FROM balenalib/qemux86-alpine:edge-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/edge/7-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 1,764 |
FROM balenalib/armv7hf-debian:stretch-build
LABEL io.balena.device-type="orange-pi-zero"
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 ] &... | nghiant2710/base-images | balena-base-images/device-base/orange-pi-zero/debian/stretch/build/Dockerfile | Dockerfile | apache-2.0 | 1,099 |
ARG PACKAGE_TARGET
FROM habitat-${PACKAGE_TARGET}:hab-base as hab
ENV PATH=${PATH}:/hab/bin
ARG BLDR_CHANNEL=stable
ARG BLDR_URL=https://bldr.habitat.sh
ARG HAB_LICENSE=no-accept
RUN hab pkg install --url ${BLDR_URL} --channel ${BLDR_CHANNEL} core/hab-backline \
&& hab pkg binlink core/bash -d /hab/bin \
&& hab pkg... | habitat-sh/habitat | components/rootless_studio/default/Dockerfile | Dockerfile | apache-2.0 | 612 |
# A Docker image that augments the Emscripten SDK Docker image
# with anything needed to build Canvaskit
FROM gcr.io/skia-public/emsdk-base:1.38.47_v1
RUN apt-get update && apt-get upgrade -y && apt-get install -y \
libfreetype6-dev | youtube/cobalt | third_party/skia/infra/canvaskit/docker/canvaskit-emsdk/Dockerfile | Dockerfile | bsd-3-clause | 236 |
FROM cyclus/cymetric
RUN apt-get install -y --force-yes python3-pip
RUN pip3 install sphinx sphinxcontrib-bibtex
RUN pip3 install cloud-sptheme==1.6
| gidden/cyclus.github.com | docker/fuelcycle.org-deps/Dockerfile | Dockerfile | bsd-3-clause | 152 |
FROM debian:jessie
# persistent / runtime deps
RUN apt-get update && apt-get install -y ca-certificates curl libpcre3 librecode0 libsqlite3-0 libxml2 --no-install-recommends && rm -r /var/lib/apt/lists/*
# phpize deps
RUN apt-get update && apt-get install -y autoconf file g++ gcc libc-dev make pkg-config re2c --no-in... | ffhenkes/php | 7.0/apache/Dockerfile | Dockerfile | mit | 2,806 |
FROM debian:stretch
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get -y update && \
apt-get -y install \
git vim parted \
quilt realpath qemu-user-static debootstrap zerofree pxz zip dosfstools \
bsdtar libcap2-bin rsync grep udev xz-utils curl xxd \
&& rm -rf /var/lib/apt/lists/*
COPY ... | cfstras/pi-gen | Dockerfile | Dockerfile | bsd-3-clause | 375 |
################################################################################
# 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... | bowenli86/flink | flink-contrib/docker-flink/Dockerfile | Dockerfile | apache-2.0 | 1,900 |
FROM golang
RUN mkdir -p $GOPATH/src/github.com/ActiveState/tail/
ADD . $GOPATH/src/github.com/ActiveState/tail/
# expecting to fetch dependencies successfully.
RUN go get -v github.com/ActiveState/tail
# expecting to run the test successfully.
RUN go test -v github.com/ActiveState/tail
# expecting to install succe... | 42wim/ulog2queue | vendor/src/github.com/42wim/tail/Dockerfile | Dockerfile | mit | 509 |
FROM alpine:3.10
MAINTAINER Jayson Wang <jayson@laboys.org>
ENV REDIS_VERSION 5.0.5
ENV REDIS_HOME /usr/local/redis
ENV REDIS_DATA_DIR /var/redis
RUN set -ex \
&& addgroup -S redis \
&& adduser -S -D -H -G redis redis \
\
&& apk update \
&& apk add --virtual .build-deps \
curl \
... | JShadowMan/here | docs/docker/redis/Dockerfile | Dockerfile | mit | 2,187 |
FROM fedora:24
LABEL maintainer="takahasi <3263ta@gmail.com>" \
description="OpenRTM on Docker: OpenRTM-aist on Docker images." \
build_type="fedora-all"
ENV DEBIAN_FRONTEND noninteractive
RUN set -x && \
dnf update -y
RUN dnf install -y curl \
bc \
bsdm... | takahasi/docker-openrtm | fedora24x64-openrtm112/Dockerfile | Dockerfile | mit | 1,876 |
FROM php:7.0.12-fpm
MAINTAINER Sulaeman <me@sulaeman.com>
RUN apt-get update \
&& apt-get install -y \
rsyslog \
cron \
libcurl4-gnutls-dev \
libpq-dev \
libfreetype6-dev \
libicu-dev \
libjpeg62-turbo-dev \
libmcrypt-dev \
libpng12-dev \
libxslt1-dev
# Install Composer and ... | feelinc/docker-php | Dockerfile | Dockerfile | mit | 1,087 |
FROM nginx:alpine
LABEL Author="Rainer Stropek"
ENV REFRESHED_AT 2018-01-01
COPY *.html /usr/share/nginx/html/ | rstropek/htl-mobile-computing | docker/0010-static-website/Dockerfile | Dockerfile | mit | 111 |
FROM microsoft/dotnet:2.0-sdk AS builder
WORKDIR /app
ADD /src/optimizer.csproj /app
RUN dotnet restore
ADD /src /app
RUN dotnet publish -o output
FROM microsoft/aspnetcore:2.0
COPY --from=builder /app/output /app
WORKDIR /app
ENTRYPOINT ["dotnet", "optimizer.dll"]
| EditionsENI/mortgage | optimizer/Dockerfile | Dockerfile | mit | 267 |
FROM andrewrothstein/docker-ansible:centos_7
MAINTAINER Andrew Rothstein <andrew.rothstein@gmail.com>
ADD . /playbook
WORKDIR /playbook
RUN ansible-playbook test.yml
| andrewrothstein/ansible-openresty | Dockerfile | Dockerfile | mit | 167 |
FROM resin/rpi-raspbian
MAINTAINER Simon K T Burrows <sktburrows@gmail.com>
RUN sudo apt-get -q update
RUN sudo apt-get -q install bind9
ADD ./named.conf /etc/named.conf
EXPOSE 53/udp
CMD ["/usr/sbin/named", "-g"]
| sktb/docker-home-network | named/Dockerfile | Dockerfile | mit | 218 |
FROM zoomulus/base
RUN apt-get install -y golang
CMD bash
| zoomulus/docker | go/Dockerfile | Dockerfile | mit | 59 |
FROM debian:stretch
MAINTAINER dockerage <dockerage@gmail.com>
# Set the env variables to non-interactive
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update \
&& apt-get -yq install \
apache2 \
curl \
git \
sudo \
pkg-config \
build-essential \
devscripts... | dockerage/dockers | apache-mellon-builder/Dockerfile | Dockerfile | mit | 765 |
FROM node:argon
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
# Install app dependencies
COPY package.json /usr/src/app/
RUN npm install
COPY . /usr/src/app
EXPOSE 8080
CMD ["npm", "start"]
| marinamarina/complete-intro-to-react | Dockerfile | Dockerfile | mit | 196 |
FROM debian:sid
MAINTAINER Yanis Pavlidis <yanis@pavlidis.email>
RUN buildDeps='build-essential git cmake pkg-config python libffi-dev' \
# install prerequisites
&& apt-get update && apt-get install -y \
nano \
$buildDeps \
--no-install-recommends \
# build cling
&& mkdir /src \
&& cd /src \
&& git clone --de... | gpavlidi/dockerfiles | cling/Dockerfile | Dockerfile | mit | 1,240 |
FROM sequenceiq/spark:1.6.0
RUN yum -y -q update && yum -y -q install python-devel python-pip
RUN pip install --upgrade pip
RUN pip install numpy nose pandas
COPY elasticsearch-hadoop-2.3.2.jar .
| ldkge/visfx | spark/Dockerfile | Dockerfile | mit | 198 |
FROM alpine:latest
RUN apk upgrade --update && apk add openssh && \
echo "ForceCommand echo 'MANAGEMENT CHANNEL, general usage prohibited!'" >> /etc/ssh/sshd_config && \
[ -e /etc/ssh/ssh_host_rsa_key ] && true || ssh-keygen -A && \
mkdir -p ~/.ssh && \
chmod 700 ~/.ssh
COPY authorized_keys /root/.ssh/authoriz... | anapsix/callhome | Dockerfile | Dockerfile | mit | 512 |
FROM alpine:3.11.6 AS base
RUN apk add --update-cache \
unzip
ENV DL_LINK=https://terraria.org/server/MobileTerrariaServer.zip
ENV DL_VERSION=1_4_0_5
ENV DL_FILE=MobileTerrariaServer.zip
ADD $DL_LINK /$DL_FILE
RUN unzip /$DL_FILE -d /terraria-zip && \
unzip /terraria-zip/Linux_MobileServer_${DL_VERSION}.zi... | ryansheehan/terraria | mobile/Dockerfile | Dockerfile | mit | 1,038 |
FROM python:3.5-slim-stretch
RUN apt-get update && apt-get install -y \
g++ \
gfortran \
libblas-dev \
liblapack-dev \
libopenblas-dev \
python3-dev \
enchant \
build-essential
COPY . /ores
WORKDIR /ores
RUN pip install pip --upgrade
RUN pip install wheel
RUN pip install nltk
RUN pip ... | he7d3r/ores | Dockerfile | Dockerfile | mit | 454 |
FROM microsoft/aspnetcore:2.0.5 AS base
WORKDIR /app
EXPOSE 80
FROM microsoft/aspnetcore-build:2.0.5-2.1.4 AS build
WORKDIR /src
COPY . .
RUN dotnet restore -nowarn:msb3202,nu1503
WORKDIR /src/src/Services/Marketing/Marketing.API
RUN dotnet build --no-restore -c Release -o /app
FROM build AS publish
RUN dotnet publis... | productinfo/eShopOnContainers | src/Services/Marketing/Marketing.API/Dockerfile | Dockerfile | mit | 457 |
FROM balenalib/aarch64-ubuntu:impish-run
LABEL io.balena.device-type="photon-tx2-nx"
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 ] && mk... | resin-io-library/base-images | balena-base-images/device-base/photon-tx2-nx/ubuntu/impish/run/Dockerfile | Dockerfile | apache-2.0 | 1,092 |
# AUTOGENERATED FILE
FROM balenalib/imx6ul-var-dart-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 \
' \
&& ... | resin-io-library/base-images | balena-base-images/golang/imx6ul-var-dart/debian/buster/1.16.14/run/Dockerfile | Dockerfile | apache-2.0 | 2,361 |
# AUTOGENERATED FILE
FROM balenalib/photon-nano-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" || \
... | nghiant2710/base-images | balena-base-images/node/photon-nano/debian/buster/12.21.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,784 |
# AUTOGENERATED FILE
FROM balenalib/n510-tx2-debian:stretch-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-ge... | nghiant2710/base-images | balena-base-images/golang/n510-tx2/debian/stretch/1.15.11/run/Dockerfile | Dockerfile | apache-2.0 | 2,327 |
# AUTOGENERATED FILE
FROM balenalib/zc702-zynq7-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/zc702-zynq7/debian/bookworm/3.1-sdk/build/Dockerfile | Dockerfile | apache-2.0 | 2,918 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen6xq2g-ubuntu:bionic-build
ENV GO_VERSION 1.14.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 "93a87bdde7d5dd8c7ba0570fd811cebdfb988a6393f5f660f4595566120e0620 go$GO_VE... | nghiant2710/base-images | balena-base-images/golang/nitrogen6xq2g/ubuntu/bionic/1.14.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,033 |
# AUTOGENERATED FILE
FROM balenalib/jetson-nano-debian:bookworm-build
ENV GO_VERSION 1.16.14
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \
&& echo "5e59056e36704acb25809bcdb27191f27593cb7aba4d716b523008135a1e764a go$GO_VERSION.linux-arm64.tar.g... | resin-io-library/base-images | balena-base-images/golang/jetson-nano/debian/bookworm/1.16.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,006 |
# AUTOGENERATED FILE
FROM balenalib/ccimx8x-sbc-pro-ubuntu:bionic-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 \
' \
&& ... | resin-io-library/base-images | balena-base-images/golang/ccimx8x-sbc-pro/ubuntu/bionic/1.16.14/run/Dockerfile | Dockerfile | apache-2.0 | 2,332 |
# AUTOGENERATED FILE
FROM balenalib/surface-pro-6-fedora:33-run
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
RUN dnf install -y \
python3-pip \
python3-dbus \
&& dnf clean all
# install "virtualenv"... | nghiant2710/base-images | balena-base-images/python/surface-pro-6/fedora/33/3.9.4/run/Dockerfile | Dockerfile | apache-2.0 | 2,450 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-gateway-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... | nghiant2710/base-images | balena-base-images/python/beaglebone-green-gateway/ubuntu/focal/2.7.18/run/Dockerfile | Dockerfile | apache-2.0 | 4,455 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx1-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 \
... | resin-io-library/base-images | balena-base-images/dotnet/jetson-tx1/debian/buster/3.1-aspnet/build/Dockerfile | Dockerfile | apache-2.0 | 3,133 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen8mm-fedora:31-run
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.poo... | nghiant2710/base-images | balena-base-images/node/nitrogen8mm/fedora/31/15.14.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,750 |
# AUTOGENERATED FILE
FROM balenalib/jetson-nano-2gb-devkit-fedora:34-run
ENV GO_VERSION 1.15.11
# gcc for cgo
RUN dnf install -y \
gcc-c++ \
gcc \
git \
&& dnf clean all
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \
&& echo "bfc8f0794529... | nghiant2710/base-images | balena-base-images/golang/jetson-nano-2gb-devkit/fedora/34/1.15.11/run/Dockerfile | Dockerfile | apache-2.0 | 2,085 |
FROM node:0.10.40
MAINTAINER Patrick Reynolds <patrick.reynolds@kitware.com>
EXPOSE 8080
RUN mkdir /girder
RUN mkdir /girder/logs
RUN apt-get update && apt-get install -qy software-properties-common python-software-properties && \
apt-get update && apt-get install -qy \
build-essential \
git \
libffi-d... | salamb/girder | Dockerfile | Dockerfile | apache-2.0 | 955 |
# Copyright 2015 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | waprin/kubernetes_django_postgres_redis | kubernetes_configs/load_test/load_test_image/Dockerfile | Dockerfile | apache-2.0 | 725 |
# AUTOGENERATED FILE
FROM balenalib/jetson-nano-alpine:3.12-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/jetson-nano/alpine/3.12/14.16.1/run/Dockerfile | Dockerfile | apache-2.0 | 3,026 |
# AUTOGENERATED FILE
FROM balenalib/parallella-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 \
... | resin-io-library/base-images | balena-base-images/dotnet/parallella/ubuntu/focal/6.0-aspnet/run/Dockerfile | Dockerfile | apache-2.0 | 3,197 |
# AUTOGENERATED FILE
FROM balenalib/iot-gate-imx8-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: pub... | nghiant2710/base-images | balena-base-images/python/iot-gate-imx8/ubuntu/eoan/3.6.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,832 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypicm4-ioboard-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 ... | resin-io-library/base-images | balena-base-images/python/raspberrypicm4-ioboard/ubuntu/xenial/3.9.10/run/Dockerfile | Dockerfile | apache-2.0 | 4,079 |
# AUTOGENERATED FILE
FROM balenalib/cubox-i-ubuntu:focal-run
ENV NODE_VERSION 15.7.0
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --r... | nghiant2710/base-images | balena-base-images/node/cubox-i/ubuntu/focal/15.7.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,911 |
# AUTOGENERATED FILE
FROM balenalib/orange-pi-lite-ubuntu:cosmic-run
# A few reasons for installing distribution-provided OpenJDK:
#
# 1. Oracle. Licensing prevents us from redistributing the official JDK.
#
# 2. Compiling OpenJDK also requires the JDK to be installed, and it gets
# really hairy.
#
# For so... | nghiant2710/base-images | balena-base-images/openjdk/orange-pi-lite/ubuntu/cosmic/8-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 3,101 |
# Copyright 2018 Google Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,... | FeliciaLim/oss-fuzz | projects/ecc-diff-fuzzer/Dockerfile | Dockerfile | apache-2.0 | 1,790 |
# AUTOGENERATED FILE
FROM balenalib/imx8mm-var-dart-debian:jessie-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 ... | nghiant2710/base-images | balena-base-images/python/imx8mm-var-dart/debian/jessie/2.7.18/run/Dockerfile | Dockerfile | apache-2.0 | 4,473 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypicm4-ioboard-debian:jessie-build
# A few reasons for installing distribution-provided OpenJDK:
#
# 1. Oracle. Licensing prevents us from redistributing the official JDK.
#
# 2. Compiling OpenJDK also requires the JDK to be installed, and it gets
# really hairy.
#
# ... | nghiant2710/base-images | balena-base-images/openjdk/raspberrypicm4-ioboard/debian/jessie/7-jre/build/Dockerfile | Dockerfile | apache-2.0 | 3,104 |
# AUTOGENERATED FILE
FROM balenalib/surface-go-debian:sid-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-get ... | resin-io-library/base-images | balena-base-images/golang/surface-go/debian/sid/1.16.14/run/Dockerfile | Dockerfile | apache-2.0 | 2,336 |
# AUTOGENERATED FILE
FROM balenalib/apalis-imx6-ubuntu:eoan-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... | nghiant2710/base-images | balena-base-images/python/apalis-imx6/ubuntu/eoan/2.7.18/run/Dockerfile | Dockerfile | apache-2.0 | 4,440 |
# AUTOGENERATED FILE
FROM balenalib/imx6ul-var-dart-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 ap... | nghiant2710/base-images | balena-base-images/python/imx6ul-var-dart/alpine/edge/3.9.1/run/Dockerfile | Dockerfile | apache-2.0 | 4,135 |
# AUTOGENERATED FILE
FROM balenalib/raspberry-pi2-debian:bullseye-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 \
' \
&& ... | nghiant2710/base-images | balena-base-images/golang/raspberry-pi2/debian/bullseye/1.14.14/run/Dockerfile | Dockerfile | apache-2.0 | 2,363 |
# AUTOGENERATED FILE
FROM balenalib/orbitty-tx2-alpine:3.11-build
# remove several traces of python
RUN apk del python*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: public key "Simon McVi... | nghiant2710/base-images | balena-base-images/python/orbitty-tx2/alpine/3.11/3.9.1/build/Dockerfile | Dockerfile | apache-2.0 | 4,838 |
# AUTOGENERATED FILE
FROM balenalib/colibri-imx6dl-ubuntu:xenial-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: ... | resin-io-library/base-images | balena-base-images/python/colibri-imx6dl/ubuntu/xenial/3.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 4,834 |
# AUTOGENERATED FILE
FROM balenalib/hummingboard-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/hummingboard/debian/bullseye/2.7.18/build/Dockerfile | Dockerfile | apache-2.0 | 5,235 |
FROM busybox
COPY dist/network-admission-controller /network-admission-controller
CMD ["/network-admission-controller","--alsologtostderr","--v=4","2>&1"]
| Huawei-PaaS/CNI-Genie | controllers/network-admission-controller/Dockerfile | Dockerfile | apache-2.0 | 156 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen8mm-fedora:31-run
ENV GO_VERSION 1.16.3
# gcc for cgo
RUN dnf install -y \
gcc-c++ \
gcc \
git \
&& dnf clean all
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \
&& echo "f4e96bbcd5d2d1942f5b55d9... | nghiant2710/base-images | balena-base-images/golang/nitrogen8mm/fedora/31/1.16.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,072 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen8mm-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.pgp.... | resin-io-library/base-images | balena-base-images/node/nitrogen8mm/ubuntu/hirsute/16.14.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,911 |
# AUTOGENERATED FILE
FROM balenalib/smarc-px30-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/smarc-px30/alpine/3.12/3.9.1/run/Dockerfile | Dockerfile | apache-2.0 | 4,130 |
# AUTOGENERATED FILE
FROM balenalib/n510-tx2-debian:buster-run
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# install python depende... | resin-io-library/base-images | balena-base-images/python/n510-tx2/debian/buster/3.8.12/run/Dockerfile | Dockerfile | apache-2.0 | 4,089 |
# AUTOGENERATED FILE
FROM balenalib/asus-tinker-board-alpine:3.11-build
# Default to UTF-8 file.encoding
ENV LANG C.UTF-8
# add a simple script that can auto-detect the appropriate JAVA_HOME value
# based on whether the JDK or only the JRE is installed
RUN { \
echo '#!/bin/sh'; \
echo 'set -e'; \
echo; \
echo... | nghiant2710/base-images | balena-base-images/openjdk/asus-tinker-board/alpine/3.11/7-jre/build/Dockerfile | Dockerfile | apache-2.0 | 1,770 |
# AUTOGENERATED FILE
FROM balenalib/beagleboard-xm-ubuntu:eoan-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 keyserver.pgp.... | nghiant2710/base-images | balena-base-images/node/beagleboard-xm/ubuntu/eoan/14.16.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,918 |
# AUTOGENERATED FILE
FROM balenalib/up-board-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/up-board/debian/buster/3.1-aspnet/run/Dockerfile | Dockerfile | apache-2.0 | 3,137 |
# AUTOGENERATED FILE
FROM balenalib/genericx86-64-ext-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 "Simo... | resin-io-library/base-images | balena-base-images/python/genericx86-64-ext/alpine/3.13/3.10.2/build/Dockerfile | Dockerfile | apache-2.0 | 4,850 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi4-64-ubuntu:xenial-run
ENV NODE_VERSION 15.7.0
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pg... | nghiant2710/base-images | balena-base-images/node/raspberrypi4-64/ubuntu/xenial/15.7.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,917 |
FROM yiwei1012/hadoop-gpu-base:1.2
MAINTAINER YIWEI CHEN <feberium@gmail.com>
RUN apt-get install -y iputils-ping daemontools
ENV HADOOP_INSTALL /usr/local/hadoop
RUN mkdir $HADOOP_INSTALL/logs
RUN mkdir -p /etc/service/serf
RUN mkdir -p /etc/service/sshd
ADD config/service /etc/service
RUN chmod +x /etc/service... | YIWEI-CHEN/hadoop-gpu-docker | hadoop-gpu-dn/Dockerfile | Dockerfile | apache-2.0 | 1,503 |
FROM centos:centos7
# Base system stuffs
RUN yum install -y deltarpm sudo openssh iproute expect-devel; yum -y update; yum clean all
RUN yum -y install gcc zlib-devel bzip2 bzip2-devel readline-devel python-devel; yum clean all;
# Home comforts
RUN sudo yum -y install git wget vim tmux; yum clean all;
# Initial quic... | d0ugal/tripleo-util | Dockerfile | Dockerfile | bsd-2-clause | 873 |
FROM solr:6.3-alpine
LABEL maintainer="sulcmil@gmail.com"
ADD ./packagist-schema.xml /opt/solr/server/solr/configsets/data_driven_schema_configs/conf/managed-schema
VOLUME /opt/solr/server/solr/mycores
CMD ["docker-entrypoint.sh", "solr-precreate", "packagist"]
| dockette/packagist | solr/Dockerfile | Dockerfile | bsd-3-clause | 266 |
FROM openjdk:10-jdk
MAINTAINER nl.homeserver
RUN mkdir -p /opt/home-server
COPY build/libs/home-server*.jar /opt/home-server
COPY application-docker.properties /opt/home-server
WORKDIR /opt/home-server
EXPOSE 8080
VOLUME /var/home-server/database
ENTRYPOINT ["java", "-jar", "-Dspring.profiles.active=docker", "/op... | bassages/home-server | Dockerfile | Dockerfile | apache-2.0 | 366 |
# 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... | carl-mastrangelo/grpc | tools/dockerfile/test/cxx_jessie_x86/Dockerfile | Dockerfile | apache-2.0 | 2,365 |
FROM scratch
COPY hello /
ENTRYPOINT ["/hello"]
EXPOSE 8080
| FaustXVI/junit5-docker | images-for-tests/open-port-later/Dockerfile | Dockerfile | apache-2.0 | 61 |
FROM balenalib/armv7hf-debian:buster-build
LABEL io.balena.device-type="am571x-evm"
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/am571x-evm/debian/buster/build/Dockerfile | Dockerfile | apache-2.0 | 1,093 |
FROM python:3.5
MAINTAINER Leandro Heck <leoheck@gmail.com>
# Provavelmente testes completos de instalacao devem ser feitos em outro servico
# RUN curl https://raw.githubusercontent.com/leoheck/ubuntu-config/master/configure.sh | sudo bash -s -- -c1 -a
# RUN curl https://raw.githubusercontent.com/leoheck/ubuntu-conf... | leoheck/gaph-os-scripts | Dockerfile | Dockerfile | mit | 1,900 |
# Copyright 2019 Google Inc. All Rights Reserved.
#
# 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 a... | adjackura/compute-image-tools | gce_vm_image_export.Dockerfile | Dockerfile | apache-2.0 | 755 |
# Use the official lightweight Python image.
# https://hub.docker.com/_/python
FROM python:3.8-slim
# Allow statements and log messages to immediately appear in the Knative logs
ENV PYTHONUNBUFFERED True
# Copy local code to the container image.
ENV APP_HOME /app
WORKDIR $APP_HOME
COPY . ./
# Install production depe... | GoogleCloudPlatform/transactional-microservice-examples | services/order-sync/Dockerfile | Dockerfile | apache-2.0 | 696 |
# Build:
# docker build -t meanjs/mean .
#
# Run:
# docker run -it meanjs/mean
#
# Compose:
# docker-compose up -d
FROM ubuntu:latest
MAINTAINER MEAN.JS
# Install Utilities
RUN apt-get update -q
RUN apt-get install -yqq wget aptitude htop vim git traceroute dnsutils curl ssh sudo tree tcpdump nano psmisc gcc make bui... | des-sw-III-003/des-sw-III-003 | Dockerfile | Dockerfile | mit | 1,730 |
FROM ruby:2.1.2
RUN bundle config --global frozen 1
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY Gemfile /usr/src/app/
COPY Gemfile.lock /usr/src/app/
RUN bundle install
| HyperCounter/web | Dockerfile | Dockerfile | mit | 180 |
FROM infoslack/buildpack-deps
MAINTAINER Daniel Romero <infoslack@gmail.com>
RUN wget -q -O - http://nginx.org/keys/nginx_signing.key | sudo apt-key add -
RUN echo "deb http://nginx.org/packages/ubuntu/ trusty nginx" >> /etc/apt/sources.list.d/nginx.list
RUN apt-get update && apt-get install -y nginx && rm -rf /var... | infoslack/docker-nginx | Dockerfile | Dockerfile | mit | 572 |
FROM alpine:3.12.0
RUN apk upgrade --no-cache && \
apk add --no-cache \
rsyslog \
rsyslog-hiredis \
rsyslog-snmp \
rsyslog-mysql \
rsyslog-pgsql \
rsyslog-tls \
&& \
:
COPY . /
VOLUME /var/run/rsyslog/dev
ENTRYPOINT ["/usr/sbin/entrypoint"]
EXPOSE 514/tcp
EXPOSE 514/u... | jumanjihouse/docker-rsyslog | src/Dockerfile | Dockerfile | mit | 323 |
# Dockerfile for redis-server.
FROM alpine:3.3
MAINTAINER Tim Tosi "timothee.tosi@gmail.com"
# Install build-essential equivalent & Install Redis.
RUN apk update \
&& apk add ca-certificates build-base \
&& update-ca-certificates \
&& apk add --no-cache build-base \
&& apk add ca-certificates linux-he... | TimTosi/mechanist | redis/Dockerfile | Dockerfile | mit | 2,364 |
# Provides NCBI BLAST+ binaries, mainly for use with Galaxy Project dockerised runners
FROM debian:wheezy
MAINTAINER Simon Belluzzo <simon@belluzzo.id.au>
RUN apt-get update && apt-get install -y --no-install-recommends \
curl \
python-minimal=2.7.3-4+deb7u1 \
&& rm -rf /var/lib/apt/lists/*
RUN mkdir /opt/blas... | simonalpha/blast-in-docker | ncbi-blast-2.2.27+/Dockerfile | Dockerfile | mit | 515 |
FROM suttang/gollum
MAINTAINER Philippe Delodder <lodder@delodder.be>
# Install asciidoc
RUN gem install asciidoc asciidoctor
| phdelodder/docker-gollum | Dockerfile | Dockerfile | mit | 129 |
FROM debian:jessie
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
libcurl4-openssl-dev \
libssl-dev \
jq \
&& rm -rf /var/lib/apt/lists/*
ENV LIBEVENT_VERSION 2.0.18-stable
ENV TRANSMISSION_VERSION 2.77
RUN buildDeps=' \
curl \
build-essential \
... | hdorio/docker-transmission | 2.77/Dockerfile | Dockerfile | mit | 2,164 |
FROM ubuntu:14.04.2
MAINTAINER Adnan Issadeen <spartakode@outlook.com>
RUN apt-get update && apt-get install wget curl sqlite3 vim software-properties-common python-software-properties -y --force-yes
RUN apt-add-repository ppa:git-core/ppa -y && apt-get update -y && apt-get install git -y
RUN mkdir /usr/src/node
WORKD... | spartakode/my-docker-repos | node/base/Dockerfile | Dockerfile | mit | 665 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen6x-ubuntu:disco-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... | nghiant2710/base-images | balena-base-images/python/nitrogen6x/ubuntu/disco/3.8.9/run/Dockerfile | Dockerfile | apache-2.0 | 4,067 |
# AUTOGENERATED FILE
FROM balenalib/parallella-ubuntu:xenial-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 keyserver.pgp.co... | nghiant2710/base-images | balena-base-images/node/parallella/ubuntu/xenial/14.16.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,918 |
# AUTOGENERATED FILE
FROM balenalib/apalis-imx6-ubuntu:xenial-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 ... | nghiant2710/base-images | balena-base-images/node/apalis-imx6/ubuntu/xenial/12.21.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,764 |
# AUTOGENERATED FILE
FROM balenalib/fincm3-debian:stretch-build
ENV NODE_VERSION 12.20.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/fincm3/debian/stretch/12.20.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,785 |
FROM maven:3.6.3-adoptopenjdk-15 AS MAVEN_TOOL_CHAIN
COPY pom.xml /tmp/
COPY . /tmp/
WORKDIR /tmp/
RUN mvn clean install
FROM adoptopenjdk/openjdk15:alpine-jre
WORKDIR /opt/aktin
COPY --from=MAVEN_TOOL_CHAIN /tmp/broker-client/target/*.jar ./lib/
COPY --from=MAVEN_TOOL_CHAIN /tmp/broker-client/target/lib ./lib/
COPY... | aktin/broker | docker/aktin-client/Dockerfile | Dockerfile | apache-2.0 | 1,283 |
# AUTOGENERATED FILE
FROM balenalib/nanopi-r2c-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: publ... | resin-io-library/base-images | balena-base-images/python/nanopi-r2c/debian/buster/3.10.2/build/Dockerfile | Dockerfile | apache-2.0 | 4,854 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-debian:bullseye-build
ENV NODE_VERSION 14.18.3
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserver keyserver.pgp.com --recv-keys "$key" ... | resin-io-library/base-images | balena-base-images/node/beaglebone-green/debian/bullseye/14.18.3/build/Dockerfile | Dockerfile | apache-2.0 | 2,791 |
# AUTOGENERATED FILE
FROM balenalib/orange-pi-zero-debian:bullseye-build
ENV NODE_VERSION 15.10.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/orange-pi-zero/debian/bullseye/15.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,795 |
# AUTOGENERATED FILE
FROM balenalib/bananapi-m1-plus-ubuntu:focal-run
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
ca-certificates \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu6... | resin-io-library/base-images | balena-base-images/dotnet/bananapi-m1-plus/ubuntu/focal/5.0-runtime/run/Dockerfile | Dockerfile | apache-2.0 | 2,562 |
# AUTOGENERATED FILE
FROM balenalib/surface-go-alpine:3.14-build
# remove several traces of python
RUN apk del python*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: public key "Simon McVit... | resin-io-library/base-images | balena-base-images/python/surface-go/alpine/3.14/3.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 4,843 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi3-64-fedora:35-build
ENV NODE_VERSION 12.22.9
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 ... | resin-io-library/base-images | balena-base-images/node/raspberrypi3-64/fedora/35/12.22.9/build/Dockerfile | Dockerfile | apache-2.0 | 2,752 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypicm4-ioboard-ubuntu:xenial-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 \
'... | resin-io-library/base-images | balena-base-images/golang/raspberrypicm4-ioboard/ubuntu/xenial/1.16.14/run/Dockerfile | Dockerfile | apache-2.0 | 2,339 |
FROM frolvlad/alpine-glibc
COPY chopper /usr/bin/chopper
ADD resources /resources
EXPOSE 8000
WORKDIR /
ENTRYPOINT ["chopper"]
| ruptivespatial/chopper | Dockerfile | Dockerfile | apache-2.0 | 128 |
# AUTOGENERATED FILE
FROM balenalib/nanopi-neo-air-ubuntu:hirsute-build
ENV GO_VERSION 1.16.14
RUN mkdir -p /usr/local/go \
&& curl -SLO "http://resin-packages.s3.amazonaws.com/golang/v$GO_VERSION/go$GO_VERSION.linux-armv7hf.tar.gz" \
&& echo "8a8e06b02a5e7339675cbbad9eb46a0db2cab7da21306de7c3a60d37a6a96022 go$GO_... | resin-io-library/base-images | balena-base-images/golang/nanopi-neo-air/ubuntu/hirsute/1.16.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,036 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.