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 golang:1.8-alpine
ADD ./ /go/src/github.com/kris-runzer/tick-dock-toe
WORKDIR /go/src/github.com/kris-runzer/tick-dock-toe
RUN go install
ENTRYPOINT ["tick-dock-toe"]
| kris-runzer/tick-dock-toe | Dockerfile | Dockerfile | mit | 176 |
FROM alpine
ENV NODE_ENV=production
RUN apk add --update nodejs
ADD dist/ /app
WORKDIR /app
CMD ["node", "/app/index.js"]
| claims-io/sqs-monitor | Dockerfile | Dockerfile | mit | 126 |
# Set the base image to Ubuntu
FROM node:latest
# File Author / Maintainer
MAINTAINER Rodrigo Asensio
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/src/app
# Expose port
EXPOSE 3000
CMD [ "npm", "start" ]
| rasensio/nodejs-express-template | Dockerfile | Dockerfile | mit | 320 |
FROM starkandwayne/concourse:latest
RUN apt-get update \
&& DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true apt-get install -y \
libexpect-perl \
expect \
libtest-deep-perl \
libtest-differences-perl \
libtest-exception-perl \
libtest-output-perl \
libtest-tcp... | starkandwayne/genesis | ci/Dockerfile | Dockerfile | mit | 487 |
FROM orchardup/python:2.7
RUN apt-get update -qq && apt-get install -qy python-psycopg2 binutils libproj-dev gdal-bin
ADD requirements.txt /code/
WORKDIR /code
RUN pip install -r requirements.txt
ADD . /code
ENV PYTHONUNBUFFERED 1
| LandRegistry-Attic/concept-geo-service | Dockerfile | Dockerfile | mit | 231 |
# https://github.com/elastic/logstash-docker
FROM docker.elastic.co/logstash/logstash:5.5.0
# Add your logstash plugins setup here
# Example: RUN logstash-plugin install logstash-filter-json
COPY patterns/* /opt/logstash/patterns/
RUN logstash-plugin install logstash-input-cloudwatch_logs logstash-filter-alter
| newcontext/so-mvp-docker-elk | logstash/Dockerfile | Dockerfile | mit | 313 |
FROM busybox
WORKDIR /tmp
ADD https://downloads.mysql.com/docs/sakila-db.tar.gz .
RUN tar zxf sakila-db.tar.gz
FROM 1maa/mysql:8.0
COPY --from=0 /tmp/sakila-db/sakila-schema.sql /docker-entrypoint-initdb.d/00-sakila-schema.sql
COPY --from=0 /tmp/sakila-db/sakila-data.sql /docker-entrypoint-initdb.d/01-sakila-da... | 1ma/dockertronics | sakila/Dockerfile | Dockerfile | mit | 327 |
FROM ubuntu:saucy
MAINTAINER Mike Risse
RUN apt-get update
RUN apt-get install -y git
| mad-eye/meteor-docker | dockerfiles/justGit/Dockerfile | Dockerfile | mit | 86 |
FROM ubuntu:18.04 as downloader
ARG jdk=12
ADD provision/jdk/java-${jdk}.sh provision/jdk/java-${jdk}.sh
RUN provision/jdk/java-${jdk}.sh
ARG maven=3.6.1
ADD provision/maven/maven-${maven}.sh provision/maven/maven-${maven}.sh
RUN provision/maven/maven-${maven}.sh
FROM ubuntu:18.04
COPY --from=downloader... | Lekanich/lombok | docker/maven/Dockerfile | Dockerfile | mit | 1,102 |
FROM golang:latest as builder
RUN go get github.com/tools/godep
WORKDIR /go/src/app
COPY Godeps/ Godeps/
RUN godep restore
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo .
FROM alpine:latest
RUN apk --no-cache add ca-certificates
WORKDIR /root/
COPY --from=builder /go/src/app/app .
CMD ["... | itshouldntdothis/go-swagger-http-worker | Dockerfile | Dockerfile | mit | 328 |
# syntax=docker/dockerfile:1
FROM php:7.4-cli
RUN apt-get update -y && apt-get install -y --no-install-recommends \
libzip-dev libbz2-dev && \
docker-php-ext-install pcntl && \
docker-php-ext-install bz2 && \
docker-php-ext-install zip && \
php -r "copy('https://getcomposer.org/installer', 'compose... | keripix/laravel42x | Dockerfile | Dockerfile | mit | 822 |
FROM euskadi31/gentoo-portage:latest
MAINTAINER Axel Etcheverry <axel@etcheverry.biz>
RUN echo "app-misc/sphinx ~amd64" >> /etc/portage/package.keywords
RUN echo "app-misc/sphinx id64 mysql postgres" >> /etc/portage/package.use
RUN emerge app-misc/sphinx
EXPOSE 9306 9312
CMD ["searchd", "--nodetach"]
| gentoo-docker/gentoo-sphinx | Dockerfile | Dockerfile | mit | 306 |
FROM docker.ocular8.net/base
MAINTAINER jake@300brand.com
RUN apt-get install -y golang bzr git mercurial libxml2-dev pkg-config libsqlite3-dev
ADD golang.sh /etc/profile.d/golang.sh
RUN GOPATH=/usr/local go get -u -v github.com/300brand/coverageservices # v1.9.0
ADD coverage.toml /e... | 300brand/ocular8.net | service/Dockerfile | Dockerfile | mit | 493 |
FROM alpine:latest
RUN apk add --update samba samba-common-tools
ADD run.sh /run.sh
RUN chmod u+x /run.sh
EXPOSE 445
ENTRYPOINT ["/run.sh"]
CMD ["-h"]
| nsymms/dockerfiles | samba/Dockerfile | Dockerfile | mit | 155 |
# AUTOGENERATED FILE
FROM balenalib/kitra520-ubuntu:bionic-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.... | nghiant2710/base-images | balena-base-images/node/kitra520/ubuntu/bionic/12.22.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,761 |
FROM node:4.2
RUN npm install --global --loglevel="info" ember-cli@2.3.0
RUN npm install --global --loglevel="info" bower@1.6.5
RUN npm install --global --loglevel="info" phantomjs-prebuilt@2.1.4
RUN git clone https://github.com/facebook/watchman.git && \
cd watchman && \
git checkout v4.1.0 && \
./autogen.sh && \... | jgoclawski/ember-tutorial | Dockerfile | Dockerfile | apache-2.0 | 649 |
# AUTOGENERATED FILE
FROM balenalib/revpi-connect-debian:jessie-run
ENV GO_VERSION 1.15.8
# 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... | nghiant2710/base-images | balena-base-images/golang/revpi-connect/debian/jessie/1.15.8/run/Dockerfile | Dockerfile | apache-2.0 | 2,357 |
# AUTOGENERATED FILE
FROM balenalib/zc702-zynq7-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: publ... | nghiant2710/base-images | balena-base-images/python/zc702-zynq7/ubuntu/disco/3.8.6/build/Dockerfile | Dockerfile | apache-2.0 | 4,830 |
FROM balenalib/aarch64-alpine:3.14-build
LABEL io.balena.device-type="ccimx8x-sbc-pro"
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 im... | resin-io-library/base-images | balena-base-images/device-base/ccimx8x-sbc-pro/alpine/3.14/build/Dockerfile | Dockerfile | apache-2.0 | 1,024 |
# AUTOGENERATED FILE
FROM balenalib/revpi-connect-fedora:30-run
RUN dnf -y update \
&& dnf clean all \
&& dnf -y install \
gzip \
java-11-openjdk \
java-11-openjdk-devel \
tar \
&& dnf clean all
# set JAVA_HOME
ENV JAVA_HOME /usr/lib/jvm/java-openjdk
CMD ["echo","'No CMD command was set in Dockerfile! Det... | nghiant2710/base-images | balena-base-images/openjdk/revpi-connect/fedora/30/11-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 1,314 |
# How to use this image
#
# The following instructions assume that you do not have Docker or Node
# installed on your computer. Instead, you will use the online Docker
# playground website 'Play With Docker (PWD)' to run the Theia browser example
# by just using PWD through your browser.
#
# 1. First, open up http://... | hexa00/theia | examples/browser/Dockerfile | Dockerfile | apache-2.0 | 1,772 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi400-64-alpine:edge-build
ENV NODE_VERSION 14.18.3
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 \... | resin-io-library/base-images | balena-base-images/node/raspberrypi400-64/alpine/edge/14.18.3/build/Dockerfile | Dockerfile | apache-2.0 | 2,958 |
# AUTOGENERATED FILE
FROM balenalib/imx8mm-var-dart-debian:stretch-run
ENV NODE_VERSION 16.14.0
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keys... | resin-io-library/base-images | balena-base-images/node/imx8mm-var-dart/debian/stretch/16.14.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,939 |
# AUTOGENERATED FILE
FROM balenalib/apalis-imx6q-fedora:33-build
RUN dnf -y update \
&& dnf clean all \
&& dnf -y install \
gzip \
java-1.8.0-openjdk \
java-1.8.0-openjdk-devel \
tar \
&& dnf clean all
# set JAVA_HOME
ENV JAVA_HOME /usr/lib/jvm/java-openjdk
CMD ["echo","'No CMD command was set in Dockerfi... | resin-io-library/base-images | balena-base-images/openjdk/apalis-imx6q/fedora/33/8-jre/build/Dockerfile | Dockerfile | apache-2.0 | 1,322 |
# 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,... | googlefonts/oss-fuzz | infra/base-images/base-clang/Dockerfile | Dockerfile | apache-2.0 | 2,189 |
# AUTOGENERATED FILE
FROM balenalib/artik710-ubuntu:bionic-build
ENV GO_VERSION 1.17.7
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \
&& echo "a5aa1ed17d45ee1d58b4a4099b12f8942acbd1dd09b2e9a6abb1c4898043c5f5 go$GO_VERSION.linux-arm64.tar.gz" | s... | resin-io-library/base-images | balena-base-images/golang/artik710/ubuntu/bionic/1.17.7/build/Dockerfile | Dockerfile | apache-2.0 | 1,997 |
FROM ubuntu:xenial
MAINTAINER Emmanuel Keller
RUN apt-get update \
&& apt-get install -y \
openjdk-8-jre-headless ca-certificates-java ghostscript tesseract-ocr tesseract-ocr-* phantomjs \
&& rm -rf /var/lib/apt/lists/*
ENV LANG C.UTF-8
RUN /var/lib/dpkg/info/ca-certificates-java.postinst configure
ADD... | qwazr/QWAZR | Dockerfile | Dockerfile | apache-2.0 | 515 |
FROM balenalib/amd64-alpine:3.14-build
LABEL io.balena.device-type="qemux86-64"
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 (Fo... | resin-io-library/base-images | balena-base-images/device-base/qemux86-64/alpine/3.14/build/Dockerfile | Dockerfile | apache-2.0 | 1,032 |
# AUTOGENERATED FILE
FROM balenalib/isg-503-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", sinc... | resin-io-library/base-images | balena-base-images/python/isg-503/fedora/35/3.6.15/run/Dockerfile | Dockerfile | apache-2.0 | 2,430 |
# AUTOGENERATED FILE
FROM balenalib/artik5-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 "virtualenv", sin... | resin-io-library/base-images | balena-base-images/python/artik5/fedora/36/3.9.10/build/Dockerfile | Dockerfile | apache-2.0 | 2,434 |
# AUTOGENERATED FILE
FROM balenalib/hummingboard2-debian:bookworm-run
ENV NODE_VERSION 16.14.0
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyse... | resin-io-library/base-images | balena-base-images/node/hummingboard2/debian/bookworm/16.14.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,943 |
# AUTOGENERATED FILE
FROM balenalib/hummingboard-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: pu... | resin-io-library/base-images | balena-base-images/python/hummingboard/ubuntu/bionic/3.8.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,832 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi400-64-debian:bullseye-build
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu63 \
libssl... | nghiant2710/base-images | balena-base-images/dotnet/raspberrypi400-64/debian/bullseye/3.1-aspnet/build/Dockerfile | Dockerfile | apache-2.0 | 3,143 |
# AUTOGENERATED FILE
FROM balenalib/asus-tinker-edge-t-debian:buster-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.... | resin-io-library/base-images | balena-base-images/golang/asus-tinker-edge-t/debian/buster/1.16.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,009 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx2-debian:stretch-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/jetson-tx2/debian/stretch/3.1-runtime/build/Dockerfile | Dockerfile | apache-2.0 | 2,531 |
# AUTOGENERATED FILE
FROM balenalib/parallella-hdmi-resin-alpine:3.13-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 \
6A010... | nghiant2710/base-images | balena-base-images/node/parallella-hdmi-resin/alpine/3.13/15.7.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,034 |
# AUTOGENERATED FILE
FROM balenalib/photon-xavier-nx-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: p... | resin-io-library/base-images | balena-base-images/python/photon-xavier-nx/debian/sid/3.9.10/build/Dockerfile | Dockerfile | apache-2.0 | 4,854 |
# AUTOGENERATED FILE
FROM balenalib/orange-pi-lite-ubuntu:disco-run
ENV GO_VERSION 1.15.8
# 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... | nghiant2710/base-images | balena-base-images/golang/orange-pi-lite/ubuntu/disco/1.15.8/run/Dockerfile | Dockerfile | apache-2.0 | 2,356 |
# Copyright 2016 Nordstrom Inc., authors, and contributors <see AUTHORS file>
#
# 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 ... | Nordstrom/elwin | Dockerfile | Dockerfile | apache-2.0 | 1,182 |
# AUTOGENERATED FILE
FROM balenalib/armv7hf-fedora:34-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", sinc... | resin-io-library/base-images | balena-base-images/python/armv7hf/fedora/34/3.6.15/run/Dockerfile | Dockerfile | apache-2.0 | 2,430 |
# AUTOGENERATED FILE
FROM balenalib/generic-ubuntu:bionic-run
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu60 \
libssl1.1 \
libstdc... | resin-io-library/base-images | balena-base-images/dotnet/generic/ubuntu/bionic/3.1-runtime/run/Dockerfile | Dockerfile | apache-2.0 | 2,529 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi2-ubuntu:eoan-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 \
' \
&& apt-ge... | nghiant2710/base-images | balena-base-images/golang/raspberrypi2/ubuntu/eoan/1.15.7/run/Dockerfile | Dockerfile | apache-2.0 | 2,352 |
# AUTOGENERATED FILE
FROM balenalib/asus-tinker-edge-t-ubuntu:focal-run
ENV NODE_VERSION 16.14.0
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver... | resin-io-library/base-images | balena-base-images/node/asus-tinker-edge-t/ubuntu/focal/16.14.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,914 |
FROM node:8.12.0
RUN apt-get update -y
RUN apt-get install -y mongodb zip
RUN apt-get clean
WORKDIR /usr/bin
RUN curl -L "https://cli.run.pivotal.io/stable?release=linux64-binary&source=github" | tar -zx
ENV NPM_CONFIG_LOGLEVEL=warn
RUN npm install -g npm@4
| cloudfoundry-incubator/cf-abacus | etc/docker/node-mongodb/Dockerfile | Dockerfile | apache-2.0 | 261 |
# AUTOGENERATED FILE
FROM balenalib/zc702-zynq7-ubuntu:disco-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 --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.co... | nghiant2710/base-images | balena-base-images/node/zc702-zynq7/ubuntu/disco/14.16.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,917 |
# AUTOGENERATED FILE
FROM balenalib/orbitty-tx2-debian:sid-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" || \
gpg... | nghiant2710/base-images | balena-base-images/node/orbitty-tx2/debian/sid/15.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,778 |
# AUTOGENERATED FILE
FROM balenalib/etcher-pro-debian:stretch-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"... | nghiant2710/base-images | balena-base-images/golang/etcher-pro/debian/stretch/1.15.11/build/Dockerfile | Dockerfile | apache-2.0 | 2,003 |
# AUTOGENERATED FILE
FROM balenalib/n510-tx2-ubuntu:cosmic-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.com -... | nghiant2710/base-images | balena-base-images/node/n510-tx2/ubuntu/cosmic/15.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,910 |
# AUTOGENERATED FILE
FROM balenalib/jn30b-nano-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: pu... | resin-io-library/base-images | balena-base-images/python/jn30b-nano/debian/bookworm/3.10.2/build/Dockerfile | Dockerfile | apache-2.0 | 4,858 |
# AUTOGENERATED FILE
FROM balenalib/var-som-mx6-alpine:3.10-run
ENV NODE_VERSION 15.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 \
6A010C51660065... | nghiant2710/base-images | balena-base-images/node/var-som-mx6/alpine/3.10/15.14.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,026 |
# AUTOGENERATED FILE
FROM balenalib/kitra710-debian:stretch-run
ENV NODE_VERSION 17.6.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 ke... | resin-io-library/base-images | balena-base-images/node/kitra710/debian/stretch/17.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,930 |
FROM ubuntu:yakkety
ENV GOPATH /go
ENV GOVERSION 1.7
ENV PATH /go/bin:/usr/lib/go-${GOVERSION}/bin:/usr/bin:/bin:/usr/sbin:/sbin
RUN apt-get update && \
apt-get install -y libpcap-dev python-requests time file shellcheck golang-${GOVERSION} git gcc-arm-linux-gnueabihf && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/... | paulbellamy/scope | backend/Dockerfile | Dockerfile | apache-2.0 | 797 |
# AUTOGENERATED FILE
FROM balenalib/imx8mm-var-dart-alpine:3.11-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/imx8mm-var-dart/alpine/3.11/15.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,962 |
#
# This is a docker build file to run the latest version of scorch in a purpose built docker container
# The container contains very little else so dont expect bells and whistles, but can be used to run tests
# on the creation of jobs rather than running the jobs themselves.
#
# Make sure you have docker installed
# ... | marlof/ScORCH | Dockerfile | Dockerfile | apache-2.0 | 2,752 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi400-64-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/raspberrypi400-64/debian/buster/6.0-runtime/run/Dockerfile | Dockerfile | apache-2.0 | 2,532 |
# AUTOGENERATED FILE
FROM balenalib/coral-dev-debian:bullseye-build
ENV NODE_VERSION 15.14.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserver keyserver.pgp.com --recv-keys "$key" || \
... | nghiant2710/base-images | balena-base-images/node/coral-dev/debian/bullseye/15.14.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,786 |
# AUTOGENERATED FILE
FROM balenalib/odroid-ux3-alpine:3.13-run
# remove several traces of python
RUN apk del python*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# install python dependencies
RUN apk add... | resin-io-library/base-images | balena-base-images/python/odroid-ux3/alpine/3.13/3.9.7/run/Dockerfile | Dockerfile | apache-2.0 | 4,126 |
# AUTOGENERATED FILE
FROM balenalib/apalis-imx6q-fedora:34-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/apalis-imx6q/fedora/34/3.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,440 |
# 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 ... | tamihiro/grpc | tools/dockerfile/distribtest/python_fedora21_x64/Dockerfile | Dockerfile | bsd-3-clause | 1,834 |
FROM balenalib/armv7hf-debian:stretch-run
LABEL io.balena.device-type="parallella"
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 ] && mkdi... | nghiant2710/base-images | balena-base-images/device-base/parallella/debian/stretch/run/Dockerfile | Dockerfile | apache-2.0 | 1,091 |
# AUTOGENERATED FILE
FROM balenalib/nanopi-neo-air-alpine:3.13-run
# Default to UTF-8 file.encoding
ENV LANG C.UTF-8
# add a simple script that can auto-detect the appropriate JAVA_HOME value
# based on whether the JDK or only the JRE is installed
RUN { \
echo '#!/bin/sh'; \
echo 'set -e'; \
echo; \
echo 'dir... | nghiant2710/base-images | balena-base-images/openjdk/nanopi-neo-air/alpine/3.13/7-jre/run/Dockerfile | Dockerfile | apache-2.0 | 1,763 |
# AUTOGENERATED FILE
FROM balenalib/imx8m-var-dart-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 'dir... | nghiant2710/base-images | balena-base-images/openjdk/imx8m-var-dart/alpine/3.12/8-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 1,759 |
FROM tomcat:8-jre8
LABEL maintainer="Tim Dudgeon <tdudgeon@informaticsmatters.com>"
RUN echo JAVA_OPTS='"-Dcom.sun.jersey.server.impl.cdi.lookupExtensionInBeanManager=true -DstartDerbyServer=true"' > /usr/local/tomcat/bin/setenv.sh
RUN rm -rf /usr/local/tomcat/webapps/*
COPY tomcat-users.xml /usr/local/tomcat/conf/tomc... | InformaticsMatters/squonk | docker/portal/Dockerfile | Dockerfile | apache-2.0 | 621 |
FROM java:8-jre
# grab gosu for easy step-down from root
RUN gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4
RUN arch="$(dpkg --print-architecture)" \
&& set -x \
&& curl -o /usr/local/bin/gosu -fSL "https://github.com/tianon/gosu/releases/download/1.3/gosu-$arch" \
&... | hao-opentown/elasticsearch | 1.4/Dockerfile | Dockerfile | apache-2.0 | 1,528 |
FROM krallin/ubuntu-tini:latest
MAINTAINER Ilya Schurov <ilya@schurov.com>
RUN apt-get -qq update
RUN apt-get install -qq libxml2-dev libxslt1-dev python-dev
RUN apt-get install -qq gcc
RUN apt-get install -qq g++
RUN apt-get -qq -y install curl bzip2
RUN curl -sSL https://repo.continuum.io/miniconda/Miniconda3-lates... | ischurov/nbgr-x | docker/Dockerfile | Dockerfile | mit | 1,647 |
FROM nginx:latest
MAINTAINER Francisco Cifuentes
RUN apt-get update && apt-get install -y git
COPY nginx.conf /etc/nginx/nginx.conf
RUN mkdir /ratadns && \
cd /ratadns && \
git clone https://github.com/niclabs/ratadns-remy.git && \
cd ratadns-remy && \
git checkout newviz
COPY config.js /ratadns/ratadns-remy/j... | niclabs/docker | ratadns/nginx/Dockerfile | Dockerfile | mit | 333 |
ARG REPO=mcr.microsoft.com/dotnet/runtime-deps
# Installer image
FROM arm32v7/buildpack-deps:focal-curl AS installer
# Retrieve .NET Runtime
RUN dotnet_version=5.0.15 \
&& curl -fSL --output dotnet.tar.gz https://dotnetcli.azureedge.net/dotnet/Runtime/$dotnet_version/dotnet-runtime-$dotnet_version-linux-arm.tar.g... | dotnet/dotnet-docker | src/runtime/5.0/focal/arm32v7/Dockerfile | Dockerfile | mit | 848 |
FROM nginx
LABEL maintainer "frank@pommerening-online.de"
ENV REFRESHED_AT 2017-03-08
COPY content /usr/share/nginx/html
| fpommerening/Spartakiade2017-Docker | Samples/StaticWebApp/Dockerfile | Dockerfile | mit | 122 |
FROM node:7
RUN mkdir -p /usr/src/app
WORKDIR /usr/src/app
COPY package.json /usr/src/app
RUN npm i
COPY . /usr/src/app
EXPOSE 3000
CMD npm start
| CodeForBaltimore/civicideahub | Dockerfile | Dockerfile | mit | 152 |
FROM debian:jessie
# 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
RUN apt-get update && apt-get install -y --no-install-recommends \
... | subdir/docker-python | 3.4/slim/Dockerfile | Dockerfile | mit | 2,120 |
FROM ruby:2.1.2
RUN apt-get update -qq && apt-get install -y build-essential libpq-dev
RUN mkdir /app
WORKDIR /app
ADD Gemfile /app/Gemfile
RUN bundle install
ADD . /app
| bsingr/docker-fig-rails-postgres-beanstalkd | Dockerfile | Dockerfile | mit | 170 |
FROM debian:wheezy
MAINTAINER Stephane Boulard <lossendae@gmail.com>
# Install Apache & enable Mod PHP
RUN apt-get update && apt-get install -y \
apache2 \
apache2-mpm-prefork \
apache2-prefork-dev
RUN a2enmod rewrite vhost_alias rewrite headers include ssl
ADD config/svd.local.conf /etc/apache2/conf.d/... | lossendae/docker-containers | apache-mod/Dockerfile | Dockerfile | mit | 4,283 |
FROM mggd/debian:jessie-amd64
################################
# Helpful ARGS
################################
ARG DEBIAN_FRONTEND=teletype
ARG aptget_min="apt-get -q -y --no-install-recommends install "
ARG sdk_root="/home/devuser/sdk"
ARG staging_dir=${sdk_root}/staging_dir
ARG sdk_prefix=${staging_dir}/toolchain-m... | gunlock/linino-sdk-docker | Dockerfile | Dockerfile | mit | 3,239 |
# AUTOGENERATED FILE
FROM balenalib/hummingboard2-ubuntu:eoan-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 --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.c... | nghiant2710/base-images | balena-base-images/node/hummingboard2/ubuntu/eoan/14.16.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,917 |
# AUTOGENERATED FILE
FROM balenalib/blackboard-tx2-alpine:3.10-build
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/blackboard-tx2/alpine/3.10/1.16.3/build/Dockerfile | Dockerfile | apache-2.0 | 2,341 |
# AUTOGENERATED FILE
FROM balenalib/up-core-debian:jessie-run
ENV NODE_VERSION 10.24.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 key... | nghiant2710/base-images | balena-base-images/node/up-core/debian/jessie/10.24.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,942 |
FROM bitnami/minideb
LABEL image "gcr.io/example/example.base:0.0.1-SNAPSHOT"
LABEL description "base image"
LABEL maintainer "John Doe <john.doe@example.org>"
# install some development and debug tools. Not recommended for production!
RUN \
apt-get update && \
apt-get install -y --force-yes \
wget \
curl \
... | thlaegler/microservice | code2model-example/example.environment/example.base/Dockerfile | Dockerfile | apache-2.0 | 1,342 |
# AUTOGENERATED FILE
FROM balenalib/up-squared-fedora:32-build
ENV GO_VERSION 1.16.3
RUN mkdir -p /usr/local/go \
&& curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-amd64.tar.gz" \
&& echo "951a3c7c6ce4e56ad883f97d9db74d3d6d80d5fec77455c6ada6c1f7ac4776d2 go$GO_VERSION.linux-amd64.tar.gz" | sha... | nghiant2710/base-images | balena-base-images/golang/up-squared/fedora/32/1.16.3/build/Dockerfile | Dockerfile | apache-2.0 | 2,008 |
# AUTOGENERATED FILE
FROM balenalib/imx7-var-som-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",... | resin-io-library/base-images | balena-base-images/python/imx7-var-som/fedora/35/3.9.7/run/Dockerfile | Dockerfile | apache-2.0 | 2,434 |
#
# Copyright 2016 Confluent 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,... | confluentinc/cp-docker-images | debian/kafka-connect-base/Dockerfile | Dockerfile | apache-2.0 | 3,167 |
# AUTOGENERATED FILE
FROM balenalib/nuc-debian:stretch-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-ust0 \
... | nghiant2710/base-images | balena-base-images/dotnet/nuc/debian/stretch/2.1-runtime/build/Dockerfile | Dockerfile | apache-2.0 | 2,563 |
# AUTOGENERATED FILE
FROM balenalib/astro-tx2-alpine:3.10-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/astro-tx2/alpine/3.10/7-jre/run/Dockerfile | Dockerfile | apache-2.0 | 1,758 |
# AUTOGENERATED FILE
FROM balenalib/zc702-zynq7-fedora:30-run
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.pool... | nghiant2710/base-images | balena-base-images/node/zc702-zynq7/fedora/30/15.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,752 |
# AUTOGENERATED FILE
FROM balenalib/edison-alpine:3.12-run
# remove several traces of python
RUN apk del python*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# install python dependencies
RUN apk add --n... | resin-io-library/base-images | balena-base-images/python/edison/alpine/3.12/3.9.7/run/Dockerfile | Dockerfile | apache-2.0 | 4,122 |
# AUTOGENERATED FILE
FROM balenalib/edge-fedora:34-run
ENV NODE_VERSION 14.15.4
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver ha.pool.sks-k... | nghiant2710/base-images | balena-base-images/node/edge/fedora/34/14.15.4/run/Dockerfile | Dockerfile | apache-2.0 | 2,750 |
# AUTOGENERATED FILE
FROM balenalib/artik10-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 dependenc... | resin-io-library/base-images | balena-base-images/python/artik10/ubuntu/focal/3.7.12/run/Dockerfile | Dockerfile | apache-2.0 | 4,062 |
# AUTOGENERATED FILE
FROM balenalib/astro-tx2-debian:bookworm-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/astro-tx2/debian/bookworm/17.6.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,778 |
FROM centos:centos7.1.1503
ENV TZ "Asia/Shanghai"
ENV TERM xterm
ADD aliyun-mirror.repo /etc/yum.repos.d/CentOS-Base.repo
ADD aliyun-epel.repo /etc/yum.repos.d/epel.repo
RUN yum install -y curl wget tar bzip2 unzip vim-enhanced passwd sudo yum-utils hostname net-tools rsync man && \
yum install -y gcc gcc... | jack19861225/ciscodocker | labs/lab1/centos7/Dockerfile | Dockerfile | apache-2.0 | 718 |
# AUTOGENERATED FILE
FROM balenalib/revpi-core-3-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/revpi-core-3/debian/bookworm/5.0-runtime/build/Dockerfile | Dockerfile | apache-2.0 | 2,534 |
# AUTOGENERATED FILE
FROM balenalib/nanopi-neo-air-ubuntu:disco-run
ENV NODE_VERSION 15.14.0
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp... | nghiant2710/base-images | balena-base-images/node/nanopi-neo-air/ubuntu/disco/15.14.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,920 |
# AUTOGENERATED FILE
FROM balenalib/am571x-evm-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 \
; do ... | nghiant2710/base-images | balena-base-images/node/am571x-evm/alpine/3.10/15.10.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,957 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-nx-devkit-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
# insta... | resin-io-library/base-images | balena-base-images/python/jetson-xavier-nx-devkit/debian/bookworm/3.10.0/run/Dockerfile | Dockerfile | apache-2.0 | 4,108 |
# AUTOGENERATED FILE
FROM balenalib/astro-tx2-alpine:3.12-build
ENV NODE_VERSION 14.16.0
ENV YARN_VERSION 1.22.4
# Install dependencies
RUN apk add --no-cache libgcc libstdc++ libuv \
&& apk add --no-cache libssl1.0 || apk add --no-cache libssl1.1
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \... | nghiant2710/base-images | balena-base-images/node/astro-tx2/alpine/3.12/14.16.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,956 |
FROM eclipse-temurin:16-jdk-alpine
RUN apk add --no-cache curl tar bash procps
ARG MAVEN_VERSION=3.8.4
ARG USER_HOME_DIR="/root"
ARG SHA=a9b2d825eacf2e771ed5d6b0e01398589ac1bfa4171f36154d1b5787879605507802f699da6f7cfc80732a5282fd31b28e4cd6052338cbef0fa1358b48a5e3c8
ARG BASE_URL=https://apache.osuosl.org/maven/maven-3... | carlossg/docker-maven | eclipse-temurin-16-alpine/Dockerfile | Dockerfile | apache-2.0 | 969 |
# AUTOGENERATED FILE
FROM balenalib/rockpi-4b-rk3399-fedora:35-run
ENV NODE_VERSION 16.14.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver k... | resin-io-library/base-images | balena-base-images/node/rockpi-4b-rk3399/fedora/35/16.14.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,749 |
FROM ubuntu:14.04
MAINTAINER Sardo Ip <sardo.ip@sardo.work>
RUN sed -i 's/archive.ubuntu.com/ubuntu.stu.edu.tw\/ubuntu/g' /etc/apt/sources.list
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y software-properties-common python-software-properties
RUN DEBIAN_FRONTEND=noninteractive add-apt-repo... | dollars0427/policy-cleaner-web | policy-cleaner-web/Dockerfile | Dockerfile | apache-2.0 | 664 |
# AUTOGENERATED FILE
FROM balenalib/imx7-var-som-ubuntu:focal-build
ENV GO_VERSION 1.14.14
RUN mkdir -p /usr/local/go \
&& curl -SLO "http://resin-packages.s3.amazonaws.com/golang/v$GO_VERSION/go$GO_VERSION.linux-armv7hf.tar.gz" \
&& echo "93a87bdde7d5dd8c7ba0570fd811cebdfb988a6393f5f660f4595566120e0620 go$GO_VERS... | nghiant2710/base-images | balena-base-images/golang/imx7-var-som/ubuntu/focal/1.14.14/build/Dockerfile | Dockerfile | apache-2.0 | 2,030 |
# AUTOGENERATED FILE
FROM balenalib/parallella-hdmi-resin-alpine:3.11-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... | nghiant2710/base-images | balena-base-images/golang/parallella-hdmi-resin/alpine/3.11/1.15.7/build/Dockerfile | Dockerfile | apache-2.0 | 2,348 |
FROM index.alauda.cn/testbunker/docker-debian
RUN apt-get update && \
apt-get install -y openjdk-7-jre wget
ENV JAVA_HOME /usr/lib/jvm/java-6-openjdk-amd64
RUN (cd /tmp && \
wget https://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.4.0.tar.gz -O pkg.tar.gz && \
tar zxf pkg.tar.gz &... | macovok/docker-elasticsearch | Dockerfile | Dockerfile | apache-2.0 | 564 |
# AUTOGENERATED FILE
FROM balenalib/parallella-hdmi-resin-fedora:33-run
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
RUN dnf install -y \
python3-pip \
python3-dbus \
&& dnf clean all
# install "vir... | resin-io-library/base-images | balena-base-images/python/parallella-hdmi-resin/fedora/33/3.9.7/run/Dockerfile | Dockerfile | apache-2.0 | 2,443 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.