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/orangepi-plus2-debian:buster-run # A few reasons for installing distribution-provided OpenJDK: # # 1. Oracle. Licensing prevents us from redistributing the official JDK. # # 2. Compiling OpenJDK also requires the JDK to be installed, and it gets # really hairy. # # For so...
nghiant2710/base-images
balena-base-images/openjdk/orangepi-plus2/debian/buster/11-jdk/run/Dockerfile
Dockerfile
apache-2.0
3,844
# AUTOGENERATED FILE FROM balenalib/beaglebone-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 'dirname...
nghiant2710/base-images
balena-base-images/openjdk/beaglebone/alpine/3.13/8-jre/run/Dockerfile
Dockerfile
apache-2.0
1,759
FROM webratio/nodejs-with-android-sdk # Installs Cordova # Forces a platform add in order to preload libraries ENV CORDOVA_VERSION 3.6.3-0.2.13 RUN npm install -g npm && \ npm install -g cordova@${CORDOVA_VERSION} && \ cd /tmp && \ cordova create fakeapp && \ cd /tmp/fakeapp && \ cordova ...
webratio/docker
cordova/3.6.3-0.2.13/Dockerfile
Dockerfile
apache-2.0
433
# AUTOGENERATED FILE FROM balenalib/am571x-evm-debian:buster-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/am571x-evm/debian/buster/11-jre/build/Dockerfile
Dockerfile
apache-2.0
3,736
# AUTOGENERATED FILE FROM balenalib/raspberry-pi2-debian:stretch-run # A few reasons for installing distribution-provided OpenJDK: # # 1. Oracle. Licensing prevents us from redistributing the official JDK. # # 2. Compiling OpenJDK also requires the JDK to be installed, and it gets # really hairy. # # For so...
nghiant2710/base-images
balena-base-images/openjdk/raspberry-pi2/debian/stretch/8-jre/run/Dockerfile
Dockerfile
apache-2.0
3,102
FROM node:14.6.0-slim COPY ./ ./ RUN npm install ENV NODE_ENV production ENV DATABASE mysql CMD ["node", "app.js"]
volyrique/FrameworkBenchmarks
frameworks/JavaScript/fastify/fastify-mysql.dockerfile
Dockerfile
bsd-3-clause
119
FROM golang:1.14 WORKDIR /gearbox COPY ./src /gearbox RUN go get github.com/valyala/quicktemplate/qtc RUN go generate ./templates RUN go build -ldflags="-s -w" -o app . CMD ./app
volyrique/FrameworkBenchmarks
frameworks/Go/gearbox/gearbox.dockerfile
Dockerfile
bsd-3-clause
184
FROM alpine:3.2 ENV CONSUL_VERSION 0.5.2 ENV CONSUL_SHA256 171cf4074bfca3b1e46112105738985783f19c47f4408377241b868affa9d445 RUN apk --update add curl ca-certificates && \ curl -Ls https://circle-artifacts.com/gh/andyshinn/alpine-pkg-glibc/6/artifacts/0/home/ubuntu/alpine-pkg-glibc/packages/x86_64/glibc-2.21-r2.ap...
untoldone/docker-consul
0.5/consul/Dockerfile
Dockerfile
mit
786
FROM ubuntu-debootstrap RUN apt-get update && apt-get install -y netcat
raychaser/logspout-http
vendor/src/github.com/gliderlabs/logspout/debug/Dockerfile
Dockerfile
apache-2.0
72
# # Dockerfile for webhook # FROM alpine MAINTAINER kev <noreply@easypi.pro> RUN set -xe \ && apk add -U bash \ coreutils \ curl \ jq \ && rm -rf /var/cache/apk/* COPY ./webhook /usr/local/bin/ WORKDIR /scripts VOLUME /scripts EXPOSE 9000 ENTRYPOINT ["...
dprasanthv/DockerFiles
webhook/Dockerfile
Dockerfile
mit
344
FROM frolvlad/alpine-oraclejdk8:slim VOLUME /tmp ADD discovery-1.0.jar discovery-1.0.jar RUN sh -c 'touch /discovery-1.0.jar' ENV JAVA_OPTS="" ENTRYPOINT [ "sh", "-c", "java $JAVA_OPTS -Djava.security.egd=file:/dev/./urandom -jar /discovery-1.0.jar" ]
moneyice/hope
discovery/src/main/resources/Dockerfile
Dockerfile
mit
252
FROM ruby:2.3 MAINTAINER Marcio Mangar "marcio.mangar@gmail.com" # aliases RUN echo 'alias ".."="cd .."' >> /root/.bashrc RUN echo 'alias l="ls -lash"' >> /root/.bashrc RUN echo 'alias cl="clear"' >> /root/.bashrc RUN echo 'alias ll="cl; l"' >> /root/.bashrc RUN apt-get update && apt-get install -y \ build-essen...
mangar/docker
rails-pg/4.2.6/Dockerfile
Dockerfile
mit
637
FROM microsoft/dotnet:latest COPY . /app WORKDIR /app RUN ["dotnet", "restore"] RUN ["dotnet", "build"] EXPOSE 3000/tcp CMD ["dotnet", "run", "--server.urls", "http://*:3000"]
fusionalliance/autorenter-api-aspnetcore
Dockerfile
Dockerfile
mit
182
# Builder Image FROM python:3.8-slim-buster AS compile # Install Dependencies RUN apt-get -y update && apt-get install -y --fix-missing \ build-essential \ cmake \ gfortran \ git \ wget \ curl \ graphicsmagick \ libgraphicsmagick1-dev \ libatlas-base-dev \ libavcodec-dev \ l...
ageitgey/face_recognition
docker/cpu/Dockerfile
Dockerfile
mit
1,935
# This is a very basic Dockerfile for Minecraft. There are better # ones out there, I just wanted to demonstrate building a Docker # container. FROM java:7 RUN wget https://s3.amazonaws.com/Minecraft.Download/versions/1.7.10/minecraft_server.1.7.10.jar CMD java -jar minecraft_server.1.7.10.jar EXPOSE 25565
orospakr/diatropikon
example/images/minecraft/Dockerfile
Dockerfile
mit
314
FROM golang:1.4.2 #MAINTAINER dreampuf <soddyque@gmail.com> # #RUN mkdir -p /opt/exddd/web/src #RUN go get github.com/revel/revel #RUN go get github.com/revel/cmd/revel #RUN go get github.com/jinzhu/gorm # #ENV GOPATH "/opt/exddd/web/" # #WORKDIR /opt/exddd/web #ADD ./src/web /opt/exddd/web/src/ #RUN ./bin/revel packa...
dreampuf/exddd
web/Dockerfile
Dockerfile
mit
327
# Generated automatically by update.sh # Do no edit this file FROM bigtruedata/scala:2.11.2-alpine # Install build dependencies RUN apk add --no-cache --virtual=.dependencies tar wget Run wget -O- "https://github.com/sbt/sbt/releases/download/v1.0.0/sbt-1.0.0.tgz" \ | tar xzf - -C /usr/local --strip-components=...
bigtruedata/docker-sbt
1.0.0/alpine/2.11.2/Dockerfile
Dockerfile
mit
445
FROM base/archlinux MAINTAINER Maximilian Huber <maximilian.huber@tngtech.com> RUN set -x \ && pacman-db-upgrade \ && pacman -Syy --noconfirm \ && pacman -S --noconfirm wget RUN wget https://aur.archlinux.org/cgit/aur.git/snapshot/mutt-sidebar.tar.gz COPY docker-entrypoint.sh /usr/local/bin/entrypoint.sh ENTRYPOIN...
maximilianhuber/myconfig
dotfiles/docker/dockerfiles/mutt/Dockerfile
Dockerfile
mit
368
FROM mongo:latest WORKDIR / RUN apt-get update RUN apt-get install -y build-essential curl git # install go into /go directory RUN curl https://storage.googleapis.com/golang/go1.7.linux-amd64.tar.gz | tar xfz - ENV GOROOT=/go ENV PATH=$GOROOT/bin:$PATH ENV GOPATH=/gopath RUN go env
KIT-MAMID/mamid
docker/builder.dockerfile
Dockerfile
mit
287
# AlpineLinux with a glibc-2.23 and Oracle Java 8 FROM tomaer/alpine:edge-utc-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 # Java...
tomaer/docker-oracle-java
X86/8/utc-aliyun/92b14/unlimited/server-jre/Dockerfile
Dockerfile
mit
3,685
FROM node:4.4.7 RUN useradd --user-group --create-home --shell /bin/false nodejs ENV HOME=/home/nodejs ENV NODE_ENV=production COPY . $HOME/ WORKDIR $HOME/ RUN npm start EXPOSE 80
aclarke822/angular-demo
Dockerfile
Dockerfile
mit
180
# AUTOGENERATED FILE FROM balenalib/nitrogen6xq2g-alpine:3.12-build ENV GO_VERSION 1.16 # 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/nitrogen6xq2g/alpine/3.12/1.16/build/Dockerfile
Dockerfile
apache-2.0
2,336
FROM dockerfile/nodejs MAINTAINER F4 <dev@f4-group.com> RUN apt-get update RUN DEBIAN_FRONTEND=noninteractive apt-get install -y wget nginx-full RUN npm install -g grunt RUN (cd /tmp && wget -nv --no-check-certificate http://download.elasticsearch.org/kibana/kibana/kibana-latest.tar.gz -O pkg.tar.gz && tar zxf pkg.tar...
sbmandava/nscale-bigdata-blue-print1
build/kibana/Dockerfile
Dockerfile
apache-2.0
595
# AUTOGENERATED FILE FROM balenalib/artik533s-debian:stretch-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-ge...
nghiant2710/base-images
balena-base-images/golang/artik533s/debian/stretch/1.16.3/run/Dockerfile
Dockerfile
apache-2.0
2,355
FROM ubuntu:14.04 MAINTAINER CenturyLink # Install node & npm RUN apt-get -qqy update && \ DEBIAN_FRONTEND=noninteractive apt-get -y install vim git nodejs npm RUN ln -s /usr/bin/nodejs /usr/bin/node # Install Wetty WORKDIR /opt/wetty RUN git clone https://github.com/krishnasrinivas/wetty.git . && \ git reset --h...
CenturyLinkLabs/docker-wetty-cli
Dockerfile
Dockerfile
apache-2.0
631
FROM alpine:3.9 RUN apk add --no-cache wrk ca-certificates ENTRYPOINT ["wrk"]
ben-st/dockerfiles
wrk/Dockerfile
Dockerfile
apache-2.0
78
# AUTOGENERATED FILE FROM balenalib/artik5-ubuntu:xenial-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$GO_VERSION.li...
nghiant2710/base-images
balena-base-images/golang/artik5/ubuntu/xenial/1.15.8/build/Dockerfile
Dockerfile
apache-2.0
2,024
# escape=` FROM microsoft/aspnet:windowsservercore-10.0.14393.693 SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"] RUN Set-ItemProperty -path 'HKLM:\SYSTEM\CurrentControlSet\Services\Dnscache\Parameters' -Name ServerPriorityTimeLimit -Value 0 -Type DWord R...
ManoMarks/labs
dockercon-us-2017/windows-modernize-aspnet-dev/v1-src/docker/web/Dockerfile
Dockerfile
apache-2.0
596
FROM alpine:latest ARG OPENJDK9_ALPINE_URL=http://download.java.net/java/jdk9-alpine/archive/181/binaries/serverjre-9-ea+181_linux-x64-musl_bin.tar.gz # Download and untar openjdk9-alpine from $OPENJDK9_ALPINE_URL RUN mkdir -p /usr/lib/jvm \ && wget -c -O- --header "Cookie: oraclelicense=accept-securebackup-cookie"...
Cantara/maven-infrastructure
docker-baseimages/alpine-openjdk-jdk9/Dockerfile
Dockerfile
apache-2.0
491
# AUTOGENERATED FILE FROM balenalib/bananapi-m1-plus-fedora:33-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 ke...
resin-io-library/base-images
balena-base-images/node/bananapi-m1-plus/fedora/33/17.6.0/run/Dockerfile
Dockerfile
apache-2.0
2,751
# AUTOGENERATED FILE FROM balenalib/kitra710-fedora:32-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", s...
nghiant2710/base-images
balena-base-images/python/kitra710/fedora/32/3.8.6/build/Dockerfile
Dockerfile
apache-2.0
2,435
# AUTOGENERATED FILE FROM balenalib/beaglebone-green-wifi-ubuntu:xenial-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 --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyse...
nghiant2710/base-images
balena-base-images/node/beaglebone-green-wifi/ubuntu/xenial/12.22.1/run/Dockerfile
Dockerfile
apache-2.0
2,929
# AUTOGENERATED FILE FROM balenalib/raspberry-pi-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 a...
nghiant2710/base-images
balena-base-images/python/raspberry-pi/alpine/edge/3.9.4/run/Dockerfile
Dockerfile
apache-2.0
4,132
# AUTOGENERATED FILE FROM balenalib/generic-amd64-fde-alpine:3.14-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 '...
resin-io-library/base-images
balena-base-images/openjdk/generic-amd64-fde/alpine/3.14/7-jre/run/Dockerfile
Dockerfile
apache-2.0
1,781
# AUTOGENERATED FILE FROM balenalib/spacely-tx2-ubuntu:cosmic-build ENV NODE_VERSION 12.20.1 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \ gpg --keyserver ...
nghiant2710/base-images
balena-base-images/node/spacely-tx2/ubuntu/cosmic/12.20.1/build/Dockerfile
Dockerfile
apache-2.0
2,760
FROM fjctp/armhf-ros-kinetic-base:latest RUN apt-get update && apt-get install -y --no-install-recommends \ build-essential \ curl \ libfreetype6-dev \ libpng12-dev \ libzmq3-dev \ pkg-config \ python \ python-dev \ python-numpy \ python-s...
esahin90/rpi-docker-ros-tensorflow
build-tensor-pi/Dockerfile
Dockerfile
apache-2.0
1,598
# AUTOGENERATED FILE FROM balenalib/beaglebone-green-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...
nghiant2710/base-images
balena-base-images/python/beaglebone-green/alpine/3.10/3.8.6/build/Dockerfile
Dockerfile
apache-2.0
4,843
# AUTOGENERATED FILE FROM balenalib/generic-amd64-fde-ubuntu:focal-build ENV NODE_VERSION 12.22.9 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \ gpg --keyse...
resin-io-library/base-images
balena-base-images/node/generic-amd64-fde/ubuntu/focal/12.22.9/build/Dockerfile
Dockerfile
apache-2.0
2,765
FROM balenalib/aarch64-debian:jessie-run LABEL io.balena.device-type="orbitty-tx2" 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/orbitty-tx2/debian/jessie/run/Dockerfile
Dockerfile
apache-2.0
1,090
# AUTOGENERATED FILE FROM balenalib/up-board-debian:stretch-build ENV GO_VERSION 1.15.6 RUN mkdir -p /usr/local/go \ && curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-amd64.tar.gz" \ && echo "3918e6cc85e7eaaa6f859f1bdbaac772e7a825b0eb423c63d3ae68b21f84b844 go$GO_VERSION.linux-amd64.tar.gz" | ...
nghiant2710/base-images
balena-base-images/golang/up-board/debian/stretch/1.15.6/build/Dockerfile
Dockerfile
apache-2.0
2,014
# AUTOGENERATED FILE FROM balenalib/rpi-alpine:3.13-run ENV GO_VERSION 1.15.11 # 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/rpi/alpine/3.13/1.15.11/run/Dockerfile
Dockerfile
apache-2.0
2,462
# AUTOGENERATED FILE FROM balenalib/cubox-i-ubuntu:xenial-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.po...
nghiant2710/base-images
balena-base-images/node/cubox-i/ubuntu/xenial/15.6.0/build/Dockerfile
Dockerfile
apache-2.0
2,758
# AUTOGENERATED FILE FROM balenalib/spacely-tx2-fedora:33-build ENV GO_VERSION 1.15.11 RUN mkdir -p /usr/local/go \ && curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \ && echo "bfc8f07945296e97c6d28c7999d86b5cab51c7a87eb2b22ca6781c41a6bb6f2d go$GO_VERSION.linux-arm64.tar.gz" | s...
nghiant2710/base-images
balena-base-images/golang/spacely-tx2/fedora/33/1.15.11/build/Dockerfile
Dockerfile
apache-2.0
1,996
FROM tensorflow/tensorflow:0.10.0-devel MAINTAINER Curtis Hawthorne <fjord@google.com> # Download and build Magenta. ENV MAGENTA_MASTER_REF ec86d0a57d274ac3b20d3d467098e91651107ac3 WORKDIR / RUN git clone https://github.com/tensorflow/magenta.git && \ cd magenta && \ git reset --hard $MAGENTA_MASTER_REF WOR...
hanzorama/magenta
magenta/tools/docker/Dockerfile
Dockerfile
apache-2.0
712
# AUTOGENERATED FILE FROM balenalib/beaglebone-pocket-debian:buster-run RUN apt-get update \ && apt-get install -y --no-install-recommends \ ca-certificates \ curl \ \ # .NET Core dependencies libc6 \ libgcc1 \ libgssapi-krb5-2 \ libicu63 \ libssl1.1 ...
nghiant2710/base-images
balena-base-images/dotnet/beaglebone-pocket/debian/buster/5.0-sdk/run/Dockerfile
Dockerfile
apache-2.0
2,946
# AUTOGENERATED FILE FROM balenalib/colibri-imx6dl-fedora:30-run ENV GO_VERSION 1.15.8 # gcc for cgo RUN dnf install -y \ gcc-c++ \ gcc \ git \ && dnf clean all 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...
nghiant2710/base-images
balena-base-images/golang/colibri-imx6dl/fedora/30/1.15.8/run/Dockerfile
Dockerfile
apache-2.0
2,104
FROM keycloak-adapter-wildfly ADD dist/*.war /opt/jboss/wildfly/standalone/deployments/
abstractj/docker
keycloak/keycloak-adapter-test/Dockerfile
Dockerfile
apache-2.0
90
# AUTOGENERATED FILE FROM balenalib/raspberrypi0-2w-64-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 63C7...
resin-io-library/base-images
balena-base-images/python/raspberrypi0-2w-64/debian/bookworm/3.9.10/build/Dockerfile
Dockerfile
apache-2.0
4,866
# AUTOGENERATED FILE FROM balenalib/photon-tx2-nx-debian:bullseye-run ENV Logging__Console__FormatterName=Json RUN apt-get update \ && apt-get install -y --no-install-recommends \ ca-certificates \ curl \ \ # .NET Core dependencies libc6 \ libgcc1 \ libgssapi-krb5-2...
resin-io-library/base-images
balena-base-images/dotnet/photon-tx2-nx/debian/bullseye/6.0-aspnet/run/Dockerfile
Dockerfile
apache-2.0
3,176
# AUTOGENERATED FILE FROM balenalib/parallella-hdmi-resin-alpine:edge-run ENV GO_VERSION 1.15.11 # 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/edge/1.15.11/run/Dockerfile
Dockerfile
apache-2.0
2,480
# AUTOGENERATED FILE FROM balenalib/aarch64-alpine:edge-build # remove several traces of python RUN apk del python* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # key 63C7CC90: public key "Simon McVittie...
nghiant2710/base-images
balena-base-images/python/aarch64/alpine/edge/3.7.9/build/Dockerfile
Dockerfile
apache-2.0
4,834
# AUTOGENERATED FILE FROM balenalib/armv7hf-ubuntu:focal-build ENV Logging__Console__FormatterName=Json RUN apt-get update \ && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ ca-certificates \ \ # .NET Core dependencies libc6 \ libgcc1 \ ...
resin-io-library/base-images
balena-base-images/dotnet/armv7hf/ubuntu/focal/6.0-aspnet/build/Dockerfile
Dockerfile
apache-2.0
3,198
FROM python:3.6 RUN pip3 install news-please --upgrade COPY docker.sh / RUN chmod +x /docker.sh CMD ["/docker.sh"]
fhamborg/news-please
cc-docker/Dockerfile
Dockerfile
apache-2.0
118
# AUTOGENERATED FILE FROM balenalib/photon-nano-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 de...
resin-io-library/base-images
balena-base-images/python/photon-nano/debian/bookworm/3.8.12/run/Dockerfile
Dockerfile
apache-2.0
4,096
# AUTOGENERATED FILE FROM balenalib/solidrun-imx6-debian:sid-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_VERSIO...
nghiant2710/base-images
balena-base-images/golang/solidrun-imx6/debian/sid/1.15.6/build/Dockerfile
Dockerfile
apache-2.0
2,025
# AUTOGENERATED FILE FROM balenalib/firefly-rk3288-debian:sid-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$GO_VERSI...
nghiant2710/base-images
balena-base-images/golang/firefly-rk3288/debian/sid/1.15.8/build/Dockerfile
Dockerfile
apache-2.0
2,026
# AUTOGENERATED FILE FROM balenalib/coral-dev-alpine:3.10-run # remove several traces of python RUN apk del python* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # install python dependencies RUN apk add ...
nghiant2710/base-images
balena-base-images/python/coral-dev/alpine/3.10/3.6.12/run/Dockerfile
Dockerfile
apache-2.0
4,131
# AUTOGENERATED FILE FROM balenalib/via-vab820-quad-alpine:3.15-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...
resin-io-library/base-images
balena-base-images/openjdk/via-vab820-quad/alpine/3.15/7-jdk/run/Dockerfile
Dockerfile
apache-2.0
1,760
# AUTOGENERATED FILE FROM balenalib/ts4900-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 'dirname "$(...
nghiant2710/base-images
balena-base-images/openjdk/ts4900/alpine/3.11/7-jdk/run/Dockerfile
Dockerfile
apache-2.0
1,751
# AUTOGENERATED FILE FROM balenalib/apalis-imx6-ubuntu:focal-build ENV NODE_VERSION 12.20.1 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \ gpg --keyserver h...
nghiant2710/base-images
balena-base-images/node/apalis-imx6/ubuntu/focal/12.20.1/build/Dockerfile
Dockerfile
apache-2.0
2,762
# AUTOGENERATED FILE FROM balenalib/raspberrypi2-ubuntu:impish-run ENV NODE_VERSION 12.22.9 ENV YARN_VERSION 1.22.4 RUN buildDeps='curl libatomic1' \ && set -x \ && for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp....
resin-io-library/base-images
balena-base-images/node/raspberrypi2/ubuntu/impish/12.22.9/run/Dockerfile
Dockerfile
apache-2.0
2,914
# AUTOGENERATED FILE FROM balenalib/nuc-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: public key "...
nghiant2710/base-images
balena-base-images/python/nuc/ubuntu/disco/3.8.9/build/Dockerfile
Dockerfile
apache-2.0
4,829
# AUTOGENERATED FILE FROM balenalib/up-squared-fedora:32-run ENV GO_VERSION 1.14.13 # 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 "bfea0c8d7b70c1ad99b0266b...
nghiant2710/base-images
balena-base-images/golang/up-squared/fedora/32/1.14.13/run/Dockerfile
Dockerfile
apache-2.0
2,088
# AUTOGENERATED FILE FROM balenalib/generic-armv7ahf-ubuntu:impish-build ENV GO_VERSION 1.16.14 RUN mkdir -p /usr/local/go \ && curl -SLO "http://resin-packages.s3.amazonaws.com/golang/v$GO_VERSION/go$GO_VERSION.linux-armv7hf.tar.gz" \ && echo "8a8e06b02a5e7339675cbbad9eb46a0db2cab7da21306de7c3a60d37a6a96022 go$GO...
resin-io-library/base-images
balena-base-images/golang/generic-armv7ahf/ubuntu/impish/1.16.14/build/Dockerfile
Dockerfile
apache-2.0
2,036
# AUTOGENERATED FILE FROM balenalib/parallella-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/parallella/alpine/edge/1.15.7/build/Dockerfile
Dockerfile
apache-2.0
2,337
# AUTOGENERATED FILE FROM balenalib/orbitty-tx2-ubuntu:focal-build ENV Logging__Console__FormatterName=Json RUN apt-get update \ && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ ca-certificates \ \ # .NET Core dependencies libc6 \ libgcc1 \ ...
resin-io-library/base-images
balena-base-images/dotnet/orbitty-tx2/ubuntu/focal/6.0-aspnet/build/Dockerfile
Dockerfile
apache-2.0
3,206
# AUTOGENERATED FILE FROM balenalib/am571x-evm-debian:buster-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/am571x-evm/debian/buster/1.15.11/run/Dockerfile
Dockerfile
apache-2.0
2,356
# AUTOGENERATED FILE FROM balenalib/edge-ubuntu:bionic-build ENV GO_VERSION 1.14.13 RUN mkdir -p /usr/local/go \ && curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-amd64.tar.gz" \ && echo "bfea0c8d7b70c1ad99b0266b321608db57df75820e8f4333efa448a43da01992 go$GO_VERSION.linux-amd64.tar.gz" | sha2...
nghiant2710/base-images
balena-base-images/golang/edge/ubuntu/bionic/1.14.13/build/Dockerfile
Dockerfile
apache-2.0
2,010
FROM golang:1.11.4 RUN apt-get update -yqq ADD ./ /aah WORKDIR /aah ENV GOPATH /aah ENV PATH ${GOPATH}/bin:${PATH} ENV GO111MODULE on RUN curl -sL https://aahframework.org/install-cli | bash -s v0.13.3 WORKDIR /aah/src/benchmark RUN aah --version RUN mkdir -p views/common RUN aah build --single CMD build/bin/ben...
jeevatkm/FrameworkBenchmarks
frameworks/Go/aah/aah-postgresql.dockerfile
Dockerfile
bsd-3-clause
358
FROM dimagi/commcarehq_base:latest VOLUME /mnt/commcare-hq-ro /mnt/lib RUN ln -s /mnt/commcare-hq-ro/docker/run.sh /mnt/run.sh && \ ln -s /mnt/commcare-hq-ro/docker/wait.sh /mnt/wait.sh && \ groupadd -r cchq && useradd -r -g cchq cchq ENTRYPOINT ["/mnt/run.sh"]
qedsoftware/commcare-hq
docker/Dockerfile
Dockerfile
bsd-3-clause
272
FROM linuxkit/alpine:cba395fbc278daee841106801aba1e1bd7e0f2f7 AS mirror RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/ RUN apk add --initdb -p /out alpine-baselayout apk-tools audit busybox tini # Remove apk residuals. We have a read-only rootfs, so apk is of no use. RUN rm -rf /out/etc/apk /out/lib/apk ...
thebsdbox/linuxkit
pkg/auditd/Dockerfile
Dockerfile
apache-2.0
534
# AUTOGENERATED FILE FROM balenalib/generic-debian:bullseye-run # A few reasons for installing distribution-provided OpenJDK: # # 1. Oracle. Licensing prevents us from redistributing the official JDK. # # 2. Compiling OpenJDK also requires the JDK to be installed, and it gets # really hairy. # # For some sa...
nghiant2710/base-images
balena-base-images/openjdk/generic/debian/bullseye/11-jdk/run/Dockerfile
Dockerfile
apache-2.0
3,856
# 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 use ...
andrewsomething/libcloud
contrib/Dockerfile
Dockerfile
apache-2.0
1,819
FROM anapsix/alpine-java ARG ENVIRONMENT ARG APP_NAME ARG APP_VERSION ADD target/${APP_NAME}_${APP_VERSION}.jar app.jar ENV APP_NAME=${APP_NAME} ENV APP_VERSION=${APP_VERSION} EXPOSE 8081 9990 ENTRYPOINT ["sh", "-c", "java -Djava.security.egd=file:/dev/./urandom -Dconfig.resource=application.${ENVIRONMENT}.conf -ja...
PScopelliti/ProjectTracker
note-service/Dockerfile
Dockerfile
apache-2.0
333
# AUTOGENERATED FILE FROM balenalib/apalis-imx6-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 'dirnam...
nghiant2710/base-images
balena-base-images/openjdk/apalis-imx6/alpine/3.13/8-jre/run/Dockerfile
Dockerfile
apache-2.0
1,760
FROM java:8-jre # grab gosu for easy step-down from root RUN gpg --keyserver ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 RUN curl -o /usr/local/bin/gosu -SL "https://github.com/tianon/gosu/releases/download/1.2/gosu-$(dpkg --print-architecture)" \ && curl -o /usr/local/bin/gosu.asc...
Crowdmix/elasticsearch-nocluster
1.3/Dockerfile
Dockerfile
apache-2.0
1,175
# Check out horovod source code if --build-arg CHECKOUT_HOROVOD_SRC=1 ARG CHECKOUT_HOROVOD_SRC=0 RUN test "${CHECKOUT_HOROVOD_SRC}" -eq 1 && git clone --recursive https://github.com/uber/horovod.git /horovod_src || true
jhseu/tensorflow
tensorflow/tools/dockerfiles/partials/mkl_horovod/devel-horovod.partial.Dockerfile
Dockerfile
apache-2.0
220
FROM ubuntu:16.04 MAINTAINER Craig Citro <craigcitro@google.com> # Pick up some TF dependencies RUN apt-get update && apt-get install -y --no-install-recommends \ build-essential \ curl \ libfreetype6-dev \ libpng12-dev \ libzmq3-dev \ pkg-config \ python \ ...
npuichigo/ttsflow
third_party/tensorflow/tensorflow/tools/docker/Dockerfile
Dockerfile
apache-2.0
1,722
# image to use FROM debian:jessie # apt-get what we need RUN apt update && DEBIAN_FRONTEND=noninteractive apt install -y \ sudo \ telnet \ curl \ vim \ nano \ net-tools \ wget \ apache2 \ php5 \ libapache2-mod-php5 \ mysql-client \ php5-memcached \ php5-mysqlnd \ php5-gd \ php5-curl \ p...
zak-schlemmer/robot
template/robot-system/apache2/Dockerfile
Dockerfile
mit
2,460
FROM postgres:9.5 MAINTAINER njordan@hsr.ch RUN localedef -i en_US -c -f UTF-8 -A /usr/share/locale/locale.alias en_US.UTF-8 ENV LANG en_US.utf8 ENV POSTGIS_MAJOR 2.1 RUN ["echo", "deb http://http.debian.net/debian jessie-backports main", ">>", "/etc/apt/sources.list"] RUN DEBIAN_FRONTEND=noninteractive apt-get upd...
geometalab/osm-world-db
postgis.Dockerfile
Dockerfile
mit
542
FROM msaraiva/elixir-dev:1.2.4 MAINTAINER Joseph Yi <joe@josephyi.com> # Borrowed node install from smebberson/alpine-nodejs ENV NODE_VERSION=v6.0.0 NPM_VERSION=3 RUN apk add --update inotify-tools git curl make gcc g++ python linux-headers libgcc libstdc++ binutils-gold && \ curl -sSL https://nodejs.org/dist/${N...
josephyi/docker-alpine-phoenix
Dockerfile
Dockerfile
mit
1,071
FROM nodesource/centos5-base MAINTAINER William Blankenship <wblankenship@nodesource.com> RUN curl -sL -o ns.rpm https://rpm.nodesource.com/pub/el/5/x86_64/nodejs-0.10.45-1nodesource.el5.centos.x86_64.rpm \ && rpm -i --nosignature --force ns.rpm \ && rm -f ns.rpm RUN npm install -g pangyp\ && ln -s $(which pangyp)...
nodesource/docker-node
centos/5/node/0.10.45/Dockerfile
Dockerfile
mit
478
FROM golang:1.5.1 RUN mkdir /app COPY . /app WORKDIR /app RUN apt-get update && apt-get install -y wget RUN wget https://github.com/jwilder/dockerize/releases/download/v0.1.0/dockerize-linux-amd64-v0.1.0.tar.gz RUN tar -C /usr/local/bin -xzvf dockerize-linux-amd64-v0.1.0.tar.gz
mefellows/dockerize-compose-demo
test/Dockerfile
Dockerfile
mit
280
FROM {{ service_base_image.image }} COPY address/setup.py address/MANIFEST.in /address/ COPY address/address /address/address/ RUN pip3 install --no-cache-dir /address && \ rm -rf /address EXPOSE 5000
cseed/hail
address/Dockerfile
Dockerfile
mit
205
FROM ruby:2.3.3 RUN apt-get update -qq && \ apt-get install -y \ build-essential \ nmap \ redis-server \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* \ && mkdir /app WORKDIR /app VOLUME ["/var/lib/redis","/app/scans"] # Solve application dependencies ADD Ge...
andersonDadario/costa-scanner
Dockerfile
Dockerfile
mit
506
# Base image is gcc build env FROM gcc:8.3.0 as builder # log4c WORKDIR /opt/energenie_mqtt_client/log4c RUN curl -SL http://prdownloads.sourceforge.net/log4c/log4c-1.2.4.tar.gz \ | tar -xzC . \ && cd log4c-1.2.4 \ && ./configure \ && make && make install \ && rm -rf /opt/energenie_mqtt_client/l...
gpbenton/engMQTTClient
docker/Dockerfile
Dockerfile
mit
2,344
FROM java:7 MAINTAINER xausky xausky@gmail.com ENV KAFKA_VERSION 0.10.0.1 ENV SCALA_VERSION 2.10 WORKDIR / COPY initialize.sh . RUN ./initialize.sh WORKDIR /kafka COPY entrypoint.sh . ENTRYPOINT ["./entrypoint.sh"] EXPOSE 2181 9092
xausky/docker-kafka
Dockerfile
Dockerfile
mit
241
FROM python:3.9 WORKDIR /usr/src/app COPY requirements.txt /usr/src/app/ RUN groupadd -r atlasso && useradd -r -g atlasso atlasso && \ pip install --no-cache-dir -r requirements.txt COPY . /usr/src/app USER atlasso EXPOSE 8000 ENV PYTHONUNBUFFERED=1 # NOTE: if increasing --workers, switch from in-memory sqlite to ...
tracon/kompassi-atlasso
Dockerfile
Dockerfile
mit
444
# AUTOGENERATED FILE FROM balenalib/cl-som-imx8-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 \ ' \ && apt-ge...
nghiant2710/base-images
balena-base-images/golang/cl-som-imx8/ubuntu/disco/1.16.3/run/Dockerfile
Dockerfile
apache-2.0
2,324
# Copyright 2021 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, ...
googleapis/google-cloud-cpp
ci/cloudbuild/dockerfiles/debian-stretch.Dockerfile
Dockerfile
apache-2.0
5,653
FROM orchardup/python:2.7 RUN pip install Flask srvlookup RUN pip install cassandra-driver RUN pip install kafka-python RUN pip install uwsgi ADD . /code WORKDIR /code CMD uwsgi --http 0.0.0.0:8080 --wsgi-file perimeter.py --callable app --master --no-default-app -p 10 --max-requests 3
mesosphere/hackers-at-berkeley
perimeter/Dockerfile
Dockerfile
apache-2.0
287
# AUTOGENERATED FILE FROM balenalib/artik533s-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/artik533s/debian/bookworm/3.1-sdk/build/Dockerfile
Dockerfile
apache-2.0
2,916
# AUTOGENERATED FILE FROM balenalib/aarch64-alpine:3.10-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/aarch64/alpine/3.10/14.16.0/build/Dockerfile
Dockerfile
apache-2.0
2,954
# AUTOGENERATED FILE FROM balenalib/odroid-ux3-ubuntu:xenial-build ENV NODE_VERSION 12.22.9 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \ gpg --keyserver k...
resin-io-library/base-images
balena-base-images/node/odroid-ux3/ubuntu/xenial/12.22.9/build/Dockerfile
Dockerfile
apache-2.0
2,757
FROM ubuntu:14.04 MAINTAINER jerome.petazzoni@docker.com # Let's start with some basic stuff. RUN apt-get update -qq && apt-get install -qqy \ apt-transport-https \ ca-certificates \ curl \ lxc \ iptables \ software-properties-common # Install Docker from Docker Inc. repositories. RUN curl...
ContainerSolutions/dind
Dockerfile
Dockerfile
apache-2.0
1,188
# AUTOGENERATED FILE FROM balenalib/n510-tx2-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/n510-tx2/ubuntu/focal/3.9.7/build/Dockerfile
Dockerfile
apache-2.0
4,824
# AUTOGENERATED FILE FROM balenalib/smarc-px30-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/smarc-px30/debian/bookworm/3.10.2/build/Dockerfile
Dockerfile
apache-2.0
4,858
# AUTOGENERATED FILE FROM balenalib/nanopi-neo-air-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 'dir...
nghiant2710/base-images
balena-base-images/openjdk/nanopi-neo-air/alpine/3.11/8-jdk/run/Dockerfile
Dockerfile
apache-2.0
1,759
FROM arm32v7/debian:stretch-slim LABEL io.balena.architecture="armv7hf" LABEL io.balena.qemu.version="6.0.0+balena1-arm" COPY qemu-arm-static /usr/bin RUN apt-get update && apt-get install -y --no-install-recommends \ sudo \ ca-certificates \ findutils \ gnupg \ dirmngr \ inetutils-ping \ netbase \ ...
resin-io-library/base-images
balena-base-images/armv7hf/debian/stretch/build/Dockerfile
Dockerfile
apache-2.0
4,302
# AUTOGENERATED FILE FROM balenalib/nanopc-t4-ubuntu:disco-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 --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.com ...
nghiant2710/base-images
balena-base-images/node/nanopc-t4/ubuntu/disco/10.23.1/run/Dockerfile
Dockerfile
apache-2.0
2,911