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 |
|---|---|---|---|---|---|
# https://cloud.google.com/appengine/docs/standard/go/download?hl=ja
FROM python:2.7.15-alpine3.8
# Packages for go (go_appengine, glide)
RUN apk add --no-cache build-base git curl go glide chromium
# Packages for e2e
RUN apk add --no-cache yarn chromium chromium-chromedriver
## external packages
# nodejs & yarn
AR... | ikedam/gaetest | Dockerfile | Dockerfile | mit | 1,674 |
# The MIT License
#
# Copyright (c) 2016, Oleg Nenashev
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, mod... | oleg-nenashev/fusesoc-docker | fusesoc-icarus/Dockerfile | Dockerfile | mit | 3,103 |
FROM node
RUN mkdir /app
WORKDIR /app
RUN npm install -g yarn
RUN yarn global add nodemon
COPY ./server/package.json /app/package.json
RUN yarn install
COPY ./server/server.js /app/server.js
COPY ./server/bin /app/bin
COPY ./server/routes /app/routes
COPY ./frontend/dist /app/public
EXPOSE 3000
CMD [ "npm", "start" ... | Karel-Kroeze/coding-app | Dockerfile | Dockerfile | mit | 321 |
############################################################
# https://github.com/Kriegslustig/Docker-Meteorbase
#
# Based on ubuntu:latest
############################################################
FROM ubuntu:latest
MAINTAINER Kriegslustig
RUN apt-get upgrade && \
apt-get update && \
apt-get install -qqy ... | Kriegslustig/kriegslustig.me | Dockerfile | Dockerfile | mit | 729 |
FROM ubuntu
RUN apt-get update; \
apt-get install -y \
python python-pip \
python-numpy python-scipy \
build-essential python-dev python-setuptools \
libatlas-dev libatlas3gf-base
RUN update-alternatives --set libblas.so.3 \
/usr/lib/atlas-base/atlas/libblas.so.3; \
update-altern... | uwekamper/flutterspark | Dockerfile | Dockerfile | mit | 757 |
FROM nginx
# OS Update
ADD sources.list /etc/apt/sources.list
RUN apt-get update && apt-get -y install vim
# Nginx conf
ADD nginx.conf /etc/nginx/
ADD fcgi.conf /etc/nginx/
ADD servers.d/*.conf /etc/nginx/servers.d/
EXPOSE 80 | yisheng/docker-jobtong-dev | nginx/Dockerfile | Dockerfile | mit | 241 |
FROM vothanhkiet/alpine-s6-node:10.11.0
RUN apk add --update --no-cache curl make gcc g++ python libc6-compat && \
rm -rf /var/cache/apk/* /root/.npm /root/.node-gyp /tmp/* /var/tmp/*
| vothanhkiet/dockerfile-collections | alpine-s6-node-native/Dockerfile | Dockerfile | mit | 189 |
FROM ubuntu:16.04
ENV DEBIAN_FRONTEND noninteractive
# Prepare apt-get
RUN apt-get update && apt-get -y --no-install-recommends install software-properties-common
# Add Mraa Repository
RUN add-apt-repository ppa:mraa/mraa && \
# Update apt-get
apt-get -y update && \
# Install apt-utils
apt-get -y --no-instal... | sasmita/upm | Dockerfile | Dockerfile | mit | 3,721 |
FROM horgix/latex:latest
MAINTAINER Alexis Horgix Chotard <alexis.horgix.chotard@gmail.com>
RUN apt-get install -y wget unzip
RUN wget http://mirrors.ctan.org/macros/latex/contrib/moderncv.zip \
&& unzip moderncv.zip \
&& mv moderncv /usr/share/texlive/texmf-dist/
| Horgix/dockerfiles | moderncv/Dockerfile | Dockerfile | mit | 271 |
FROM ubuntu:trusty
RUN apt-get update
RUN apt-get install -yq ruby ruby-dev build-essential
RUN gem install --no-ri --no-rdoc bundler
ADD Gemfile /app/Gemfile
ADD Gemfile.lock /app/Gemfile.lock
RUN cd /app; bundle install
ADD . /app
EXPOSE 4567
WORKDIR /app
CMD ["bundle", "exec", "middleman", "server"] | oscarmcm/multas-api | docs/Dockerfile | Dockerfile | mit | 304 |
ARG BASE_IMAGE="alpine"
FROM $BASE_IMAGE
LABEL maintainer "Viktor Adam <rycus86@gmail.com>"
RUN apk --no-cache add python py2-pip
ADD requirements.txt /tmp/requirements.txt
RUN pip install -r /tmp/requirements.txt
ADD src /app
WORKDIR /app
ENTRYPOINT [ "python", "cli.py" ]
# add app info as environment variables... | rycus86/docker-pygen | Dockerfile | Dockerfile | mit | 420 |
FROM ubuntu:xenial
# install latest python and nodejs
RUN apt-get update && apt-get install -y \
software-properties-common \
curl
RUN add-apt-repository ppa:voronov84/andreyv
RUN curl -sL https://deb.nodesource.com/setup_6.x | bash -
# add yarn ppa
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-... | DXCanas/kolibri | docker/base.dockerfile | Dockerfile | mit | 1,266 |
FROM maven:3.3-jdk-8-onbuild
COPY ./entrypoint.sh /entrypoint.sh
EXPOSE 8080
ENTRYPOINT ["/entrypoint.sh"]
CMD ["mvn", "spring-boot:run"] | creativelikeadog/taxi-spring-boot | taxi-spring-boot/Dockerfile | Dockerfile | mit | 140 |
FROM scratch
MAINTAINER Parthiban Srinivasan <parthiban.srinivasan@gmail.com>
ADD testmicro testmicro
ENTRYPOINT ["/testmicro"]
EXPOSE 8080
| parthiban-srinivasan/goproj | Dockerfile | Dockerfile | cc0-1.0 | 146 |
# AUTOGENERATED FILE
FROM balenalib/spacely-tx2-fedora:32-build
ENV GO_VERSION 1.15.11
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \
&& echo "bfc8f07945296e97c6d28c7999d86b5cab51c7a87eb2b22ca6781c41a6bb6f2d go$GO_VERSION.linux-arm64.tar.gz" | s... | nghiant2710/base-images | balena-base-images/golang/spacely-tx2/fedora/32/1.15.11/build/Dockerfile | Dockerfile | apache-2.0 | 1,996 |
# AUTOGENERATED FILE
FROM balenalib/kitra710-ubuntu:cosmic-run
ENV NODE_VERSION 12.20.1
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com ... | nghiant2710/base-images | balena-base-images/node/kitra710/ubuntu/cosmic/12.20.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,912 |
# AUTOGENERATED FILE
FROM balenalib/nanopi-neo-air-alpine:3.10-run
ENV NODE_VERSION 15.10.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 \
6A010C51660... | nghiant2710/base-images | balena-base-images/node/nanopi-neo-air/alpine/3.10/15.10.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,029 |
# AUTOGENERATED FILE
FROM balenalib/asus-tinker-edge-t-fedora:34-run
ENV GO_VERSION 1.17.7
# 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 "a5aa1ed17d45ee1d5... | resin-io-library/base-images | balena-base-images/golang/asus-tinker-edge-t/fedora/34/1.17.7/run/Dockerfile | Dockerfile | apache-2.0 | 2,079 |
# AUTOGENERATED FILE
FROM balenalib/artik10-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 McVittie... | nghiant2710/base-images | balena-base-images/python/artik10/alpine/edge/2.7.18/build/Dockerfile | Dockerfile | apache-2.0 | 5,233 |
FROM oso-rhel7-ops-base:latest
# ___ ___ _ _ ___ ___ _ _____ ___ ___
# / __| __| \| | __| _ \ /_\_ _| __| \
# | (_ | _|| .` | _|| / / _ \| | | _|| |) |
# \___|___|_|\_|___|_|_\/_/_\_\_|_|___|___/_ _____
# | \ / _ \ | \| |/ _ \_ _| | __| \_ _|_ _|
# | |) | (_)... | twiest/openshift-tools | docker/oso-host-monitoring/rhel7/Dockerfile | Dockerfile | apache-2.0 | 5,965 |
# AUTOGENERATED FILE
FROM balenalib/fincm3-ubuntu:bionic-build
ENV GO_VERSION 1.14.13
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 "53c5236a76730f6487052fa1a629d6f5efdde6341cfc2e0544b0b28aefc27708 go$GO_VERSION.l... | nghiant2710/base-images | balena-base-images/golang/fincm3/ubuntu/bionic/1.14.13/build/Dockerfile | Dockerfile | apache-2.0 | 2,026 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen6xq2g-ubuntu:eoan-build
ENV GO_VERSION 1.14.13
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 "53c5236a76730f6487052fa1a629d6f5efdde6341cfc2e0544b0b28aefc27708 go$GO_VERS... | nghiant2710/base-images | balena-base-images/golang/nitrogen6xq2g/ubuntu/eoan/1.14.13/build/Dockerfile | Dockerfile | apache-2.0 | 2,029 |
# AUTOGENERATED FILE
FROM balenalib/parallella-hdmi-resin-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
... | nghiant2710/base-images | balena-base-images/python/parallella-hdmi-resin/alpine/3.12/3.6.12/run/Dockerfile | Dockerfile | apache-2.0 | 4,143 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi2-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 ... | resin-io-library/base-images | balena-base-images/openjdk/raspberrypi2/debian/bookworm/11-jre/build/Dockerfile | Dockerfile | apache-2.0 | 3,742 |
FROM golang:1.15 as build
# Add the local files to be sure we are building the local source code instead
# of downloading from GitHub. All other package dependencies will be downloaded
# from HEAD.
ADD . /go/src/github.com/m-lab/epoxy
ENV CGO_ENABLED 0
WORKDIR /go/src/github.com/m-lab/epoxy
RUN go get -t -v ./...
RUN ... | m-lab/epoxy | Dockerfile | Dockerfile | apache-2.0 | 927 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx2-debian:jessie-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" || \
g... | nghiant2710/base-images | balena-base-images/node/jetson-tx2/debian/jessie/15.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,783 |
# AUTOGENERATED FILE
FROM balenalib/surface-go-fedora:34-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.po... | nghiant2710/base-images | balena-base-images/node/surface-go/fedora/34/12.20.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,760 |
# AUTOGENERATED FILE
FROM balenalib/up-core-alpine:3.13-build
ENV GO_VERSION 1.16.14
# set up nsswitch.conf for Go's "netgo" implementation
# - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275
# - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf
RUN [ ! -e /etc/nsswitch.conf ] && ec... | resin-io-library/base-images | balena-base-images/golang/up-core/alpine/3.13/1.16.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,343 |
# AUTOGENERATED FILE
FROM balenalib/surface-go-fedora:33-run
ENV GO_VERSION 1.14.14
# 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-amd64.tar.gz" \
&& echo "6f1354c9040d65d1622b451f... | nghiant2710/base-images | balena-base-images/golang/surface-go/fedora/33/1.14.14/run/Dockerfile | Dockerfile | apache-2.0 | 2,088 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-gateway-debian:bullseye-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... | nghiant2710/base-images | balena-base-images/node/beaglebone-green-gateway/debian/bullseye/12.21.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,805 |
# 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, ... | GoogleCloudPlatform/gke-shift-left-cost | Dockerfile | Dockerfile | apache-2.0 | 1,166 |
# AUTOGENERATED FILE
FROM balenalib/blackboard-tx2-debian:bullseye-build
ENV NODE_VERSION 16.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" ||... | resin-io-library/base-images | balena-base-images/node/blackboard-tx2/debian/bullseye/16.14.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,785 |
# AUTOGENERATED FILE
FROM balenalib/via-vab820-quad-ubuntu:focal-build
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/via-vab820-quad/ubuntu/focal/6.0-aspnet/build/Dockerfile | Dockerfile | apache-2.0 | 3,206 |
# AUTOGENERATED FILE
FROM balenalib/orange-pi-one-debian:sid-build
ENV NODE_VERSION 16.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" || \
g... | resin-io-library/base-images | balena-base-images/node/orange-pi-one/debian/sid/16.14.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,778 |
# VERSION 0.4.0
# AUTHOR: Nicolas Lamirault <nicolas.lamirault@gmail.com>
# DESCRIPTION: portefaix/clair
FROM portefaix/base:3.2
MAINTAINER Nicolas Lamirault <nicolas.lamirault@gmail.com>
ENV VAULT_VERSION 0.4.0
RUN apk add --update build-base curl
RUN cd /tmp/ && \
mkdir /etc/vault && \
curl -LO ht... | portefaix/docker-vault | 1.0/Dockerfile | Dockerfile | apache-2.0 | 784 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-alpine:3.10-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/jetson-xavier/alpine/3.10/1.16.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,470 |
# AUTOGENERATED FILE
FROM balenalib/asus-tinker-board-s-ubuntu:focal-build
ENV NODE_VERSION 15.10.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 --key... | nghiant2710/base-images | balena-base-images/node/asus-tinker-board-s/ubuntu/focal/15.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,770 |
# escape=`
FROM mcr.microsoft.com/windows/servercore:ltsc2019
SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"]
ARG zip=zulu11.37.17-ca-jdk11.0.6-win_x64.zip
ARG uri=https://cdn.azul.com/zulu/bin
ARG hash=a9695617b8374bfa171f166951214965b1d1d08f43218db9a2a7... | carlossg/docker-maven | azulzulu-11-windowsservercore/Dockerfile | Dockerfile | apache-2.0 | 1,944 |
# AUTOGENERATED FILE
FROM balenalib/colibri-imx6dl-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 \
libicu57 \
liblttng-us... | nghiant2710/base-images | balena-base-images/dotnet/colibri-imx6dl/debian/buster/2.1-aspnet/build/Dockerfile | Dockerfile | apache-2.0 | 2,608 |
# Copyright (c) 2015-2016 Tigera, 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 applicabl... | quater/calico-containers | calico_node/Dockerfile | Dockerfile | apache-2.0 | 1,704 |
# AUTOGENERATED FILE
FROM balenalib/orange-pi-zero-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-ust... | nghiant2710/base-images | balena-base-images/dotnet/orange-pi-zero/debian/stretch/2.1-runtime/run/Dockerfile | Dockerfile | apache-2.0 | 2,555 |
# AUTOGENERATED FILE
FROM balenalib/imx7-var-som-alpine:3.10-run
ENV NODE_VERSION 15.7.0
ENV YARN_VERSION 1.22.4
# Install dependencies
RUN apk add --no-cache libgcc libstdc++ libuv \
&& apk add --no-cache libssl1.0 || apk add --no-cache libssl1.1
RUN buildDeps='curl' \
&& set -x \
&& for key in \
6A010C51660065... | nghiant2710/base-images | balena-base-images/node/imx7-var-som/alpine/3.10/15.7.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,025 |
# AUTOGENERATED FILE
FROM balenalib/odroid-xu4-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", s... | resin-io-library/base-images | balena-base-images/python/odroid-xu4/fedora/35/3.8.12/run/Dockerfile | Dockerfile | apache-2.0 | 2,433 |
# AUTOGENERATED FILE
FROM balenalib/up-squared-fedora:33-build
ENV NODE_VERSION 15.10.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/up-squared/fedora/33/15.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,760 |
# AUTOGENERATED FILE
FROM balenalib/ccimx8x-sbc-pro-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.... | nghiant2710/base-images | balena-base-images/golang/ccimx8x-sbc-pro/ubuntu/xenial/1.15.7/build/Dockerfile | Dockerfile | apache-2.0 | 2,004 |
# Set the base image to Ubuntu
FROM phusion/baseimage
MAINTAINER Moocher.io <admin@moocher.io>
ENV REFRESHED_AT 2016-08-21
RUN echo "deb-src http://archive.ubuntu.com/ubuntu xenial main" >> /etc/apt/sources.list
RUN sed 's/main$/main universe/' -i /etc/apt/sources.list
RUN DEBIAN_FRONTEND=noninteractive export LC_ALL... | moocherio/docker-nginx-openresty-moocherio | Dockerfile | Dockerfile | apache-2.0 | 1,989 |
# AUTOGENERATED FILE
FROM balenalib/jetson-nano-emmc-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... | nghiant2710/base-images | balena-base-images/python/jetson-nano-emmc/alpine/3.13/2.7.18/build/Dockerfile | Dockerfile | apache-2.0 | 5,286 |
# AUTOGENERATED FILE
FROM balenalib/odroid-u3+-fedora:34-run
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 keyserv... | resin-io-library/base-images | balena-base-images/node/odroid-u3+/fedora/34/12.22.9/run/Dockerfile | Dockerfile | apache-2.0 | 2,747 |
# AUTOGENERATED FILE
FROM balenalib/odroid-xu4-alpine:3.13-build
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 for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do ... | nghiant2710/base-images | balena-base-images/node/odroid-xu4/alpine/3.13/14.16.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,957 |
# AUTOGENERATED FILE
FROM balenalib/imx6ul-var-dart-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/imx6ul-var-dart/alpine/edge/3.8.9/build/Dockerfile | Dockerfile | apache-2.0 | 4,842 |
# AUTOGENERATED FILE
FROM balenalib/apalis-imx6-alpine:3.10-build
# remove several traces of python
RUN apk del python*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: public key "Simon McVi... | nghiant2710/base-images | balena-base-images/python/apalis-imx6/alpine/3.10/3.5.10/build/Dockerfile | Dockerfile | apache-2.0 | 4,840 |
FROM balenalib/aarch64-debian:jessie-build
LABEL io.balena.device-type="photon-nano"
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... | nghiant2710/base-images | balena-base-images/device-base/photon-nano/debian/jessie/build/Dockerfile | Dockerfile | apache-2.0 | 1,094 |
# AUTOGENERATED FILE
FROM balenalib/odroid-c1-ubuntu:xenial-build
ENV GO_VERSION 1.16
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 "5d2c637632fc23139c992e7f5adce1e46bccebd5a43fc90f797050ae71f46ab9 go$GO_VERSION.l... | nghiant2710/base-images | balena-base-images/golang/odroid-c1/ubuntu/xenial/1.16/build/Dockerfile | Dockerfile | apache-2.0 | 2,023 |
# AUTOGENERATED FILE
FROM balenalib/coral-dev-ubuntu:focal-build
ENV GO_VERSION 1.16
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \
&& echo "3770f7eb22d05e25fbee8fb53c2a4e897da043eb83c69b9a14f8d98562cd8098 go$GO_VERSION.linux-arm64.tar.gz" | sha... | nghiant2710/base-images | balena-base-images/golang/coral-dev/ubuntu/focal/1.16/build/Dockerfile | Dockerfile | apache-2.0 | 1,992 |
# AUTOGENERATED FILE
FROM balenalib/artik530-ubuntu:bionic-run
ENV GO_VERSION 1.15.11
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
&& apt-get... | nghiant2710/base-images | balena-base-images/golang/artik530/ubuntu/bionic/1.15.11/run/Dockerfile | Dockerfile | apache-2.0 | 2,354 |
# AUTOGENERATED FILE
FROM balenalib/via-vab820-quad-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/via-vab820-quad/debian/buster/3.1-aspnet/build/Dockerfile | Dockerfile | apache-2.0 | 3,133 |
FROM debian:jessie
MAINTAINER Jon Brouse dockerhub|github|twitter @jonbrouse
RUN apt-get update && \
apt-get install -y openvpn curl && \
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
EXPOSE 1194
ENTRYPOINT [ "openvpn" ]
CMD []
| jonbrouse/openvpn | Dockerfile | Dockerfile | apache-2.0 | 258 |
FROM buildpack-deps:jessie-scm
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
&& rm -rf /var/lib/apt/lists/*
ENV GOLANG_VERSION 1.5.2
ENV GOLANG_DOWNLOAD_URL https://golang.org/dl/go$GOLANG_VERSION.linux-amd64.tar.gz
ENV GOLANG_DOWNLOAD_SHA1 ca... | essentier/golang | 1.5/Dockerfile | Dockerfile | bsd-3-clause | 758 |
FROM electronuserland/electron-builder:latest
# libgnome-keyring-dev — to build keytar
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F9CB8DB0 && \
echo "deb http://ppa.launchpad.net/ubuntu-wine/ppa/ubuntu xenial main " | tee /etc/apt/sources.list.d/wine.list && \
dpkg --add-architecture i386 && \
apt-ke... | badams/electron-builder | docker/wine/Dockerfile | Dockerfile | mit | 804 |
FROM python:3.6
ENV TZ /usr/share/zoneinfo/US/Eastern
# Add Chrome PPA: https://www.ubuntuupdates.org/ppa/google_chrome
# https://docs.docker.com/engine/userguide/eng-image/dockerfile_best-practices/#using-pipes
RUN ["/bin/bash", "-c", "set -o pipefail && curl https://dl-ssl.google.com/linux/linux_signing_key.pub | a... | rlucioni/apartments | Dockerfile | Dockerfile | mit | 2,014 |
FROM centos:7
ARG PACKAGENAME
ARG PACKAGELOCATION
ARG PREVIEWSUFFIX=
ARG TESTLIST=/PowerShell/test/powershell/Modules/PackageManagement/PackageManagement.Tests.ps1,/PowerShell/test/powershell/engine/Module
ARG TESTDOWNLOADCOMMAND="git clone --recursive https://github.com/PowerShell/PowerShell.git"
# Install dependenc... | Cowmonaut/PowerShell | docker/tests/Templates/centos7/Dockerfile | Dockerfile | mit | 902 |
# AUTOGENERATED FILE
FROM balenalib/aio-3288c-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/aio-3288c/alpine/3.12/7-jre/run/Dockerfile | Dockerfile | apache-2.0 | 1,758 |
# This file describes the standard way to build Docker, using docker
#
# Usage:
#
# # Assemble the full dev environment. This is slow the first time.
# docker build -t docker .
#
# # Mount your source in an interactive container for quick testing:
# docker run -v `pwd`:/go/src/github.com/docker/docker --privileged -i -... | yummypeng/docker | Dockerfile | Dockerfile | apache-2.0 | 7,434 |
# AUTOGENERATED FILE
FROM balenalib/jetson-nano-2gb-devkit-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; \
... | nghiant2710/base-images | balena-base-images/openjdk/jetson-nano-2gb-devkit/alpine/3.13/8-jre/build/Dockerfile | Dockerfile | apache-2.0 | 1,775 |
FROM microsoft/aspnet:1.0.0-rc1-final
ADD . /app
WORKDIR /app/approot
ENTRYPOINT ["./web"] | AdrianDiaz81/DotNetSpain2016 | DotNet.CompartiMOSS/src/DotNet.CompartiMOSS/Dockerfile | Dockerfile | mit | 99 |
#
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/rpm/amd64/generate.sh"!
#
FROM fedora:25
RUN dnf -y upgrade
RUN dnf install -y @development-tools fedora-packager
RUN dnf install -y btrfs-progs-devel device-mapper-devel glibc-static libseccomp-devel libselinux-devel libtool-ltdl-devel pkgconfig selinux-policy sel... | gianarb/orbiter | vendor/github.com/docker/docker/contrib/builder/rpm/amd64/fedora-25/Dockerfile | Dockerfile | apache-2.0 | 626 |
FROM centos:6
# Get Java 8 (64-bit)
RUN yum install -y java-1.8.0-openjdk-devel
# Get other build utils
RUN yum install -y cmake wget tar
# djinni requires llvm with libstdc++ 4.9 features,
# e.g. experimental/optional, so we need a modern
# compiler. Let's get gcc 4.9 from Scientific Linux Cern
RUN yum install -y... | DEGoodmanWilson/djinni | test-suite/java/docker/centos_6/Dockerfile | Dockerfile | apache-2.0 | 1,145 |
FROM mongo:3.4.2
| 844196/mean | container/db/Dockerfile | Dockerfile | mit | 17 |
FROM orchardup/python:2.7
ADD . /code
WORKDIR /code
RUN apt-get update
RUN apt-get install -y libpq-dev python-dev
RUN apt-get install -y git-core
RUN pip install -r requirements.txt
ENV PYTHONUNBUFFERED 1
| LandRegistry/public-titles | Dockerfile | Dockerfile | mit | 206 |
FROM fluent/fluent-bit:1.8
COPY fluent-bit.conf /fluent-bit/etc/fluent.conf
COPY myparsers.conf /fluent-bit/etc/myparsers.conf
EXPOSE 10224
EXPOSE 10514/udp
ENV TO_HOST logserver.example.com
ENV APP_NAME noname
CMD ["/fluent-bit/bin/fluent-bit", "-c", "/fluent-bit/etc/fluent.conf"]
| bungoume/log-sender | Dockerfile | Dockerfile | mit | 287 |
# GENERATED FROM Dockerfile.template-curl
FROM vicamo/debian:bullseye-armel
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
netbase \
wget \
&& rm -rf /var/lib/apt/lists/*
RUN set -ex; \
if ! command -v gpg > /dev/null; then \
apt-get update; \
apt-get inst... | vicamo/docker-buildpack-deps | bullseye/armel/curl/Dockerfile | Dockerfile | mit | 420 |
FROM ubuntu:14.04
# Install required packages
RUN apt-get update -q \
&& DEBIAN_FRONTEND=noninteractive apt-get install -qy --no-install-recommends \
ca-certificates \
openssh-server \
wget
# Download & Install GitLab
# If the Omnibus package version below is outdated please contribute a merge r... | SkyWei/gitlabhq | docker/Dockerfile | Dockerfile | mit | 1,273 |
# https://hub.docker.com/_/python/
FROM python:3.10-alpine
WORKDIR /opt/index-digest
# copy files required to run "pip install"
ADD setup.py README.md ./
ADD ./indexdigest/__init__.py ./indexdigest/__init__.py
# installs mysql_config and pip dependencies
# https://github.com/gliderlabs/docker-alpine/issues/181
RUN a... | macbre/index-digest | Dockerfile | Dockerfile | mit | 858 |
FROM ruby:2.2.4
MAINTAINER @ojacques
RUN gem install bundler rake
ENV app /app
RUN git clone https://github.com/gjtorikian/repository-sync.git $app
WORKDIR $app
ADD . $app
RUN bundle install
| gjtorikian/repository-sync | Dockerfile | Dockerfile | mit | 194 |
FROM ruby:2.3.1
RUN apt-get update && apt-get install -y \
build-essential \
rsync \
libpq-dev \
nodejs
RUN mkdir /little-brother
WORKDIR /little-brother
ADD Gemfile /little-brother/Gemfile
ADD Gemfile.lock /little-brother/Gemfile.lock
ENV BUNDLE_PATH /bundle_cache
# RUN bundle install
ADD . /littl... | vlymar/little-brother | Dockerfile | Dockerfile | mit | 331 |
FROM alpine:latest
MAINTAINER Dennis Winter (dennis.winter@neofonie.de) | Neofonie GmbH
RUN apk update && \
apk add apache2 bash
EXPOSE 80
RUN mkdir -p /run/apache2
COPY httpd.conf /etc/apache2/httpd.conf
COPY index.html /var/www/localhost/htdocs/
COPY entrypoint.sh /
ADD root /
# HEALTHCHECK --interval=5m -... | Neofonie/DockerBasics | neofonie-helloworld/Dockerfile | Dockerfile | mit | 399 |
FROM node:8.10.0-alpine
RUN apk add --no-cache bind-tools
WORKDIR /app
| thredup/docker-node | 8.10.0/Dockerfile | Dockerfile | mit | 71 |
FROM alpine:3.6
RUN apk update && apk add --update nodejs nodejs-npm && apk add -u yarn
WORKDIR "/src"
| bogdaniel/Synthesis | docker/npm/Dockerfile | Dockerfile | mit | 105 |
# AUTOGENERATED FILE
FROM balenalib/photon-nano-ubuntu:xenial-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.gz"... | resin-io-library/base-images | balena-base-images/golang/photon-nano/ubuntu/xenial/1.16.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,002 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-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 63C7CC9... | nghiant2710/base-images | balena-base-images/python/beaglebone-green/debian/stretch/3.9.4/build/Dockerfile | Dockerfile | apache-2.0 | 4,863 |
# AUTOGENERATED FILE
FROM balenalib/imx8mm-var-dart-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 ]... | nghiant2710/base-images | balena-base-images/golang/imx8mm-var-dart/alpine/3.13/1.14.13/run/Dockerfile | Dockerfile | apache-2.0 | 2,474 |
# Dockerfile for building Debian-based image, via Ansible playbooks.
#
# @see http://docs.ansible.com/ansible/intro_installation.html#running-from-source
#
# Version 1.0
#
# pull base image
FROM debian:8
MAINTAINER William Yeh <william.pjyeh@gmail.com>
#ENV APT_LIST apt-list
COPY . /tmp
ONBUILD COPY . /tmp
O... | William-Yeh/docker-ansible | mini-debian8/Dockerfile | Dockerfile | apache-2.0 | 572 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi400-64-ubuntu:eoan-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 --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.p... | nghiant2710/base-images | balena-base-images/node/raspberrypi400-64/ubuntu/eoan/14.15.4/run/Dockerfile | Dockerfile | apache-2.0 | 2,917 |
# AUTOGENERATED FILE
FROM balenalib/vab820-quad-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: p... | nghiant2710/base-images | balena-base-images/python/vab820-quad/debian/bullseye/2.7.18/build/Dockerfile | Dockerfile | apache-2.0 | 5,234 |
# AUTOGENERATED FILE
FROM balenalib/coral-dev-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 McVitt... | nghiant2710/base-images | balena-base-images/python/coral-dev/alpine/3.12/3.5.10/build/Dockerfile | Dockerfile | apache-2.0 | 4,838 |
# AUTOGENERATED FILE
FROM balenalib/ts4900-ubuntu:cosmic-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 k... | nghiant2710/base-images | balena-base-images/python/ts4900/ubuntu/cosmic/3.9.4/build/Dockerfile | Dockerfile | apache-2.0 | 4,827 |
# AUTOGENERATED FILE
FROM balenalib/kitra520-ubuntu:xenial-run
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# install python depende... | resin-io-library/base-images | balena-base-images/python/kitra520/ubuntu/xenial/3.7.12/run/Dockerfile | Dockerfile | apache-2.0 | 4,065 |
# AUTOGENERATED FILE
FROM balenalib/hummingboard2-alpine:3.10-build
ENV NODE_VERSION 15.10.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/hummingboard2/alpine/3.10/15.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,960 |
FROM busybox:1.25
MAINTAINER Leandro Lugaresi <leandro.l.lugaresi@gmail.com>
COPY user-server user-server
ENTRYPOINT ["/user-server"] | leandro-lugaresi/grpc-realtime-chat | server/cmd/user-server/Dockerfile | Dockerfile | apache-2.0 | 133 |
# AUTOGENERATED FILE
FROM balenalib/revpi-core-3-fedora:30-run
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
RUN dnf install -y \
python3-pip \
python3-dbus \
&& dnf clean all
# install "virtualenv",... | nghiant2710/base-images | balena-base-images/python/revpi-core-3/fedora/30/3.6.12/run/Dockerfile | Dockerfile | apache-2.0 | 2,435 |
# AUTOGENERATED FILE
FROM balenalib/coral-dev-debian:bullseye-run
ENV NODE_VERSION 12.20.1
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserver... | nghiant2710/base-images | balena-base-images/node/coral-dev/debian/bullseye/12.20.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,941 |
# AUTOGENERATED FILE
FROM balenalib/intel-edison-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 McV... | nghiant2710/base-images | balena-base-images/python/intel-edison/alpine/3.11/2.7.18/build/Dockerfile | Dockerfile | apache-2.0 | 5,282 |
FROM microsoft/dotnet:latest
COPY . /app
WORKDIR /app
RUN ["dotnet", "restore"]
RUN ["dotnet", "build"]
EXPOSE 80/tcp
CMD ["dotnet", "run", "--server.urls", "http://*:80"]
| degrim/aspnet-core-ADFS | src/ADFS-OAuth-Sample/Dockerfile | Dockerfile | apache-2.0 | 178 |
FROM centos:6
MAINTAINER Shaun Crampton <shaun@tigera.io>
ENV STREAM el6
ARG UID
ARG GID
ADD install-centos-build-deps install-centos-build-deps
RUN ./install-centos-build-deps
# rpmbuild requires the current user to exist inside the container, copy in
# some user/group entries calculated by the makefile.
# use `--f... | matthewdupre/felix | docker-build-images/centos6-build.Dockerfile | Dockerfile | apache-2.0 | 511 |
# AUTOGENERATED FILE
FROM balenalib/spacely-tx2-debian:bookworm-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/spacely-tx2/debian/bookworm/6.0-sdk/run/Dockerfile | Dockerfile | apache-2.0 | 2,916 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi400-64-alpine:3.15-build
# Default to UTF-8 file.encoding
ENV LANG C.UTF-8
# add a simple script that can auto-detect the appropriate JAVA_HOME value
# based on whether the JDK or only the JRE is installed
RUN { \
echo '#!/bin/sh'; \
echo 'set -e'; \
echo; \
echo... | resin-io-library/base-images | balena-base-images/openjdk/raspberrypi400-64/alpine/3.15/8-jre/build/Dockerfile | Dockerfile | apache-2.0 | 1,770 |
# AUTOGENERATED FILE
FROM balenalib/jetson-nano-emmc-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 pyth... | nghiant2710/base-images | balena-base-images/python/jetson-nano-emmc/debian/bullseye/3.8.9/run/Dockerfile | Dockerfile | apache-2.0 | 4,103 |
# AUTOGENERATED FILE
FROM balenalib/i386-alpine:3.10-run
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 buildDeps='curl' \
&& set -x \
&& for key in \
6A010C5166006599AA17F0... | nghiant2710/base-images | balena-base-images/node/i386/alpine/3.10/15.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,017 |
# AUTOGENERATED FILE
FROM balenalib/smarc-px30-debian:bullseye-build
ENV NODE_VERSION 16.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" || \
... | resin-io-library/base-images | balena-base-images/node/smarc-px30/debian/bullseye/16.14.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,781 |
# 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,... | google/fuzzbench | benchmarks/libpcap_fuzz_both/Dockerfile | Dockerfile | apache-2.0 | 1,078 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.