code stringlengths 2 1.05M | repo_name stringlengths 5 101 | path stringlengths 4 991 | language stringclasses 3
values | license stringclasses 5
values | size int64 2 1.05M |
|---|---|---|---|---|---|
FROM centos:6.7
#install remi
RUN yum -y install epel-release
RUN yum -y install wget
RUN wget -P /etc/yum.repos.d http://rpms.famillecollet.com/enterprise/remi.repo
#install php
RUN yum -y --enablerepo=remi,remi-php56 install php php-common
#install composer
RUN curl -sS https://getcomposer.org/installer | php; mv ... | niisan-tokyo/log_experioment | niisan-tokyo/Dockerfile | Dockerfile | mit | 809 |
# Builds a Docker image for SciPy with Jupyter Notebook.
#
# It can be found at:
# https://hub.docker.com/r/compdatasci/scipy-notebook
#
# Authors:
# Xiangmin Jiao <xmjiao@gmail.com>
FROM compdatasci/base
LABEL maintainer "Xiangmin Jiao <xmjiao@gmail.com>"
# Install scipy, sympy, and pandas
USER root
WORKDIR /tmp
... | compdatasci/dockerfiles | scipy-jupyter/Dockerfile | Dockerfile | mit | 475 |
FROM ubuntu:latest
ARG redis_version=5.0.8
ARG redis_home=/opt/redis
WORKDIR ${redis_home}
RUN mkdir -p ${redis_home}
RUN cd /opt && \
apt-get update && \
apt-get install -y vim \
sudo \
curl \
gcc \
make && \
ap... | kazuhira-r/dockerfiles | redis-cluster/Dockerfile | Dockerfile | mit | 1,272 |
FROM alpine:3.9
ARG BUILD_DATE
ARG VCS_REF
LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.vcs-url="https://github.com/phpearth/docker-php.git" \
org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.schema-version="1.0" \
org.label-schema.vendor="PHP.earth" \
org.label-s... | php-earth/docker-php | docker/7.3-litespeed.Dockerfile | Dockerfile | mit | 2,070 |
FROM nginx
MAINTAINER Octoblu <docker@octoblu.com>
EXPOSE 80
COPY . /usr/share/nginx/html
| octoblu/vote-octoblu-com | Dockerfile | Dockerfile | mit | 91 |
FROM ubuntu:bionic
ENV LANG=en_US.UTF-8
ENV TZ=UTC
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN \
apt update && \
apt upgrade -y && \
apt install -y --allow-unauthenticated \
locales \
ca-certificates tzdata python2.7 netcat htop less curl libmysqlcl... | andriyg76/docker | python2.7-bionic-nonginx/Dockerfile | Dockerfile | mit | 743 |
FROM ubuntu:14.04
MAINTAINER Johann Saunier <johann_27@hotmail.fr>
ENV DEBIAN_FRONTEND noninteractive
RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv 0xcbcb082a1bb943db
RUN echo "deb http://mariadb.mirror.iweb.com/repo/10.0/ubuntu `lsb_release -cs` main" > /etc/apt/sources.list.d/mariadb.list
RUN ap... | ProPheT777/real_time_bidirectional_notification-symfony2-redis-websocket-pubsub | infra/notification/mariadb/Dockerfile | Dockerfile | mit | 809 |
FROM ubuntu:xenial
MAINTAINER Peter Evans <pete.evans@gmail.com>
ENV OSRM_VERSION 5.13.0
# Let the container know that there is no TTY
ENV DEBIAN_FRONTEND noninteractive
# Install packages
RUN apt-get -y update \
&& apt-get install -y -qq --no-install-recommends \
build-essential \
cmake \
curl \
c... | peter-evans/osrm-backend-docker | archive/1.10/Dockerfile | Dockerfile | mit | 1,295 |
FROM laincloud/centos-lain
RUN mkdir -p $GOPATH/src/github.com/laincloud
ADD . $GOPATH/src/github.com/laincloud/deployd
RUN cd $GOPATH/src/github.com/laincloud/deployd && go build -v -a -tags netgo -installsuffix netgo -o deployd
RUN mv $GOPATH/src/github.com/laincloud/deployd/deployd /usr/bin/
| laincloud/deployd | Dockerfile | Dockerfile | mit | 320 |
# About shadowsocks of Docker
#
# Version:1.0.1
FROM ubuntu:14.04
MAINTAINER Dubu Qingfeng <1135326346@qq.com>
ENV REFRESHED_AT 2015-06-05
RUN apt-get -qq update && \
apt-get install -q -y wget build-essential python-pip python-m2crypto && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
RUN pip install... | izuolan/dockerfiles | shadowsocks-ubuntu/single-user/Dockerfile | Dockerfile | mit | 861 |
FROM python:2.7-alpine
WORKDIR /usr/src/app
RUN pip install requests && apk add --no-cache curl
COPY snipe.py /usr/src/app
ENTRYPOINT ["python", "-u", "snipe.py"] | giubil/Pokemongo-bot-scripts | pokemongomap-snipe/Dockerfile | Dockerfile | mit | 166 |
FROM kbase/kbase:sdkbase2.latest
MAINTAINER KBase Developer [Dylan Chivian (DCChivian@lbl.gov)]
# -----------------------------------------
# In this section, you can install any system dependencies required
# to run your App. For instance, you could place an apt-get update or
# install line here, a git checkout to d... | dcchivian/kb_gblocks | Dockerfile | Dockerfile | mit | 930 |
# Pull base image
FROM node:6.11.0
MAINTAINER Venkata krishna "vkvenkat94@gmail.com"
# Copy to work directory
ADD . ./badgeit-front
# Move to work directory
WORKDIR ./badgeit-front
# Install app dependencies
RUN ["npm", "install"]
# Binds to port 8080
EXPOSE 8080
CMD ["npm", "start"] | argonlaser/badgeit-front | Dockerfile | Dockerfile | mit | 291 |
FROM tboquet/the7hc5workeralp
MAINTAINER Thomas Boquet <thomas.boquet@hec.ca>
CMD ["celery", "worker", "-A", "alp.backend.keras_backend", "-Q", "keras", "-l", "INFO", "--maxtasksperchild=1", "--autoscale=6,1"]
| tboquet/okeydockey | the7hc5workeralpk/Dockerfile | Dockerfile | mit | 212 |
FROM mcr.microsoft.com/dotnet/core/aspnet:2.2-stretch-slim
WORKDIR /app
COPY . .
ENTRYPOINT ["dotnet", "AbpODataDemo.Web.Host.dll"]
| aspnetboilerplate/sample-odata | AbpODataDemo-Core-vNext/aspnet-core/src/AbpODataDemo.Web.Host/Dockerfile | Dockerfile | mit | 134 |
FROM golang:1.7.1-wheezy
RUN apt-get update \
&& apt-get install -y \
mysql-server \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /go/src/github.com/meta-closure/migo
COPY . .
CMD go test -v .
| meta-closure/migo | Dockerfile | Dockerfile | mit | 219 |
FROM centos:centos7
MAINTAINER Bin Liu <liubin0329@gmail.com>
# for ruby
RUN yum install -y wget tar gcc g++ make automake autoconf curl-devel openssl-devel zlib-devel httpd-devel apr-devel apr-util-devel sqlite-devel
RUN cd /tmp \
&& wget http://cache.ruby-lang.org/pub/ruby/2.2/ruby-2.2.2.tar.gz \
&& tar zx... | liubin/workshop-China-pub | example-2/Dockerfile | Dockerfile | mit | 584 |
FROM python:3.8-alpine
# update apk repo
RUN echo "http://dl-4.alpinelinux.org/alpine/v3.14/main" >> /etc/apk/repositories && \
echo "http://dl-4.alpinelinux.org/alpine/v3.14/community" >> /etc/apk/repositories
# install chromedriver
RUN apk update
RUN apk add chromium chromium-chromedriver
| joyzoursky/docker-python-chromedriver | py-alpine/3.8-alpine/Dockerfile | Dockerfile | mit | 298 |
# AlpineLinux with a glibc-2.23 and Oracle Java 8
FROM tomaer/alpine:edge-gmt8-aliyun
MAINTAINER tomaer <i@tomaer.com>
# Anastas Dancha <anapsix@random.io>
# thanks to Vladimir Krivosheev <develar@gmail.com> aka @develar for smaller image
# and Victor Palma <palma.victor@gmail.com> aka @devx for pointing it out
# Jav... | tomaer/docker-oracle-java | X86/8/gmt8-aliyun/121b13/standard/server-jre/Dockerfile | Dockerfile | mit | 3,719 |
FROM centurylink/apache-php:latest
MAINTAINER CenturyLink
# Install packages
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get -y upgrade && \
DEBIAN_FRONTEND=noninteractive apt-get -y install supervisor pwgen && \
apt-get -y install mysql-client && \
apt-get -y install postgresql-client
# Download v... | CenturyLinkLabs/docker-drupal | Dockerfile | Dockerfile | apache-2.0 | 877 |
# AUTOGENERATED FILE
FROM balenalib/generic-amd64-fde-fedora:33-build
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
RUN dnf install -y \
python3-pip \
python3-dbus \
&& dnf clean all
# install "virtu... | resin-io-library/base-images | balena-base-images/python/generic-amd64-fde/fedora/33/3.7.12/build/Dockerfile | Dockerfile | apache-2.0 | 2,460 |
# Copyright 2014 IBM
#
# 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,... | myhong0/SEC-ASP-myhong1023-2117 | Dockerfile | Dockerfile | apache-2.0 | 643 |
FROM kollaglue/fedora-rdo-base
MAINTAINER Dan Radez <dradez@redhat.com>
RUN yum -y install \
openstack-utils \
openstack-glance \
python-keystoneclient \
mariadb; yum clean all
RUN mkdir /opt/glance
COPY config-glance.sh /opt/glance/config-glance.sh
| jlabocki/superhappyfunshow | docker/glance/glance-base/Dockerfile | Dockerfile | apache-2.0 | 257 |
# AUTOGENERATED FILE
FROM balenalib/apalis-imx6q-ubuntu:eoan-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-g... | nghiant2710/base-images | balena-base-images/golang/apalis-imx6q/ubuntu/eoan/1.15.11/run/Dockerfile | Dockerfile | apache-2.0 | 2,354 |
# AUTOGENERATED FILE
FROM balenalib/colibri-imx6dl-ubuntu:xenial-run
ENV NODE_VERSION 15.6.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/colibri-imx6dl/ubuntu/xenial/15.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,920 |
# AUTOGENERATED FILE
FROM balenalib/n510-tx2-debian:jessie-run
ENV GO_VERSION 1.14.14
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
&& apt-get... | nghiant2710/base-images | balena-base-images/golang/n510-tx2/debian/jessie/1.14.14/run/Dockerfile | Dockerfile | apache-2.0 | 2,325 |
# AUTOGENERATED FILE
FROM balenalib/firefly-rk3288-debian:bookworm-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/firefly-rk3288/debian/bookworm/3.6.15/build/Dockerfile | Dockerfile | apache-2.0 | 4,862 |
# AUTOGENERATED FILE
FROM balenalib/nanopi-neo-air-fedora:30-build
ENV NODE_VERSION 15.6.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver ha... | nghiant2710/base-images | balena-base-images/node/nanopi-neo-air/fedora/30/15.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,759 |
# AUTOGENERATED FILE
FROM balenalib/npe-x500-m3-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 McVi... | nghiant2710/base-images | balena-base-images/python/npe-x500-m3/alpine/edge/3.6.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,840 |
# AUTOGENERATED FILE
FROM balenalib/artik10-alpine:3.11-run
ENV NODE_VERSION 14.16.0
ENV YARN_VERSION 1.22.4
# Install dependencies
RUN apk add --no-cache libgcc libstdc++ libuv \
&& apk add --no-cache libssl1.0 || apk add --no-cache libssl1.1
RUN buildDeps='curl' \
&& set -x \
&& for key in \
6A010C5166006599AA... | nghiant2710/base-images | balena-base-images/node/artik10/alpine/3.11/14.16.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,022 |
# AUTOGENERATED FILE
FROM balenalib/var-som-mx6-ubuntu:bionic-run
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# install python depe... | nghiant2710/base-images | balena-base-images/python/var-som-mx6/ubuntu/bionic/3.8.9/run/Dockerfile | Dockerfile | apache-2.0 | 4,070 |
# AUTOGENERATED FILE
FROM balenalib/colibri-imx6-debian:bookworm-run
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# install python d... | resin-io-library/base-images | balena-base-images/python/colibri-imx6/debian/bookworm/3.6.15/run/Dockerfile | Dockerfile | apache-2.0 | 4,097 |
# Copyright 2019 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, s... | GoogleCloudPlatform/selkies-examples | unigine-heaven/images/unigine-heaven/Dockerfile | Dockerfile | apache-2.0 | 938 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-fedora:36-build
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
RUN dnf install -y \
python3-pip \
python3-dbus \
&& dnf clean all
# install "virtualen... | resin-io-library/base-images | balena-base-images/python/jetson-xavier/fedora/36/3.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,441 |
# AUTOGENERATED FILE
FROM balenalib/vab820-quad-alpine:3.13-build
ENV NODE_VERSION 15.6.0
ENV YARN_VERSION 1.22.4
# Install dependencies
RUN apk add --no-cache libgcc libstdc++ libuv \
&& apk add --no-cache libssl1.0 || apk add --no-cache libssl1.1
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do ... | nghiant2710/base-images | balena-base-images/node/vab820-quad/alpine/3.13/15.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,956 |
# AUTOGENERATED FILE
FROM balenalib/photon-nano-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 depen... | nghiant2710/base-images | balena-base-images/python/photon-nano/ubuntu/disco/3.9.1/run/Dockerfile | Dockerfile | apache-2.0 | 4,068 |
# AUTOGENERATED FILE
FROM balenalib/genericx86-64-ext-ubuntu:focal-build
ENV NODE_VERSION 15.6.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyser... | nghiant2710/base-images | balena-base-images/node/genericx86-64-ext/ubuntu/focal/15.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,769 |
# AUTOGENERATED FILE
FROM balenalib/solidrun-imx6-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 ... | resin-io-library/base-images | balena-base-images/python/solidrun-imx6/alpine/3.14/3.9.10/run/Dockerfile | Dockerfile | apache-2.0 | 4,131 |
# AUTOGENERATED FILE
FROM balenalib/parallella-alpine:3.13-build
ENV NODE_VERSION 15.7.0
ENV YARN_VERSION 1.22.4
# Install dependencies
RUN apk add --no-cache libgcc libstdc++ libuv \
&& apk add --no-cache libssl1.0 || apk add --no-cache libssl1.1
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \... | nghiant2710/base-images | balena-base-images/node/parallella/alpine/3.13/15.7.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,955 |
# AUTOGENERATED FILE
FROM balenalib/ts4900-ubuntu:cosmic-build
ENV NODE_VERSION 15.6.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver ha.poo... | nghiant2710/base-images | balena-base-images/node/ts4900/ubuntu/cosmic/15.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,757 |
# AUTOGENERATED FILE
FROM balenalib/qemux86-64-fedora:35-build
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
RUN dnf install -y \
python3-pip \
python3-dbus \
&& dnf clean all
# install "virtualenv",... | resin-io-library/base-images | balena-base-images/python/qemux86-64/fedora/35/3.6.15/build/Dockerfile | Dockerfile | apache-2.0 | 2,453 |
# AUTOGENERATED FILE
FROM balenalib/orangepi-plus2-alpine:3.13-build
ENV GO_VERSION 1.14.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 ... | nghiant2710/base-images | balena-base-images/golang/orangepi-plus2/alpine/3.13/1.14.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,343 |
# AUTOGENERATED FILE
FROM balenalib/artik530-debian:bullseye-run
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# install python depen... | nghiant2710/base-images | balena-base-images/python/artik530/debian/bullseye/3.5.10/run/Dockerfile | Dockerfile | apache-2.0 | 4,097 |
# AUTOGENERATED FILE
FROM balenalib/surface-go-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 \
... | resin-io-library/base-images | balena-base-images/dotnet/surface-go/debian/buster/5.0-sdk/run/Dockerfile | Dockerfile | apache-2.0 | 2,924 |
FROM python:3.8-alpine
ENV PUPPETBOARD_PORT 80
EXPOSE 80
ENV PUPPETBOARD_SETTINGS docker_settings.py
RUN mkdir -p /usr/src/app/
WORKDIR /usr/src/app/
# Workaround for https://github.com/benoitc/gunicorn/issues/2160
RUN apk --update --no-cache add libc-dev binutils
COPY requirements*.txt /usr/src/app/
RUN pip instal... | grandich/puppetboard | Dockerfile | Dockerfile | apache-2.0 | 552 |
FROM tailordev/pandas
ADD . /
RUN pip install -r requirements.txt
ENTRYPOINT ["/run.sh"]
| Scaravex/clue-hackathon | Dockerfile | Dockerfile | apache-2.0 | 95 |
# AUTOGENERATED FILE
FROM balenalib/up-squared-debian:stretch-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... | nghiant2710/base-images | balena-base-images/python/up-squared/debian/stretch/2.7.18/run/Dockerfile | Dockerfile | apache-2.0 | 4,477 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-nx-devkit-ubuntu:disco-run
ENV GO_VERSION 1.16.3
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' ... | nghiant2710/base-images | balena-base-images/golang/jetson-xavier-nx-devkit/ubuntu/disco/1.16.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,336 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-pocket-ubuntu:focal-build
ENV NODE_VERSION 10.24.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 --keyse... | nghiant2710/base-images | balena-base-images/node/beaglebone-pocket/ubuntu/focal/10.24.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,768 |
# AUTOGENERATED FILE
FROM balenalib/artik533s-debian:buster-build
ENV GO_VERSION 1.15.6
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 "7f60787d9d94ed040e2d58f7715a4dc1cdb9f9160504aec810712a7e20446bb7 go$GO_VERSION... | nghiant2710/base-images | balena-base-images/golang/artik533s/debian/buster/1.15.6/build/Dockerfile | Dockerfile | apache-2.0 | 2,027 |
# AUTOGENERATED FILE
FROM balenalib/asus-tinker-board-debian:buster-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 --key... | nghiant2710/base-images | balena-base-images/node/asus-tinker-board/debian/buster/10.23.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,949 |
# AUTOGENERATED FILE
FROM balenalib/raspberry-pi2-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 ... | nghiant2710/base-images | balena-base-images/python/raspberry-pi2/alpine/3.12/3.5.10/run/Dockerfile | Dockerfile | apache-2.0 | 4,135 |
#
# CloudBoost Storage Analytics Dockerfile
#
# Pull base image nodejs image.
FROM node:5.3
#Maintainer.
MAINTAINER Nawaz Dhandala <nawazdhandala@outlook.com>
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
# Install app dependencies
COPY package.json /usr/src/app/
RUN npm install
# Bundle app source
COPY . /usr/... | CloudBoost/cloudboost | storage-analytics-service/Dockerfile | Dockerfile | apache-2.0 | 430 |
# AUTOGENERATED FILE
FROM balenalib/up-squared-debian:sid-run
ENV GO_VERSION 1.16.3
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
&& apt-get u... | nghiant2710/base-images | balena-base-images/golang/up-squared/debian/sid/1.16.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,334 |
# AUTOGENERATED FILE
FROM balenalib/vab820-quad-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 McVi... | resin-io-library/base-images | balena-base-images/python/vab820-quad/alpine/edge/3.9.7/build/Dockerfile | Dockerfile | apache-2.0 | 4,835 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi3-64-fedora:33-run
ENV GO_VERSION 1.15.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 "bca4af0c20f86521dfab... | nghiant2710/base-images | balena-base-images/golang/raspberrypi3-64/fedora/33/1.15.7/run/Dockerfile | Dockerfile | apache-2.0 | 2,076 |
# AUTOGENERATED FILE
FROM balenalib/artik533s-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/artik533s/debian/buster/3.1-aspnet/build/Dockerfile | Dockerfile | apache-2.0 | 3,128 |
# AUTOGENERATED FILE
FROM balenalib/odroid-c1-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... | resin-io-library/base-images | balena-base-images/python/odroid-c1/alpine/3.12/3.10.2/build/Dockerfile | Dockerfile | apache-2.0 | 4,835 |
FROM tomcat:8.5-alpine
MAINTAINER spring-boot-hello-world.wyona.org
VOLUME /tmp
RUN rm -rf /usr/local/tomcat/webapps/ROOT
COPY target/hello-world-webapp-1.0.0-SNAPSHOT.war /usr/local/tomcat/webapps/ROOT.war
#FROM frolvlad/alpine-oraclejdk8:slim
#MAINTAINER spring-boot-hello-world.wyona.org
#VOLUME /tmp
#ADD target/hel... | wyona/spring-boot-hello-world-rest | Dockerfile | Dockerfile | apache-2.0 | 504 |
# AUTOGENERATED FILE
FROM balenalib/generic-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 'dirname ... | nghiant2710/base-images | balena-base-images/openjdk/generic/alpine/3.11/7-jdk/build/Dockerfile | Dockerfile | apache-2.0 | 1,771 |
# AUTOGENERATED FILE
FROM balenalib/aio-3288c-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/aio-3288c/debian/bookworm/3.1-runtime/build/Dockerfile | Dockerfile | apache-2.0 | 2,531 |
# AUTOGENERATED FILE
FROM balenalib/aarch64-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/aarch64/debian/buster/5.0-runtime/build/Dockerfile | Dockerfile | apache-2.0 | 2,944 |
#
# 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... | yahoo/pulsar | tests/docker-images/java-test-image/Dockerfile | Dockerfile | apache-2.0 | 2,219 |
FROM eu.gcr.io/peopledata-product-team/td.nodejs:latest
ENV APP_ENV docker
COPY package.json /app/
RUN npm install
COPY . /app/
| techops-peopledata/td.core | Dockerfile | Dockerfile | apache-2.0 | 131 |
# Copyright 2015-2016, 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 ... | VcamX/grpc | tools/dockerfile/test/cxx_ubuntu1404_x64/Dockerfile | Dockerfile | bsd-3-clause | 2,724 |
FROM ubuntu:14.04
MAINTAINER Hector Cordero <hhcordero@gmail.com>
ENV JMETER_VERSION 2.13
ENV JMETER_HOME /usr/local/apache-jmeter-${JMETER_VERSION}
ENV JMETER_BIN $JMETER_HOME/bin
ENV RMI_CLIENT_PORT 1099
ENV RMI_SERVER_PORT 9901
ENV TEST_PLAN test.jmx
ENV ACCESS_KEY XXX
ENV SECRET_KEY XXX
ENV REGION XXX
ENV QUEUE_U... | hhcordero/docker-jmeter | client/Dockerfile | Dockerfile | mit | 1,153 |
FROM balenalib/armv7hf-alpine:edge-build
LABEL io.balena.device-type="zc702-zynq7"
RUN apk add --update \
less \
nano \
net-tools \
ifupdown \
usbutils \
gnupg \
&& rm -rf /var/cache/apk/*
RUN [ ! -d /.balena/messages ] && mkdir -p /.balena/messages; echo $'Here are a few details about this Docker image ... | nghiant2710/base-images | balena-base-images/device-base/zc702-zynq7/alpine/edge/build/Dockerfile | Dockerfile | apache-2.0 | 1,020 |
FROM node:9.10.1
COPY ./ ./
RUN npm install
ENV NODE_HANDLER sequelize-postgres
CMD ["node", "app.js"]
| zapov/FrameworkBenchmarks | frameworks/JavaScript/nodejs/nodejs-postgres.dockerfile | Dockerfile | bsd-3-clause | 107 |
# Copyright 2016 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,... | robertswiecki/oss-fuzz | projects/libtsm/Dockerfile | Dockerfile | apache-2.0 | 927 |
FROM phusion/baseimage:0.9.12
# Set correct environment variables.
ENV HOME /root
ENV DEBIAN_FRONTEND noninteractive
###
### Added ruby 2.0
###
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 914D5813
RUN echo "deb http://ppa.launchpad.net/gds/govuk/ubuntu precise main" > /etc/apt/sources.list.d/gds-govu... | ministryofjustice/scs_performance | Dockerfile | Dockerfile | mit | 1,693 |
# Install PIP and setuptools
# Version 0.1
FROM johnsn/python27
MAINTAINER Nicholas Johns "nicholas.a.johns5@gmail.com"
RUN apt-get update
RUN apt-get install -y -q curl wget
RUN curl https://bitbucket.org/pypa/setuptools/raw/bootstrap/ez_setup.py | python
RUN curl https://raw.github.com/pypa/pip/master/con... | taion809/docker-python | pip/Dockerfile | Dockerfile | mit | 345 |
FROM alpine:3.4
RUN apk update && apk add libssl1.0 pcre && rm -f /var/cache/apk/*
ENV HAPROXY_MAJOR 1.6
ENV HAPROXY_VERSION 1.6.10
ENV HAPROXY_MD5 6d47461c008b823a0088d19ec30dbe4e
RUN buildDeps='curl gcc libc-dev linux-headers pcre-dev openssl-dev make tar' \
&& set -x \
&& apk update && apk add $buildDeps && rm ... | davidraba/docker101-ice2017 | haproxy/Dockerfile | Dockerfile | mit | 1,011 |
FROM debian:wheezy
MAINTAINER yaasita
#apt
#ADD 02proxy /etc/apt/apt.conf.d/02proxy
RUN apt-get update
RUN apt-get upgrade -y
#package
RUN apt-get install -y vim \
aptitude squirrelmail-locales squirrelmail apache2 htop w3m
#ssh
RUN apt-get install -y openssh-server
RUN mkdir /var/run/sshd/
RUN mkdir /root/.ssh
#AD... | yaasita/docker_squirrelmail | Dockerfile | Dockerfile | mit | 761 |
FROM java:8
MAINTAINER Hyun Min Choi <hyunmin.personal@gmail.com>
RUN apt-get -y update
RUN apt-get -y upgrade
RUN apt-get install -y build-essential \
gcc \
nginx \
supervisor \
git \
vim \
redis-server
RUN update-ca-certificates -f
ENV SCALA_VERSION 2.12.1
ENV SBT_VERSION 0.13.15
# install... | nitrogenice/scala-sbt-java | Dockerfile | Dockerfile | mit | 765 |
FROM debian:stretch-20181226
# Install tools and dependencies.
RUN apt-get update && \
apt-get install -y \
apt-transport-https \
dirmngr \
gnupg \
ca-certificates \
make \
git \
gcc \
g++ \
gdb \
autoconf \
libtool \
a... | brianrob/coretests | managed/aspnet_start/docker/mono_fullaot/Dockerfile | Dockerfile | mit | 2,691 |
FROM java:8-jre-alpine
MAINTAINER Vlad Nemes <me@vladnem.es>
WORKDIR /var/workbench
RUN apk add --no-cache unzip curl && \
rm -rf /var/cache/apk/* && \
mkdir /var/driver && \
curl -o /var/driver/athena.jar https://s3.amazonaws.com/athena-downloads/drivers/AthenaJDBC41-1.0.0.jar && \
curl -o /tmp/workbench.zip htt... | vladnem/athena-workbench | Dockerfile | Dockerfile | mit | 645 |
from ansrivas/scala-sbt:2_11_11-1_0_1
# Copy all the code in here
COPY . /lib
RUN useradd -ms /bin/bash app && \
chown -R app:app /lib
USER app
WORKDIR /lib
# Create a fat jar and clean up rest
RUN sbt clean compile assembly && \
rm -rf /lib/target && \
rm -rf ~/.ivy2 && \
rm -rf ~/.sbt
CMD java -... | ansrivas/yelp_dataset | Dockerfile | Dockerfile | mit | 356 |
# Copyright 2018 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
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, ... | tensorflow/serving | tensorflow_serving/tools/docker/Dockerfile | Dockerfile | apache-2.0 | 2,022 |
# Copyright 2016 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,... | robertswiecki/oss-fuzz | infra/base-images/base-builder/Dockerfile | Dockerfile | apache-2.0 | 2,593 |
# AUTOGENERATED FILE
FROM balenalib/i386-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 --no-... | nghiant2710/base-images | balena-base-images/python/i386/alpine/edge/3.9.4/run/Dockerfile | Dockerfile | apache-2.0 | 4,124 |
# AUTOGENERATED FILE
FROM balenalib/smarc-px30-debian:bullseye-run
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# install python dep... | nghiant2710/base-images | balena-base-images/python/smarc-px30/debian/bullseye/3.5.10/run/Dockerfile | Dockerfile | apache-2.0 | 4,099 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx1-debian:buster-run
ENV GO_VERSION 1.15.6
# 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/jetson-tx1/debian/buster/1.15.6/run/Dockerfile | Dockerfile | apache-2.0 | 2,325 |
# AUTOGENERATED FILE
FROM balenalib/odroid-c1-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: public... | resin-io-library/base-images | balena-base-images/python/odroid-c1/ubuntu/focal/3.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 4,827 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen6xq2g-fedora:33-run
ENV NODE_VERSION 14.18.3
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver keys... | resin-io-library/base-images | balena-base-images/node/nitrogen6xq2g/fedora/33/14.18.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,750 |
# AUTOGENERATED FILE
FROM balenalib/odroid-c1-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 dependen... | nghiant2710/base-images | balena-base-images/python/odroid-c1/ubuntu/eoan/3.8.6/run/Dockerfile | Dockerfile | apache-2.0 | 4,064 |
# 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 ... | resin-io-library/base-images | balena-base-images/dotnet/via-vab820-quad/debian/buster/3.1-sdk/build/Dockerfile | Dockerfile | apache-2.0 | 2,918 |
# AUTOGENERATED FILE
FROM balenalib/hummingboard2-ubuntu:disco-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: pu... | nghiant2710/base-images | balena-base-images/python/hummingboard2/ubuntu/disco/3.9.4/build/Dockerfile | Dockerfile | apache-2.0 | 4,832 |
# AUTOGENERATED FILE
FROM balenalib/artik5-debian:sid-run
ENV NODE_VERSION 14.16.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/artik5/debian/sid/14.16.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,932 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-nx-devkit-emmc-debian:jessie-build
ENV GO_VERSION 1.15.6
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \
&& echo "f87515b9744154ffe31182da9341d0a61eb0795551173d242c8cad209239e492 go$GO_VERSION.lin... | nghiant2710/base-images | balena-base-images/golang/jetson-xavier-nx-devkit-emmc/debian/jessie/1.15.6/build/Dockerfile | Dockerfile | apache-2.0 | 2,017 |
# AUTOGENERATED FILE
FROM balenalib/am571x-evm-debian:stretch-run
ENV NODE_VERSION 15.10.0
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserver... | nghiant2710/base-images | balena-base-images/node/am571x-evm/debian/stretch/15.10.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,944 |
FROM adoptopenjdk/openjdk15:ubuntu-jre
COPY target/dependency/* /function/
COPY target/timeseries-lambda.jar /function
ENTRYPOINT [ "/opt/java/openjdk/bin/java", "-cp", "/function/*", "com.amazonaws.services.lambda.runtime.api.client.AWSLambda" ]
CMD ["de.rieckpil.blog.Java15Lambda::handleRequest"] | leonarduk/stockmarketview | timeseries-lambda/Dockerfile | Dockerfile | apache-2.0 | 302 |
# AUTOGENERATED FILE
FROM balenalib/jn30b-nano-ubuntu:cosmic-build
# A few reasons for installing distribution-provided OpenJDK:
#
# 1. Oracle. Licensing prevents us from redistributing the official JDK.
#
# 2. Compiling OpenJDK also requires the JDK to be installed, and it gets
# really hairy.
#
# For some... | nghiant2710/base-images | balena-base-images/openjdk/jn30b-nano/ubuntu/cosmic/11-jdk/build/Dockerfile | Dockerfile | apache-2.0 | 3,104 |
# AUTOGENERATED FILE
FROM balenalib/jetson-nano-2gb-devkit-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 \
libss... | nghiant2710/base-images | balena-base-images/dotnet/jetson-nano-2gb-devkit/debian/buster/5.0-sdk/run/Dockerfile | Dockerfile | apache-2.0 | 2,953 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen8mm-fedora:36-run
ENV NODE_VERSION 17.6.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver keyserv... | resin-io-library/base-images | balena-base-images/node/nitrogen8mm/fedora/36/17.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,742 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx1-debian:jessie-run
ENV NODE_VERSION 12.22.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/jetson-tx1/debian/jessie/12.22.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,938 |
# AUTOGENERATED FILE
FROM balenalib/nuc-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 \
' \
&& apt-get upda... | resin-io-library/base-images | balena-base-images/golang/nuc/ubuntu/bionic/1.16.14/run/Dockerfile | Dockerfile | apache-2.0 | 2,335 |
# AUTOGENERATED FILE
FROM balenalib/npe-x500-m3-alpine:3.11-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 'dirnam... | nghiant2710/base-images | balena-base-images/openjdk/npe-x500-m3/alpine/3.11/8-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 1,756 |
# AUTOGENERATED FILE
FROM balenalib/parallella-hdmi-resin-ubuntu:bionic-run
# remove several traces of debian python
RUN apt-get purge -y python.*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# install p... | resin-io-library/base-images | balena-base-images/python/parallella-hdmi-resin/ubuntu/bionic/3.10.0/run/Dockerfile | Dockerfile | apache-2.0 | 4,078 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-green-wifi-ubuntu:disco-run
ENV GO_VERSION 1.15.7
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
... | nghiant2710/base-images | balena-base-images/golang/beaglebone-green-wifi/ubuntu/disco/1.15.7/run/Dockerfile | Dockerfile | apache-2.0 | 2,363 |
# AUTOGENERATED FILE
FROM balenalib/via-vab820-quad-alpine:3.12-run
ENV NODE_VERSION 16.14.0
ENV YARN_VERSION 1.22.4
# Install dependencies
RUN apk add --no-cache libgcc libstdc++ libuv \
&& apk add --no-cache libssl1.0 || apk add --no-cache libssl1.1
RUN buildDeps='curl' \
&& set -x \
&& for key in \
6A010C5166... | resin-io-library/base-images | balena-base-images/node/via-vab820-quad/alpine/3.12/16.14.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,024 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.