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/generic-amd64-fde-fedora:35-run
ENV GO_VERSION 1.16.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 "f4f5f02eb6809ac5b... | resin-io-library/base-images | balena-base-images/golang/generic-amd64-fde/fedora/35/1.16.14/run/Dockerfile | Dockerfile | apache-2.0 | 2,095 |
# AUTOGENERATED FILE
FROM balenalib/orange-pi-one-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/orange-pi-one/fedora/36/3.7.12/run/Dockerfile | Dockerfile | apache-2.0 | 2,436 |
FROM node:13.7.0-alpine
LABEL maintainer="devops@rpsgroup.com"
COPY bin /opt/gliders/bin
COPY public /opt/gliders/public
COPY routes /opt/gliders/routes
COPY views /opt/gliders/views
COPY app.js package.json /opt/gliders/
# install
WORKDIR /opt/gliders
RUN yarn
# don't run as root
USER node
ENV NODE_ENV production
... | ioos/gliders | Dockerfile | Dockerfile | bsd-2-clause | 345 |
FROM fedora:24
MAINTAINER opus@xiph.org
# Linux build.
RUN dnf update -y --setopt=deltarpm=0
RUN dnf install -y git gcc make wget xz
RUN dnf install -y autoconf automake libtool pkgconfig
# mingw cross build.
RUN dnf install -y mingw32-gcc zip
RUN dnf clean all
RUN git clone https://git.xiph.org/opusfile.git
WORKD... | SmartWalkieOrg/opusfile | mingw/Dockerfile | Dockerfile | bsd-3-clause | 548 |
# Copyright 2015, Google Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the f... | bjori/grpc | tools/jenkins/grpc_interop_node/Dockerfile | Dockerfile | bsd-3-clause | 2,559 |
FROM linuxkit/alpine:87a0cd10449d72f374f950004467737dbf440630 AS build
ENV TROUSERS_COMMIT de57f069ef2297d6a6b3a0353e217a5a2f66e444
ENV TPM_TOOLS_COMMIT bdf9f1bc8f63cd6fc370c2deb58d03ac55079e84
RUN apk add --no-cache --initdb \
automake \
autoconf \
gettext \
gettext-dev \
git \
pkgconfig \
... | radu-matei/linuxkit | pkg/tss/Dockerfile | Dockerfile | apache-2.0 | 2,008 |
FROM balenalib/armv7hf-debian:sid-run
LABEL io.balena.device-type="raspberrypi2"
RUN apt-get update && apt-get install -y --no-install-recommends \
less \
kmod \
nano \
net-tools \
ifupdown \
iputils-ping \
i2c-tools \
usbutils \
&& rm -rf /var/lib/apt/lists/*
RUN [ ! -d /.balena/messages ] && mkdir ... | nghiant2710/base-images | balena-base-images/device-base/raspberrypi2/debian/sid/run/Dockerfile | Dockerfile | apache-2.0 | 1,085 |
# teting out busybox
#
# VERSION 0.0.1
FROM progrium/busybox
MAINTAINER Edward Raigosa (wenlock) <wenlock@hp.com>
ENV ROOT_PASS changeme
ENV NOTVISIBLE "in users profile"
RUN opkg-install curl bash git \
openssh-server python python-dev python-distribute python-pip
RUN pip install virtualenv
RUN pi... | nevermosby/myhome | opt/docker/busybox-py/Dockerfile | Dockerfile | apache-2.0 | 960 |
FROM crystallang/crystal:1.1.0
WORKDIR /lucky
COPY shard.lock shard.lock
COPY shard.yml shard.yml
RUN shards install
COPY config config
COPY src src
COPY run.sh run.sh
ENV GC_MARKERS 1
ENV LUCKY_ENV production
RUN shards build bench --release --no-debug
ENV DATABASE_URL postgres://benchmarkdbuser:benchmarkdbpass@t... | sumeetchhetri/FrameworkBenchmarks | frameworks/Crystal/lucky/lucky.dockerfile | Dockerfile | bsd-3-clause | 422 |
# Copyright 2016 The Kubernetes 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 ... | cdrage/kedge | vendor/github.com/openshift/origin/cmd/service-catalog/go/src/github.com/kubernetes-incubator/service-catalog/contrib/build/user-broker/Dockerfile | Dockerfile | apache-2.0 | 688 |
#
# NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh"
#
# PLEASE DO NOT EDIT IT DIRECTLY.
#
FROM alpine:3.14
# dependencies required for running "phpize"
# these get automatically installed and removed by "docker-php-ext-*" (unless they're already installed)
ENV PHPIZE_DEPS \
autoconf \
dpkg-dev dpkg \
... | docker-library/php | 8.0-rc/alpine3.14/cli/Dockerfile | Dockerfile | mit | 6,352 |
FROM openresty/openresty:alpine
MAINTAINER Jiangzhi Xie <xiejiangzhi@gmail.com>
COPY ./nginx /openresty
RUN rm -rf /openresty/*_temp
RUN rm -rf /openresty/logs/*
EXPOSE 80
ENTRYPOINT ["/usr/local/openresty/bin/openresty", "-g", "daemon off;", "-p", "/openresty"]
| tiantiantouyan/ttty-gateway | Dockerfile | Dockerfile | mit | 269 |
# DESCRIPTION: Run text-based game dunnet in a container
# AUTHOR: Jessie Frazelle <jess@linux.com>
# COMMENTS:
# This file describes how to build dunnet in a container with all
# dependencies installed.
# Tested on Debian Jessie
# USAGE:
# # Download dunnet Dockerfile
# wget https://raw.githubusercontent.com/jess... | saneax/dockerfiles | dunnet/Dockerfile | Dockerfile | mit | 827 |
FROM patavee/scipy-matplotlib-opencv
MAINTAINER Patavee Charnvivit <patavee@gmail.com>
RUN apt-get update && apt-get install -y \
curl \
git \
iputils-ping \
nano \
net-tools \
build-essential \
openssh-client && \
rm -rf /var/lib/apt/lists/*
COPY requirements.txt /tmp/
RUN pip install -... | patavee/cherrypy-scipy-matplotlib-opencv | Dockerfile | Dockerfile | mit | 390 |
FROM buildpack-deps:focal-curl
ENV DEBIAN_FRONTEND noninteractive
RUN curl -L https://yarnpkg.com/latest.tar.gz | tar xvz && mv yarn-* /yarn && ln -s /yarn/bin/yarn /usr/bin/yarn
RUN apt-get -qq update && apt-get -qq dist-upgrade && \
# add repo for git-lfs
curl -s https://packagecloud.io/install/repositories/git... | loopline-systems/electron-builder | docker/base/Dockerfile | Dockerfile | mit | 1,317 |
# Latest
FROM php:5.6-apache
MAINTAINER Kotaimen <kotaimen.c@gmail.com>
ENV DEBIAN_FRONTEND noninteractive
#RUN set -x \
# && apt-get -qq update \
# && apt-get install -yq --no-install-recommends pgbouncer \
# && apt-get purge -y --auto-remove \
# ... | bravoman/docker-php-apache-pgbouncer | docker/php56/Dockerfile | Dockerfile | mit | 6,375 |
FROM ruby:alpine as builder
RUN apk update \
&& apk add --virtual build-dependencies \
build-base \
&& true
RUN gem install rubocop -v 0.64.0
RUN gem install rubocop-rspec -v 1.32.0
RUN rm -rf /usr/local/bundle/cache/*.gem \
&& find /usr/local/bundle/gems/ -name "*.c" -delete \
&& find /usr/local/b... | Unibeautify/docker-beautifiers | rubocop/Dockerfile | Dockerfile | mit | 555 |
FROM base/archlinux
MAINTAINER Spencer Rinehart <anubis@overthemonkey.com>
COPY php/php-5.3.15-1-x86_64.pkg.tar.xz /tmp/php-5.3.15-1-x86_64.pkg.tar.xz
RUN pacman --upgrade --noconfirm --noprogressbar /tmp/php-5.3.15-1-x86_64.pkg.tar.xz
ADD php.ini /etc/php/php.ini
CMD ["php"]
| francis826/docker-php-minimal | php-5.3.15/Dockerfile | Dockerfile | mit | 282 |
FROM python:2.7-slim
ADD . /src
WORKDIR /src
#ENV DEBIAN_FRONTEND noninteractive
#RUN apt-get update && \
# apt-get -y install gcc mono-mcs && \
# rm -rf /var/lib/apt/lists/*
RUN pip install -r requirements.txt
CMD python ./bot/app.py
| eedeebee/usher-bot | Dockerfile | Dockerfile | mit | 241 |
FROM ubuntu:20.04
MAINTAINER dreamcat4 <dreamcat4@gmail.com>
ARG _clean="rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*"
ARG _apt_clean="eval apt-get clean && $_clean"
ARG DEBIAN_FRONTEND=noninteractive
# 1. Set your local timezone
RUN mkdir -p /config/.link/etc/ && echo "Europe/London" > /config/.link/etc/timezone
... | dreamcat4/docker-images | tvh/config/Dockerfile | Dockerfile | mit | 1,830 |
FROM logicify/java8
ENV TOMCAT_VERSION 8.0.23
USER app
RUN cd /srv && \
(curl -L http://mirrors.ibiblio.org/apache/tomcat/tomcat-8/v$TOMCAT_VERSION/bin/apache-tomcat-$TOMCAT_VERSION.tar.gz | gunzip -c | tar x) \
&& ln -s /srv/apache-tomcat-$TOMCAT_VERSION /srv/apache-tomcat \
&& rm -fR /srv/apache-tomcat/webap... | Logicify/docker-tomcat | Dockerfile | Dockerfile | mit | 471 |
FROM ubuntu:16.04
MAINTAINER daixtrose
LABEL \
URL="https://github.com/daixtrose/continuous-integration-demo"
RUN apt-get update && apt-get install -y --no-install-recommends apt-utils
RUN DEBIAN_FRONTEND=noninteractive \
apt-get install -y apt-utils software-properties-common \
&& add-apt-repository pp... | daixtrose/continuous-integration-demo | docker/xenial-boost-gcc-clang-dev/Dockerfile | Dockerfile | mit | 1,065 |
FROM golang:onbuild
ENV PORT 8000
EXPOSE 8000
| rmg/eagle | Dockerfile | Dockerfile | mit | 46 |
FROM ubuntu:trusty-20160624
MAINTAINER josh@lospi.net
RUN echo 'APT::Install-Recommends 0;' >> /etc/apt/apt.conf.d/01norecommends \
&& echo 'APT::Install-Suggests 0;' >> /etc/apt/apt.conf.d/01norecommends \
&& apt-get update \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y vim.tiny wget sudo net-tools ca-cert... | JLospinoso/docker-ubuntu | Dockerfile | Dockerfile | mit | 369 |
FROM microsoft/aspnet
#install npm in docker image
RUN apt-get update && apt-get install -y curl
RUN curl -sL https://deb.nodesource.com/setup | bash -
RUN apt-get install -y nodejs
#install bower and grunt
RUN npm install -g bower
RUN npm install -g grunt-bower-cli
RUN npm install -g grunt
RUN npm install -g grunt-c... | marrrcin/aspnet5-dockerfile | Dockerfile | Dockerfile | mit | 447 |
FROM golang:buster AS build
WORKDIR /src
COPY . .
RUN make
FROM scratch AS bin
COPY --from=build /src/bin/remco /remco
| HeavyHorst/remco | Dockerfile | Dockerfile | mit | 122 |
FROM orchardup/python:2.7
RUN pip install Flask srvlookup
RUN pip install uwsgi
ADD . /code
WORKDIR /code
CMD uwsgi --http 0.0.0.0:8080 --wsgi-file find_hack.py --callable app --master --no-default-app -p 10 -R 5
| mesosphere/hackers-at-berkeley | find_hack/Dockerfile | Dockerfile | apache-2.0 | 213 |
# AUTOGENERATED FILE
FROM balenalib/etcher-pro-ubuntu:bionic-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... | nghiant2710/base-images | balena-base-images/python/etcher-pro/ubuntu/bionic/3.8.6/build/Dockerfile | Dockerfile | apache-2.0 | 4,831 |
FROM frolvlad/alpine-oraclejdk8:slim
VOLUME /tmp
ADD example101-v1.jar example101.jar
RUN sh -c 'touch /example101.jar'
ENV JAVA_OPTS=""
ENTRYPOINT [ "sh", "-c", "java $JAVA_OPTS -Djava.security.egd=file:/dev/./urandom -jar /example101.jar" ] | sambathl/example101 | src/main/docker/Dockerfile | Dockerfile | apache-2.0 | 242 |
# AUTOGENERATED FILE
FROM balenalib/odroid-ux3-ubuntu:xenial-build
ENV GO_VERSION 1.17.7
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 "e4f33e7e78f96024d30ff6bf8d2b86329fc04df1b411a8bd30a82dbe60f408ba go$GO_VERSIO... | resin-io-library/base-images | balena-base-images/golang/odroid-ux3/ubuntu/xenial/1.17.7/build/Dockerfile | Dockerfile | apache-2.0 | 2,028 |
# AUTOGENERATED FILE
FROM balenalib/colibri-imx6-ubuntu:focal-run
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# install python depe... | resin-io-library/base-images | balena-base-images/python/colibri-imx6/ubuntu/focal/3.9.7/run/Dockerfile | Dockerfile | apache-2.0 | 4,065 |
# AUTOGENERATED FILE
FROM balenalib/artik520-alpine:edge-run
# remove several traces of python
RUN apk del python*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# install python dependencies
RUN apk add -... | resin-io-library/base-images | balena-base-images/python/artik520/alpine/edge/3.10.2/run/Dockerfile | Dockerfile | apache-2.0 | 4,126 |
# AUTOGENERATED FILE
FROM balenalib/nanopc-t4-debian:sid-build
ENV NODE_VERSION 15.7.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 --... | nghiant2710/base-images | balena-base-images/node/nanopc-t4/debian/sid/15.7.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,774 |
# AUTOGENERATED FILE
FROM balenalib/generic-amd64-fde-debian:sid-build
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: ... | resin-io-library/base-images | balena-base-images/python/generic-amd64-fde/debian/sid/3.6.15/build/Dockerfile | Dockerfile | apache-2.0 | 4,862 |
FROM fabric8/java-jboss-openjdk8-jdk:1.5.1
ENV JAVA_APP_JAR api-gateway.jar
ENV AB_ENABLED off
ENV AB_JOLOKIA_AUTH_OPENSHIFT true
ENV JAVA_OPTIONS -Xmx256m -Djava.security.egd=file:///dev/./urandom
EXPOSE 8080
ADD target/api-gateway.jar /deployments/
| redhat-helloworld-msa/api-gateway | Dockerfile | Dockerfile | apache-2.0 | 254 |
# AUTOGENERATED FILE
FROM balenalib/revpi-connect-alpine:edge-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/revpi-connect/alpine/edge/1.16.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,470 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypicm4-ioboard-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 ... | resin-io-library/base-images | balena-base-images/python/raspberrypicm4-ioboard/debian/buster/3.6.15/run/Dockerfile | Dockerfile | apache-2.0 | 4,103 |
# AUTOGENERATED FILE
FROM balenalib/imx7-var-som-alpine:edge-build
ENV GO_VERSION 1.15.7
# set up nsswitch.conf for Go's "netgo" implementation
# - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275
# - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf
RUN [ ! -e /etc/nsswitch.conf ] &... | nghiant2710/base-images | balena-base-images/golang/imx7-var-som/alpine/edge/1.15.7/build/Dockerfile | Dockerfile | apache-2.0 | 2,339 |
# AUTOGENERATED FILE
FROM balenalib/photon-xavier-nx-alpine:3.13-run
ENV GO_VERSION 1.16.3
# set up nsswitch.conf for Go's "netgo" implementation
# - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275
# - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf
RUN [ ! -e /etc/nsswitch.conf ]... | nghiant2710/base-images | balena-base-images/golang/photon-xavier-nx/alpine/3.13/1.16.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,473 |
# AUTOGENERATED FILE
FROM balenalib/nanopi-neo-air-alpine:3.11-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 \
6A010C51660... | nghiant2710/base-images | balena-base-images/node/nanopi-neo-air/alpine/3.11/14.16.1/run/Dockerfile | Dockerfile | apache-2.0 | 3,029 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen6x-alpine:3.10-build
# remove several traces of python
RUN apk del python*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: public key "Simon McVit... | nghiant2710/base-images | balena-base-images/python/nitrogen6x/alpine/3.10/3.7.9/build/Dockerfile | Dockerfile | apache-2.0 | 4,837 |
# AUTOGENERATED FILE
FROM balenalib/npe-x500-m3-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/npe-x500-m3/ubuntu/xenial/12.21.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,764 |
# AUTOGENERATED FILE
FROM balenalib/parallella-hdmi-resin-ubuntu:focal-build
ENV GO_VERSION 1.17.7
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 "e4f33e7e78f96024d30ff6bf8d2b86329fc04df1b411a8bd30a82dbe60f408ba go... | resin-io-library/base-images | balena-base-images/golang/parallella-hdmi-resin/ubuntu/focal/1.17.7/build/Dockerfile | Dockerfile | apache-2.0 | 2,037 |
# AUTOGENERATED FILE
FROM balenalib/cl-som-imx8-debian:buster-build
ENV NODE_VERSION 17.6.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/cl-som-imx8/debian/buster/17.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,776 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-nx-devkit-emmc-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 \
... | nghiant2710/base-images | balena-base-images/dotnet/jetson-xavier-nx-devkit-emmc/debian/bullseye/5.0-sdk/run/Dockerfile | Dockerfile | apache-2.0 | 2,963 |
# AUTOGENERATED FILE
FROM balenalib/nuc-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 ] && echo 'ho... | nghiant2710/base-images | balena-base-images/golang/nuc/alpine/3.13/1.14.13/run/Dockerfile | Dockerfile | apache-2.0 | 2,469 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-black-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 a... | nghiant2710/base-images | balena-base-images/python/beaglebone-black/alpine/edge/3.5.10/run/Dockerfile | Dockerfile | apache-2.0 | 4,138 |
# AUTOGENERATED FILE
FROM balenalib/generic-amd64-fde-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 63C7C... | resin-io-library/base-images | balena-base-images/python/generic-amd64-fde/debian/bullseye/3.10.2/build/Dockerfile | Dockerfile | apache-2.0 | 4,872 |
# AUTOGENERATED FILE
FROM balenalib/ts4900-debian:buster-build
ENV NODE_VERSION 15.7.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 --... | nghiant2710/base-images | balena-base-images/node/ts4900/debian/buster/15.7.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,781 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx1-alpine:3.10-run
ENV GO_VERSION 1.15.6
# set up nsswitch.conf for Go's "netgo" implementation
# - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275
# - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf
RUN [ ! -e /etc/nsswitch.conf ] && ec... | nghiant2710/base-images | balena-base-images/golang/jetson-tx1/alpine/3.10/1.15.6/run/Dockerfile | Dockerfile | apache-2.0 | 2,467 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx1-debian:buster-run
ENV NODE_VERSION 12.21.0
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/jetson-tx1/debian/buster/12.21.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,938 |
#####
## Image for running THREDDS
#####
ARG ESGF_REPOSITORY_BASE=esgfdeploy
ARG ESGF_IMAGES_VERSION=latest
FROM ${ESGF_REPOSITORY_BASE}/jdk:${ESGF_IMAGES_VERSION}
# Install dependencies
RUN yum makecache && \
yum install -y git ant ivy && \
yum clean all
# Build esgf-node-manager
ARG ESGF_NODE_MANAGER_VERSI... | ESGF/esgf-docker | images/search-builder/Dockerfile | Dockerfile | apache-2.0 | 1,470 |
FROM jeanblanchard/java:8
MAINTAINER Christoph Hochreiner <ch.hochreiner@gmail.com>
ADD target/dataProvider.jar app.jar
RUN apk --update add imagemagick && \
rm -rf /var/cache/apk/*
RUN sh -c 'touch /app.jar'
ENV JAVA_OPTS=""
ENTRYPOINT [ "sh", "-c", "java $JAVA_OPTS -Djava.security.egd=file:/dev/./urandom -jar /ap... | visp-streaming/dataProvider | Dockerfile | Dockerfile | apache-2.0 | 329 |
# AUTOGENERATED FILE
FROM balenalib/intel-nuc-fedora:32-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-amd64.tar.gz" \
&& echo "8825b72d74b14e82b54ba3697... | nghiant2710/base-images | balena-base-images/golang/intel-nuc/fedora/32/1.15.11/run/Dockerfile | Dockerfile | apache-2.0 | 2,087 |
# AUTOGENERATED FILE
FROM balenalib/orange-pi-one-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 de... | nghiant2710/base-images | balena-base-images/python/orange-pi-one/ubuntu/xenial/3.5.10/run/Dockerfile | Dockerfile | apache-2.0 | 4,074 |
FROM public.ecr.aws/docker/library/fluentd:v1.14.0-1.0
COPY fluent.conf /fluentd/etc/
| aws/amazon-ecs-agent | misc/fluentd/Dockerfile | Dockerfile | apache-2.0 | 87 |
# AUTOGENERATED FILE
FROM balenalib/bananapi-m1-plus-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/bananapi-m1-plus/debian/stretch/3.7.9/build/Dockerfile | Dockerfile | apache-2.0 | 4,863 |
# AUTOGENERATED FILE
FROM balenalib/odroid-xu4-ubuntu:focal-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/odroid-xu4/ubuntu/focal/3.8.6/build/Dockerfile | Dockerfile | apache-2.0 | 4,829 |
#
# THIS FILE IS AUTOGENERATED; SEE "contrib/builder/deb/aarch64/generate.sh"!
#
FROM aarch64/ubuntu:trusty
RUN apt-get update && apt-get install -y apparmor bash-completion btrfs-tools build-essential cmake curl ca-certificates debhelper dh-apparmor dh-systemd git libapparmor-dev libdevmapper-dev pkg-config vim-comm... | duglin/docker | contrib/builder/deb/aarch64/ubuntu-trusty/Dockerfile | Dockerfile | apache-2.0 | 645 |
# AUTOGENERATED FILE
FROM balenalib/nuc-debian:jessie-run
ENV NODE_VERSION 10.23.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 keyserv... | nghiant2710/base-images | balena-base-images/node/nuc/debian/jessie/10.23.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,938 |
# AUTOGENERATED FILE
FROM balenalib/surface-go-fedora:34-build
ENV GO_VERSION 1.15.7
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-amd64.tar.gz" \
&& echo "0d142143794721bb63ce6c8a6180c4062bcf8ef4715e7d6d6609f3a8282629b3 go$GO_VERSION.linux-amd64.tar.gz" | sha... | nghiant2710/base-images | balena-base-images/golang/surface-go/fedora/34/1.15.7/build/Dockerfile | Dockerfile | apache-2.0 | 2,008 |
FROM balenalib/aarch64-ubuntu:bionic-run
LABEL io.balena.device-type="jetson-xavier-nx-devkit"
RUN echo "deb https://repo.download.nvidia.com/jetson/common r32.6 main" >> /etc/apt/sources.list.d/nvidia.list \
&& echo "deb https://repo.download.nvidia.com/jetson/t194 r32.6 main" >> /etc/apt/sources.list.d/nvidia.list... | resin-io-library/base-images | balena-base-images/device-base/jetson-xavier-nx-devkit/ubuntu/bionic/run/Dockerfile | Dockerfile | apache-2.0 | 1,539 |
# Creates pseudo distributed hadoop 2.7.2 in ubuntu
# This dockerfile is adapted from seqeunceiq/hadoop-docker files
FROM ubuntu:trusty
MAINTAINER Prasanth Jayachandran
USER root
# install dev tools
RUN apt-get update
RUN apt-get install -y curl tar openssh-server openssh-client rsync python-software-properties apt... | LaurenSpiegel/docker-hadoop | Dockerfile | Dockerfile | apache-2.0 | 4,559 |
FROM balenalib/armv7hf-fedora:33-build
LABEL io.balena.device-type="beagleboard-xm"
RUN dnf install -y \
less \
nano \
net-tools \
usbutils \
gnupg \
i2c-tools \
&& dnf clean all
RUN [ ! -d /.balena/messages ] && mkdir -p /.balena/messages; echo $'Here are a few details about this Docker image (For more ... | resin-io-library/base-images | balena-base-images/device-base/beagleboard-xm/fedora/33/build/Dockerfile | Dockerfile | apache-2.0 | 1,002 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-nx-devkit-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 ... | nghiant2710/base-images | balena-base-images/python/jetson-xavier-nx-devkit/ubuntu/disco/3.9.1/run/Dockerfile | Dockerfile | apache-2.0 | 4,080 |
FROM public.ecr.aws/j1r0q0g6/notebooks/notebook-servers/codeserver:master-434b10ab
USER root
# args - software versions
ARG CODESERVER_PYTHON_VERSION=2021.5.842923320
ARG MINIFORGE_ARCH="x86_64"
# renovate: datasource=github-tags depName=conda-forge/miniforge versioning=loose
ARG MINIFORGE_VERSION=4.10.1-4
ARG PIP_V... | kubeflow/kubeflow | components/example-notebook-servers/codeserver-python/Dockerfile | Dockerfile | apache-2.0 | 2,285 |
FROM registry.camunda.com/camunda-ci-base-ubuntu:latest
ENV PACKER_VERSION=0.8.6 \
CHEF_DK_VERSION=0.8.1-1 \
OUTPUT_DIR=/packer-output
RUN save-env.sh PACKER_VERSION CHEF_DK_VERSION OUTPUT_DIR
# allow everyone to write to OUTPUT_DIR
RUN mkdir $OUTPUT_DIR && \
chmod 777 $OUTPUT_DIR
# mark OUTPUT_DIR as vo... | camunda-ci/camunda-docker-qemu-packer | Dockerfile | Dockerfile | apache-2.0 | 1,073 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-ubuntu:focal-run
ENV GO_VERSION 1.14.13
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
&& ... | nghiant2710/base-images | balena-base-images/golang/beaglebone-green/ubuntu/focal/1.14.13/run/Dockerfile | Dockerfile | apache-2.0 | 2,360 |
FROM ubuntu:14.04
ENV LANG en_US.UTF-8
ENV CONFIGURE_OPTS --disable-install-rdoc
ENV JRUBY_OPTS --2.0
ENV DEBIAN_FRONTEND noninteractive
# --no-install-recommends to avoid installing fuse (unsupported in docker < 1.0)
RUN apt-get update && \
apt-get install --no-install-recommends -y wget build-essential ca-cert... | zooniverse/docker-ruby | jruby-9.0.5.0/Dockerfile | Dockerfile | apache-2.0 | 765 |
FROM centos:centos7
MAINTAINER Alfredo Matas "amatas@gmail.com"
RUN yum -y install java-1.7.0-openjdk-headless && \
yum clean all
# Define default command.
CMD ["/bin/bash"]
| amatas/docker-java | openjdk-7/Dockerfile | Dockerfile | apache-2.0 | 181 |
# AUTOGENERATED FILE
FROM balenalib/astro-tx2-fedora:31-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 ha.poo... | nghiant2710/base-images | balena-base-images/node/astro-tx2/fedora/31/12.22.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,752 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen6xq2g-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 de... | resin-io-library/base-images | balena-base-images/python/nitrogen6xq2g/debian/buster/3.6.15/run/Dockerfile | Dockerfile | apache-2.0 | 4,094 |
FROM linuxkit/alpine:86cd4f51b49fb9a078b50201d892a3c7973d48ec AS mirror
RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/
RUN apk add --no-cache --initdb -p /out \
alpine-baselayout \
busybox \
iproute2 \
jq \
musl
RUN rm -rf /out/etc/apk /out/lib/apk /out/var/cache
FROM linuxkit/alpine:8... | yankcrime/linuxkit | test/pkg/ns/Dockerfile | Dockerfile | apache-2.0 | 1,080 |
## how to run
## docker run -t -p <port> -v /var/run/docker.sock:/docker.sock -v <figapp>:/app larrycai/fig
FROM ubuntu:latest
MAINTAINER Larry Cai "larry.caiyu@gmail.com"
ENV REFREST_AT 20141015
RUN apt-get update && apt-get install -y curl make
RUN \
curl -L https://get.docker.io/builds/Linux/x86_64/... | larrycai/docker-images | fig/Dockerfile | Dockerfile | bsd-3-clause | 742 |
# Copyright 2015, Google Inc.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are
# met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the f... | arkmaxim/grpc | tools/dockerfile/test/php_jessie_x64/Dockerfile | Dockerfile | bsd-3-clause | 2,581 |
FROM ubuntu:14.04
# update system
RUN apt-get update
RUN apt-get -y --force-yes upgrade
RUN apt-get -y --force-yes autoclean
RUN apt-get -y --force-yes autoremove --PURGE
# create non-root user
RUN useradd -m casperbox
# install wget
RUN apt-get install -y --force-yes wget
# install nodejs
RUN wget http://nodejs.or... | mirovarga/casperjs-docker | Dockerfile | Dockerfile | mit | 1,383 |
FROM nubit/base
RUN apt-get install -y wget
RUN mkdir -p /code
RUN wget https://nubits.com/sites/default/files/assets/nud-0.4.2-test3 -O /code/nud
RUN sha1sum /code/nud | grep 5c3289eb10b0f1ae15adad91ad8ba183e95612fb
RUN chmod +x /code/nud
| duoduosys/Duoduocoin2 | src/test/containers/old/0.4.2/Dockerfile | Dockerfile | mit | 240 |
#
# 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... | massakam/pulsar | pulsar-client-cpp/pkg/deb/Dockerfile | Dockerfile | apache-2.0 | 3,473 |
FROM docker.io/openjdk:8-jre
MAINTAINER Hygieia@capitalone.com
RUN mkdir /hygieia /hygieia/config
COPY *.jar /hygieia/
COPY properties-builder.sh /hygieia/
WORKDIR /hygieia/
VOLUME ["/hygieia/logs"]
ENV PROP_FILE /hygieia/config/application.properties
CMD ./properties-builder.sh &&\
java -jar jira-feature-col... | tabladrum/Hygieia | collectors/feature/jira/docker/Dockerfile | Dockerfile | apache-2.0 | 368 |
# 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 u... | jpeach/mesos | support/mesos-build/ubuntu-16.04-arm.dockerfile | Dockerfile | apache-2.0 | 2,099 |
# AUTOGENERATED FILE
FROM balenalib/ccimx8x-sbc-pro-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 'di... | nghiant2710/base-images | balena-base-images/openjdk/ccimx8x-sbc-pro/alpine/3.12/7-jre/run/Dockerfile | Dockerfile | apache-2.0 | 1,764 |
FROM rust-arm-unknown-linux-gnueabihf
ENV CC_arm_unknown_linux_gnueabihf=arm-unknown-linux-gnueabihf-gcc \
CARGO_TARGET_ARM_UNKNOWN_LINUX_GNUEABIHF_LINKER=arm-unknown-linux-gnueabihf-gcc
| inejge/rustup.rs | ci/docker/arm-unknown-linux-gnueabihf/Dockerfile | Dockerfile | apache-2.0 | 192 |
FROM ubuntu:precise
run apt-get install -y curl build-essential git-core
# Install Go (this is copied from the docker Dockerfile)
run curl -s https://go.googlecode.com/files/go1.1.1.linux-amd64.tar.gz | tar -v -C /usr/local -xz
env PATH /usr/local/go/bin:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin
e... | catalyst-zero/docker-registry | contrib/golang_impl/Dockerfile | Dockerfile | apache-2.0 | 643 |
FROM java:openjdk-8u45-jre
MAINTAINER Sebastien Pujadas http://pujadas.net
ENV SONAR_RUNNER_VERSION 2.4
ENV SONAR_RUNNER_HOME /opt/sonar-runner-${SONAR_RUNNER_VERSION}
ENV SONAR_RUNNER_PACKAGE sonar-runner-dist-${SONAR_RUNNER_VERSION}.zip
ENV HOME ${SONAR_RUNNER_HOME}
WORKDIR /opt
RUN wget http://repo1.maven.org/mav... | reedflinch/docker-ci-tool-stack | sonar-runner/Dockerfile | Dockerfile | mit | 1,080 |
#
# Build
# docker build -t chamerling/dockerhub2slack .
#
# Run
# docker run -d -p 3000:3000 -e "SLACK_WEBHOOK=http://YOUR_INCOMING_WEBHOOK" chamerling/dockerhub2slack
FROM node:0.10.36-slim
MAINTAINER Christophe Hamerling <chamerling@linagora.com>
COPY package.json /var/www/package.json
RUN cd /var/www && npm insta... | chamerling/dockerhub2slack | Dockerfile | Dockerfile | mit | 391 |
FROM ubuntu:utopic
MAINTAINER Gianluca Costa <gianluca@gianlucacosta.info>
ENTRYPOINT ["/usr/sbin/PortAgent"]
CMD ["7070"]
ADD https://github.com/giancosta86/MiniSum/releases/download/v1.0/PortAgent /usr/sbin/PortAgent
RUN ["chmod", "500", "/usr/sbin/PortAgent"]
| giancosta86/MiniSum | docker/PortAgent/Dockerfile | Dockerfile | mit | 268 |
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
RUN mkdir /app
COPY . .
CMD [ "bash" ]
| michaelrosejr/pyaos6 | Dockerfile | Dockerfile | mit | 155 |
FROM coinvault/client-base:latest
MAINTAINER Dan Gershony - CoinVault <dan@coinvault.io>
# dependencies required to run the daemon
RUN apt-get update \
&& apt-get install -y git \
&& apt-get install -y build-essential libtool autotools-dev automake \
&& apt-get install -y pkg-config libssl-dev libevent-dev bsdmai... | CoinVault/Nako | docker/namecoin/Dockerfile | Dockerfile | mit | 875 |
FROM sierratecnologia/nodejs-with-android-sdk
# Installs Cordova
# Forces a platform add in order to preload libraries
ENV CORDOVA_VERSION 4.0.1
RUN npm install -g npm && \
npm install -g cordova@${CORDOVA_VERSION} && \
cd /tmp && \
cordova create fakeapp && \
cd /tmp/fakeapp && \
cordova platform ... | ricardorsierra/dockerfiles | cordova/4.0.1/Dockerfile | Dockerfile | mit | 417 |
FROM ubuntu:16.04
ENV LANG="en_US.UTF-8" \
LC_ALL="en_US.UTF-8" \
LANGUAGE="en_US.UTF-8" \
TERM="xterm" \
DEBIAN_FRONTEND="noninteractive" \
SYMFONY_ALLOW_APPDEV=1 \
NODE_VERSION=6.9.4 \
COMPOSER_ALLOW_SUPERUSER=1
EXPOSE 80
WORKDIR /app
RUN apt-get update -q && \
apt-get install -qy s... | dan89/tab- | docker/dev/Dockerfile | Dockerfile | mit | 2,074 |
FROM scratch
MAINTAINER Sope Shen "shenshouer51@gmail.com"
EXPOSE 30001
COPY simple_request /
CMD ["/simple_request"] | shenshouer/simple_request | Dockerfile | Dockerfile | mit | 119 |
FROM python:alpine
RUN apk --update add build-base jpeg-dev zlib-dev postgresql-dev linux-headers
COPY requirements.txt /app/
RUN pip3 install -r /app/requirements.txt
RUN mkdir -p /media/
CMD /app/uwsgi.sh
| horizon-institute/chariot | src/app/Dockerfile | Dockerfile | mit | 211 |
FROM encoflife/virtuoso:7.2.0
COPY wordnet-subset.nt /usr/local/var/lib/virtuoso/db/wordnet-subset.nt
COPY special-chars.nt /usr/local/var/lib/virtuoso/db/special-chars.nt
COPY continents.rdf /usr/local/var/lib/virtuoso/db/continents.rdf
COPY agricultureProducts.xml /usr/local/var/lib/virtuoso/db/agricultureProducts.x... | CLARIAH/virtuoso-quad-log | example-virtuoso-server/Dockerfile | Dockerfile | mit | 1,400 |
FROM alpine:3.4
MAINTAINER info@signalsciences.com
# groff, less is needed since some help pages "aws s3 help" require it -- why??
RUN set -ex \
&& apk add --update python python-dev py-pip gcc libc-dev groff less \
&& pip install awscli \
&& apk del python-dev gcc libc-dev
ENTRYPOINT [ "/usr/bin/aws" ]
| signalsciences/docker-cmds | aws/Dockerfile | Dockerfile | mit | 319 |
# Go cross compiler (xgo): Base cross-compilation layer
# Copyright (c) 2014 Péter Szilágyi. All rights reserved.
#
# Released under the MIT license.
FROM sillydong/xgo-centos-base
MAINTAINER Péter Szilágyi <peterke@gmail.com>
RUN \
export ROOT_DIST=https://storage.googleapis.com/golang/go1.10.2.linux-amd64.tar.gz... | sillydong/xgo-centos | docker/go-1.10.2/Dockerfile | Dockerfile | mit | 450 |
RUN SUDO_FORCE_REMOVE=yes apt-get purge -y git wget sudo
RUN rm -rf /var/lib/apt/lists/*
RUN apt-get autoremove -y
RUN apt-get clean
RUN cd
RUN rm -rf /osquery
| cbdowell/microbe-docker | examples/recipes/additional-dockerfile-instructions-to-clean-up-image.dockerfile | Dockerfile | mit | 162 |
# AUTOGENERATED FILE
FROM balenalib/parallella-hdmi-resin-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 \
6A010... | nghiant2710/base-images | balena-base-images/node/parallella-hdmi-resin/alpine/3.10/15.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,034 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-pocket-debian:bullseye-build
ENV GO_VERSION 1.15.8
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 "bde22202576c3920ff5646fb1d19877cedc19501939d6ccd7b16ff89071abd0a go$... | nghiant2710/base-images | balena-base-images/golang/beaglebone-pocket/debian/bullseye/1.15.8/build/Dockerfile | Dockerfile | apache-2.0 | 2,039 |
# AUTOGENERATED FILE
FROM balenalib/nuc-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 --no-c... | resin-io-library/base-images | balena-base-images/python/nuc/alpine/3.14/3.7.12/run/Dockerfile | Dockerfile | apache-2.0 | 4,128 |
# AUTOGENERATED FILE
FROM balenalib/edison-alpine:3.14-build
ENV GO_VERSION 1.17.7
# set up nsswitch.conf for Go's "netgo" implementation
# - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275
# - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf
RUN [ ! -e /etc/nsswitch.conf ] && echo... | resin-io-library/base-images | balena-base-images/golang/edison/alpine/3.14/1.17.7/build/Dockerfile | Dockerfile | apache-2.0 | 2,333 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.