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
# Copyright 2014 The Go Authors. All rights reserved. # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. # Normal Linux builder VM # Docker tag gobuilders/linux-x86-std FROM debian:wheezy MAINTAINER golang-dev <golang-dev@googlegroups.com> ENV DEBIAN_FRONTEND nonint...
proppy/build
env/linux-x86-std/Dockerfile
Dockerfile
bsd-3-clause
2,240
FROM python:3.6.5 ADD ./ /cherrypy WORKDIR /cherrypy RUN pip3 install -r /cherrypy/requirements.txt CMD python3 app.py
zapov/FrameworkBenchmarks
frameworks/Python/cherrypy/cherrypy-py3.dockerfile
Dockerfile
bsd-3-clause
123
# # Usage example: # $ docker build -t ssh-chat . # $ docker run -d -p 0.0.0.0:(your host machine port):2022 --name ssh-chat ssh-chat # FROM golang:1.4 MAINTAINER Alvin Lai <al@alvinlai.com> RUN apt-get update RUN apt-get install -y openssh-client RUN go get github.com/shazow/ssh-chat RUN ssh-keygen -f ~/.ssh/id_rsa ...
gale320/ssh-chat
Dockerfile
Dockerfile
mit
433
# 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
projects/brotli/Dockerfile
Dockerfile
apache-2.0
856
FROM centos ADD run.sh / CMD ["/run.sh"]
brgaulin/bigrig
test/logs/container2/Dockerfile
Dockerfile
bsd-3-clause
42
FROM swift:4.2 ADD ./ /vapor WORKDIR /vapor RUN swift build -c release CMD .build/release/Run -e production -b 0.0.0.0:8080
zloster/FrameworkBenchmarks
frameworks/Swift/vapor/vapor.dockerfile
Dockerfile
bsd-3-clause
126
FROM gcr.io/google_containers/spark-base:latest ADD start.sh / ADD log4j.properties /opt/spark/conf/log4j.properties EXPOSE 7077 8080 ENTRYPOINT ["/start.sh"]
mamikonyana/kubernetes
examples/spark/images/master/Dockerfile
Dockerfile
apache-2.0
161
FROM debian:stretch MAINTAINER Onni Hakala <onni@keksi.io> ENV DEBIAN_FRONTEND=noninteractive # Set debconf to run non-interactively RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections RUN set -x \ # Add all deb-src addresses && echo "deb http://deb.debian.org/debian stretch m...
pihvi-io/docker-base
debian/Dockerfile
Dockerfile
mit
3,023
FROM ubuntu:18.04 AS shell-ubuntu LABEL version='18.04' LABEL author='Jongho Kim' ENV DEBIAN_FRONTEND noninteractive COPY .bashrc /root COPY .Xmodmap /root RUN apt-get update; apt-get install -y --no-install-recommends apt-utils; apt-get install -y rlwrap openjdk-8-jdk openjdk-11-jdk ###############################...
BellScurry/config
shell/Dockerfile
Dockerfile
mit
1,698
FROM python:3.9 MAINTAINER Arne Schauf RUN apt-get update && apt-get upgrade -y && apt-get install -y python-pip python-dev ADD requirements.txt /opt/requirements.txt RUN pip install -r /opt/requirements.txt VOLUME /srv/bepasty ENV BEPASTY_CONFIG /srv/bepasty/bepasty.conf ENV PYTHONUNBUFFERED 0 EXPOSE 5000 WORKDIR /...
asmaps/bepasty-docker
Dockerfile
Dockerfile
mit
460
FROM heroku/heroku:18 # install flex RUN apt-get update \ && apt-get -y --force-yes --no-install-recommends install flex libfl-dev bison libpng-dev g++ libicu-dev \ && rm -rf /var/cache/apt/archives/*.deb RUN mkdir -p /tmp/cfdg \ && curl -s -L https://github.com/MtnViewJohn/context-free/archive/Version3.2_2.tar...
kn1kn1/go-cfdg
build-cfdg/Dockerfile
Dockerfile
mit
401
# Pull base image FROM resin/rpi-raspbian:wheezy MAINTAINER Markus Fix <lispmeister@gmail.com> # Install wget, extra repositories and erlang-mini ADD install.sh / RUN /install.sh # Define working directory WORKDIR /data # Define default command CMD ["bash"] EXPOSE 9100-9105 4369
lispmeister/rpi-erlang-mini
Dockerfile
Dockerfile
mit
284
FROM python:3.6-buster ENV CHROME_EXECUTABLE_PATH="/usr/bin/google-chrome-stable" RUN apt-get update && apt-get install -y \ apt-transport-https \ ca-certificates \ curl \ gnupg \ --no-install-recommends \ && curl -sSL https://dl.google.com/linux/linux_signing_key.pub | apt-key add - \ && ...
piontas/python-aada
Dockerfile
Dockerfile
mit
901
# Dockerfile put in https://github.com/dlintw/sh4twbox-build-env FROM 32bit/debian:jessie MAINTAINER Daniel YC Lin <dlin.tw at gmail> # use GMT+8 as localtime RUN rm -f /etc/localtime && ln -s /usr/share/zoneinfo/Asia/Taipei /etc/localtime # install basic rpm required packages and clean cache RUN apt-get update -y \ ...
dlintw/sh4twbox-build-env
stlinux24-sh4-glibc/Dockerfile
Dockerfile
mit
1,806
# Create image based on official Node 6 image from dockerhub. FROM node:6 # Create a directory where our app will be placed. RUN mkdir -p /srv/www # Change to the directory where we want our commands to be executed from. WORKDIR /srv/www # Copy dependency definitions separate from code to require less build time. CO...
rsmall/angular-seed
Dockerfile
Dockerfile
mit
504
FROM python:2.7-alpine RUN pip install textblob && \ python -m textblob.download_corpora ADD https://github.com/openfaas/faas/releases/download/0.5.1-alpha/fwatchdog /usr/bin RUN chmod +x /usr/bin/fwatchdog WORKDIR /root/ COPY handler.py . ENV fprocess="python handler.py" HEALTHCHECK --interval=1s CMD [ -e /t...
haru01/faas
sample-functions/SentimentAnalysis/Dockerfile
Dockerfile
mit
361
FROM postgres:9.6 MAINTAINER Laura Wrubel <sfm@gwu.edu> ENV PGDATA /sfm-db-data/postgresql/9.6/data ADD initdb.sql /docker-entrypoint-initdb.d/
gwu-libraries/sfm-ui
docker/db/Dockerfile
Dockerfile
mit
146
FROM resin/rpi-raspbian:latest RUN apt-get update && apt-get install -y python python-dev python-pip # Install Dropbear. RUN apt-get install -y dropbear RUN pip install flask RUN apt-get install -y alsa-utils libasound2-dev dpkg avahi-daemon avahi-utils RUN wget https://downloads.plex.tv/plex-media-server/0.9.11.7.80...
mattcow12/test
Dockerfile
Dockerfile
mit
486
FROM alpine ADD redirect /redirect RUN chmod +x redirect ENTRYPOINT /redirect
jdavis7257/Tiny-Redirect
Dockerfile
Dockerfile
mit
78
# Openhab 1.5.1 # * configuration is injected # FROM ubuntu:14.04 MAINTAINER Mike Wilson <knobby@burntsheep.com> RUN apt-get -y update RUN apt-get -y upgrade RUN apt-get -y install unzip wget git # Download and install Oracle JDK # For direct download see: http://stackoverflow.com/questions/10268583/how-to-automate-d...
hyperbolic2346/coreos
dockerfiles/openhab_cloudbees/Dockerfile
Dockerfile
mit
1,945
FROM alpine RUN apk add --update python3-dev py3-cffi gcc linux-headers musl-dev sqlite RUN python3 -m ensurepip RUN pip3 install --upgrade pip RUN pip3 install flask RUN pip3 install requests RUN pip3 install html5lib RUN pip3 install passlib RUN pip3 install argon2_cffi RUN pip3 install translitcodec RUN pip3 install...
fazalmajid/temboz
Dockerfile
Dockerfile
mit
575
FROM node:6.3.1 ########### installing dependencies RUN mkdir -p /usr/src/app WORKDIR /usr/src/app COPY package.json /usr/src/app COPY bower.json /usr/src/app RUN node --version RUN npm install -g bower RUN npm install RUN npm run postinstall ########### ########### coping project files COPY . /usr/src/app ##########...
forkize/kayz
Dockerfile
Dockerfile
apache-2.0
393
# AUTOGENERATED FILE FROM balenalib/artik5-alpine:3.11-run ENV NODE_VERSION 14.16.1 ENV YARN_VERSION 1.22.4 # Install dependencies RUN apk add --no-cache libgcc libstdc++ libuv \ && apk add --no-cache libssl1.0 || apk add --no-cache libssl1.1 RUN buildDeps='curl' \ && set -x \ && for key in \ 6A010C5166006599AA1...
nghiant2710/base-images
balena-base-images/node/artik5/alpine/3.11/14.16.1/run/Dockerfile
Dockerfile
apache-2.0
3,021
# AUTOGENERATED FILE FROM balenalib/aio-3288c-debian:sid-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 keyse...
resin-io-library/base-images
balena-base-images/node/aio-3288c/debian/sid/17.6.0/run/Dockerfile
Dockerfile
apache-2.0
2,927
# AUTOGENERATED FILE FROM balenalib/blackboard-tx2-debian:stretch-run RUN apt-get update \ && apt-get install -y --no-install-recommends \ ca-certificates \ curl \ \ # .NET Core dependencies libc6 \ libgcc1 \ libgssapi-krb5-2 \ libicu57 \ libssl1.1 \ ...
resin-io-library/base-images
balena-base-images/dotnet/blackboard-tx2/debian/stretch/3.1-runtime/run/Dockerfile
Dockerfile
apache-2.0
2,532
# AUTOGENERATED FILE FROM balenalib/orangepi-plus2-debian:jessie-build ENV NODE_VERSION 14.16.1 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/orangepi-plus2/debian/jessie/14.16.1/build/Dockerfile
Dockerfile
apache-2.0
2,791
# AUTOGENERATED FILE FROM balenalib/odroid-xu4-debian:stretch-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-g...
nghiant2710/base-images
balena-base-images/golang/odroid-xu4/debian/stretch/1.15.7/run/Dockerfile
Dockerfile
apache-2.0
2,356
# AUTOGENERATED FILE FROM balenalib/aio-3288c-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/aio-3288c/debian/bullseye/6.0-aspnet/run/Dockerfile
Dockerfile
apache-2.0
3,168
# AUTOGENERATED FILE FROM balenalib/aarch64-debian:buster-build ENV NODE_VERSION 10.24.1 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/aarch64/debian/buster/10.24.1/build/Dockerfile
Dockerfile
apache-2.0
2,780
# AUTOGENERATED FILE FROM balenalib/coral-dev-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.com ...
nghiant2710/base-images
balena-base-images/node/coral-dev/ubuntu/xenial/15.6.0/run/Dockerfile
Dockerfile
apache-2.0
2,911
# AUTOGENERATED FILE FROM balenalib/photon-tx2-nx-fedora:35-build 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 key...
resin-io-library/base-images
balena-base-images/node/photon-tx2-nx/fedora/35/17.6.0/build/Dockerfile
Dockerfile
apache-2.0
2,748
# AUTOGENERATED FILE FROM balenalib/nanopc-t4-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 "virtualenv", ...
nghiant2710/base-images
balena-base-images/python/nanopc-t4/fedora/33/3.9.4/build/Dockerfile
Dockerfile
apache-2.0
2,436
# AUTOGENERATED FILE FROM balenalib/jetson-tx1-debian:sid-run ENV GO_VERSION 1.15.11 # gcc for cgo RUN apt-get update && apt-get install -y --no-install-recommends \ g++ \ gcc \ libc6-dev \ make \ pkg-config \ git \ && rm -rf /var/lib/apt/lists/* RUN set -x \ && fetchDeps=' \ curl \ ' \ && apt-get ...
nghiant2710/base-images
balena-base-images/golang/jetson-tx1/debian/sid/1.15.11/run/Dockerfile
Dockerfile
apache-2.0
2,321
# AUTOGENERATED FILE FROM balenalib/up-core-debian:stretch-run RUN apt-get update \ && apt-get install -y --no-install-recommends \ ca-certificates \ curl \ \ # .NET Core dependencies libc6 \ libgcc1 \ libgssapi-krb5-2 \ libicu57 \ libssl1.1 \ ...
resin-io-library/base-images
balena-base-images/dotnet/up-core/debian/stretch/3.1-sdk/run/Dockerfile
Dockerfile
apache-2.0
2,923
# AUTOGENERATED FILE FROM balenalib/surface-go-debian:stretch-run RUN apt-get update \ && apt-get install -y --no-install-recommends \ ca-certificates \ curl \ \ # .NET Core dependencies libc6 \ libgcc1 \ libgssapi-krb5-2 \ libicu57 \ libssl1.1 \ ...
resin-io-library/base-images
balena-base-images/dotnet/surface-go/debian/stretch/3.1-sdk/run/Dockerfile
Dockerfile
apache-2.0
2,926
# AUTOGENERATED FILE FROM balenalib/nuc-debian:jessie-build ENV NODE_VERSION 12.20.1 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 --ba...
nghiant2710/base-images
balena-base-images/node/nuc/debian/jessie/12.20.1/build/Dockerfile
Dockerfile
apache-2.0
2,783
# AUTOGENERATED FILE FROM balenalib/photon-nano-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 ad...
resin-io-library/base-images
balena-base-images/python/photon-nano/alpine/3.12/3.9.10/run/Dockerfile
Dockerfile
apache-2.0
4,129
# AUTOGENERATED FILE FROM balenalib/ccimx8x-sbc-pro-ubuntu:cosmic-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 \ ' \ && a...
nghiant2710/base-images
balena-base-images/golang/ccimx8x-sbc-pro/ubuntu/cosmic/1.15.6/run/Dockerfile
Dockerfile
apache-2.0
2,330
# AUTOGENERATED FILE FROM balenalib/generic-aarch64-debian:bullseye-run ENV GO_VERSION 1.16 # 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 \ ' \ && a...
nghiant2710/base-images
balena-base-images/golang/generic-aarch64/debian/bullseye/1.16/run/Dockerfile
Dockerfile
apache-2.0
2,330
# AUTOGENERATED FILE FROM balenalib/orange-pi-one-alpine:3.11-run 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/orange-pi-one/alpine/3.11/1.14.14/run/Dockerfile
Dockerfile
apache-2.0
2,472
# AUTOGENERATED FILE FROM balenalib/apalis-imx6q-debian:bullseye-build ENV NODE_VERSION 10.23.1 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/apalis-imx6q/debian/bullseye/10.23.1/build/Dockerfile
Dockerfile
apache-2.0
2,793
# AUTOGENERATED FILE FROM balenalib/artik10-debian:sid-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 dependencie...
resin-io-library/base-images
balena-base-images/python/artik10/debian/sid/3.9.7/run/Dockerfile
Dockerfile
apache-2.0
4,080
# AUTOGENERATED FILE FROM balenalib/surface-go-alpine:edge-run ENV GO_VERSION 1.17.7 # set up nsswitch.conf for Go's "netgo" implementation # - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275 # - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf RUN [ ! -e /etc/nsswitch.conf ] && ec...
resin-io-library/base-images
balena-base-images/golang/surface-go/alpine/edge/1.17.7/run/Dockerfile
Dockerfile
apache-2.0
2,474
# AUTOGENERATED FILE FROM balenalib/surface-go-fedora:36-build ENV GO_VERSION 1.17.7 RUN mkdir -p /usr/local/go \ && curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-amd64.tar.gz" \ && echo "02b111284bedbfa35a7e5b74a06082d18632eff824fd144312f6063943d49259 go$GO_VERSION.linux-amd64.tar.gz" | sha...
resin-io-library/base-images
balena-base-images/golang/surface-go/fedora/36/1.17.7/build/Dockerfile
Dockerfile
apache-2.0
2,008
# AUTOGENERATED FILE FROM balenalib/nanopc-t4-debian:jessie-build ENV GO_VERSION 1.14.13 RUN mkdir -p /usr/local/go \ && curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \ && echo "445b719ebf46d8825360dabad65226db154ca8053de60609bc20f80a17452cbb go$GO_VERSION.linux-arm64.tar.gz" |...
nghiant2710/base-images
balena-base-images/golang/nanopc-t4/debian/jessie/1.14.13/build/Dockerfile
Dockerfile
apache-2.0
2,000
# AUTOGENERATED FILE FROM balenalib/up-core-plus-fedora:34-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 "bfea0c8d7b70c1ad99b026...
nghiant2710/base-images
balena-base-images/golang/up-core-plus/fedora/34/1.14.13/run/Dockerfile
Dockerfile
apache-2.0
2,090
# AUTOGENERATED FILE FROM balenalib/jetson-nano-emmc-fedora:31-build ENV GO_VERSION 1.14.13 RUN mkdir -p /usr/local/go \ && curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \ && echo "445b719ebf46d8825360dabad65226db154ca8053de60609bc20f80a17452cbb go$GO_VERSION.linux-arm64.tar.gz...
nghiant2710/base-images
balena-base-images/golang/jetson-nano-emmc/fedora/31/1.14.13/build/Dockerfile
Dockerfile
apache-2.0
2,001
# AUTOGENERATED FILE FROM balenalib/artik10-ubuntu:xenial-build ENV NODE_VERSION 12.20.1 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \ gpg --keyserver ha.p...
nghiant2710/base-images
balena-base-images/node/artik10/ubuntu/xenial/12.20.1/build/Dockerfile
Dockerfile
apache-2.0
2,760
# AUTOGENERATED FILE FROM balenalib/edison-debian:sid-build ENV GO_VERSION 1.15.7 RUN mkdir -p /usr/local/go \ && curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-386.tar.gz" \ && echo "519e5d7518376bc6b87afc04f16e72db66d9bc08641d9b4385ecf1f30e55e64c go$GO_VERSION.linux-386.tar.gz" | sha256sum ...
nghiant2710/base-images
balena-base-images/golang/edison/debian/sid/1.15.7/build/Dockerfile
Dockerfile
apache-2.0
1,993
# AUTOGENERATED FILE FROM balenalib/beaglebone-green-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 ...
resin-io-library/base-images
balena-base-images/python/beaglebone-green/ubuntu/focal/3.8.12/run/Dockerfile
Dockerfile
apache-2.0
4,071
FROM python:3-alpine RUN apk update && \ apk --no-cache add bash # install requirements ADD requirements.txt ./ RUN pip install --no-cache-dir -r requirements.txt RUN rm requirements* # install asserts ADD assets/ /opt/resource/
cycloidio/approval-resource
docker-prod/Dockerfile
Dockerfile
apache-2.0
236
FROM node:8.2.1 # Install chrome RUN apt-get update && apt-get install -y libxss1 libappindicator1 libindicator7 RUN wget --quiet https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb && \ dpkg -i google-chrome*.deb; exit 0 ## above might show "errors", fixed by next line RUN apt-get install -y...
mikemoraned/shartan
Dockerfile
Dockerfile
apache-2.0
572
# AUTOGENERATED FILE FROM balenalib/photon-xavier-nx-debian:bookworm-build 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-k...
resin-io-library/base-images
balena-base-images/dotnet/photon-xavier-nx/debian/bookworm/6.0-aspnet/build/Dockerfile
Dockerfile
apache-2.0
3,183
# AUTOGENERATED FILE FROM balenalib/cubox-i-alpine:edge-run # remove several traces of python RUN apk del python* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # install python dependencies RUN apk add --...
resin-io-library/base-images
balena-base-images/python/cubox-i/alpine/edge/3.9.7/run/Dockerfile
Dockerfile
apache-2.0
4,123
# # Base image for compiling and running Ceylon applications # FROM ceylon/ceylon-base:jre8-redhat MAINTAINER Tako Schotanus <tako@ceylon-lang.org> ENV CEYLON_VERSION=1.3.0 LABEL org.ceylon-lang.dockerfile.description="Base image for compiling and running Ceylon applications" \ org.ceylon-lang.dockerfile.vendor=...
ceylon-docker/ceylon
1.3.0/1.3.0-jre8-redhat/Dockerfile
Dockerfile
apache-2.0
579
# AUTOGENERATED FILE FROM balenalib/jetson-xavier-nx-devkit-ubuntu:disco-run ENV NODE_VERSION 15.7.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 keyse...
nghiant2710/base-images
balena-base-images/node/jetson-xavier-nx-devkit/ubuntu/disco/15.7.0/run/Dockerfile
Dockerfile
apache-2.0
2,923
# AUTOGENERATED FILE FROM balenalib/kitra710-debian:bullseye-build ENV NODE_VERSION 15.10.0 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --batch --keyserver keyserver.pgp.com --recv-keys "$key" || \ g...
nghiant2710/base-images
balena-base-images/node/kitra710/debian/bullseye/15.10.0/build/Dockerfile
Dockerfile
apache-2.0
2,785
FROM ubuntu:14.04 ENV SWIFT_BRANCH swift-3.0-release ENV SWIFT_VERSION swift-3.0-RELEASE ENV SWIFT_PLATFORM ubuntu14.04 ENV DEPENDENCY_PACKAGES="" ENV BUILD_PACKAGES="build-essential wget clang-3.6 curl libedit-dev python2.7 python2.7-dev libicu52 rsync libxml2 git libcurl4-openssl-dev uuid-dev" # Install related pack...
inaka/Jolly
Dockerfile
Dockerfile
apache-2.0
1,564
# Dockerfile for docker skeleton (useful for running blackbox binaries, scripts, or Python 3 actions) . FROM python:3.6.1-alpine # Upgrade and install basic Python dependencies. RUN apk add --no-cache bash \ && apk add --no-cache --virtual .build-deps \ bzip2-dev \ gcc \ libc-dev \ && pip in...
domdom82/openwhisk
core/actionProxy/Dockerfile
Dockerfile
apache-2.0
669
# This Dockerfile specifies the recipe for creating an image for the tests # to run in. # # We install as many test dependencies here as we can, because these setup # steps can be cached. They do *not* run every time we run the build. # The Docker image is only rebuilt when the Dockerfile (ie. this file) # changes. #...
invokr/protobuf-emscripten
3.1.0/jenkins/docker/Dockerfile
Dockerfile
bsd-3-clause
4,757
FROM kunstmaan/spaceport-php:7.1 RUN composer create-project kunstmaan/bundles-standard-edition:dev-master . --no-interaction && chmod +x bin/console COPY ./config_docker.yml /app/app/config/config_docker.yml RUN composer update RUN bin/console kuma:generate:bundle --namespace=Kunstmaan/DemoBundle --dir=src --env=docke...
roderik/KunstmaanBundlesStandardEdition
docker_demo/Dockerfile
Dockerfile
mit
615
FROM ubuntu:14.04 MAINTAINER zeliard <cyberjam@gmail.com> RUN sudo apt-get update RUN sudo apt-get install -y g++ RUN sudo apt-get install -y unzip RUN sudo apt-get install -y wget RUN sudo apt-get install -y build-essential WORKDIR /tmp RUN wget https://github.com/zeliard/EasyGameServer/archive/linux.zip RUN unzip l...
zrma/EasyGameServer
Dockerfile
Dockerfile
mit
494
# AUTOGENERATED FILE FROM balenalib/jetson-nano-fedora:34-run 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 Dockerfile!...
nghiant2710/base-images
balena-base-images/openjdk/jetson-nano/fedora/34/8-jre/run/Dockerfile
Dockerfile
apache-2.0
1,317
FROM balenalib/armv7hf-alpine:3.12-build LABEL io.balena.device-type="beaglebone-green-wifi" 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 Doc...
nghiant2710/base-images
balena-base-images/device-base/beaglebone-green-wifi/alpine/3.12/build/Dockerfile
Dockerfile
apache-2.0
1,030
FROM dock0/service MAINTAINER Jon Chen <bsd@voltaire.sh> EXPOSE 8080 VOLUME ["/var/run/docker.sock"] ADD corepxe /usr/local/bin/corepxe ADD run /service/corepxe/run
fly/corepxe
Dockerfile
Dockerfile
bsd-3-clause
168
# Copyright 2019 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing,...
google/oss-fuzz
projects/libtpms/Dockerfile
Dockerfile
apache-2.0
982
FROM python:3.6 ARG TZ=Etc/UTC WORKDIR /omim/ ADD . . RUN apt-get update && apt-get install -y \ build-essential \ cmake \ libgl1-mesa-dev \ libsqlite3-dev \ qt5-default \ zlib1g-dev \ tzdata \ locales-all RUN ln -fs /usr/share/zoneinfo/$TZ /etc/localtime && \ dpkg-reconfigure -...
darina/omim
tools/python/airmaps/sandbox/airmaps/Dockerfile
Dockerfile
apache-2.0
577
FROM java:openjdk-8-jre MAINTAINER Martijn Koster "mak-docker@greenhills.co.uk" ENV SOLR_VERSION 5.0.0 ENV SOLR solr-$SOLR_VERSION ENV SOLR_USER solr RUN export DEBIAN_FRONTEND=noninteractive && \ apt-get update && \ apt-get -y install lsof procps && \ groupadd -r $SOLR_USER && \ useradd -r -g $SOLR_USER...
JStrittmatter/docker-solr
5.0/Dockerfile
Dockerfile
apache-2.0
734
# Latest version of centos FROM centos:centos7 MAINTAINER James Cuzella <james.cuzella@lyraphase.com> RUN yum clean all && \ yum -y install epel-release && \ yum makecache all && \ yum -y groups mark convert && \ yum -y groups mark install "Development Tools" && \ yum -y groups mark convert "Develop...
CSC-IT-Center-for-Science/ansible-role-fgci-admin
tests/devel-centos7/Dockerfile
Dockerfile
mit
1,922
FROM node:8.11.4-alpine AS registry_builder RUN mkdir /app-build RUN apk update && apk add python make g++ curl bash WORKDIR /app-build COPY . /app-build RUN chown -R node:node /app-build /usr/local/lib/node_modules RUN curl https://install.meteor.com/ | sh RUN npm install -g maka-cli --unsafe USER node RUN maka npm in...
ioos/catalog-harvest-registry
Dockerfile
Dockerfile
mit
960
FROM ubuntu:12.04 MAINTAINER Ike Devolder <ike.devolder@gmail.com> # Keep upstart from complaining RUN dpkg-divert --local --rename --add /sbin/initctl RUN ln -sf /bin/true /sbin/initctl # Let the conatiner know that there is no tty ENV DEBIAN_FRONTEND noninteractive RUN apt-get update RUN apt-get -y upgrade # word...
BlackIkeEagle/docker-php-samples
docker/wordpress-fpm/Dockerfile
Dockerfile
mit
1,195
FROM ibmcom/swift-ubuntu-runtime:3.1.1 MAINTAINER IBM Swift Engineering at IBM Cloud LABEL Description="Template Dockerfile that extends the ibmcom/swift-ubuntu-runtime image." # We can replace this port with what the user wants EXPOSE 8080 # Default user if not provided ARG bx_dev_user=root ARG bx_dev_userid=1000 #...
christiancompton/kube7
Dockerfile
Dockerfile
mit
998
FROM node:8-slim # Set a working directory WORKDIR /app COPY ./build/package*.json . COPY ./build/yarn.lock . # Install Node.js dependencies RUN yarn install --production --no-progress # Copy application files COPY ./build . # pass drone build args on as env variables ARG DRONE_BRANCH= ENV DRONE_BRANCH=${DRONE_BRA...
nambawan/g-old
Dockerfile
Dockerfile
mit
526
FROM node:8 WORKDIR /usr/src/app RUN apt-get update && apt-get install -y vim \ && curl -o- -L https://yarnpkg.com/install.sh | bash \ && npm install pm2 -g #Copy all files into the working dir COPY . ./ EXPOSE 3030 CMD ["/usr/src/app/deploy-app.sh"]
refinedjs/refinedjs-blog
Dockerfile
Dockerfile
mit
259
FROM ubuntu:rolling RUN rm /etc/dpkg/dpkg.cfg.d/excludes RUN apt-get update # 2021-01-29 # RUN apt-get -y install ubuntu-core-libs RUN apt-get -y install vim RUN apt-get -y install rsync RUN apt-get -y install mtr RUN apt-get -y install bash-completion RUN apt-get -y install ssh RUN apt-get -y install iftop RUN apt-g...
sunteya/backsum
Dockerfile
Dockerfile
mit
713
FROM alpine RUN apk --no-cache add --virtual .gocrond-deps \ ca-certificates \ wget \ && GOREPLACE_VERSION=1.1.2 \ && wget -O /usr/local/bin/go-replace https://github.com/webdevops/go-replace/releases/download/$GOREPLACE_VERSION/gr-64-linux \ && chmod +x /usr/local/bin/go-replace \ && ...
webdevops/goreplace
release/Dockerfile
Dockerfile
mit
362
FROM ubuntu:latest MAINTAINER Giovanni Guarino <giovanniguarino.com@gmail.com> ENV TOMCAT_VERSION 8.0.32 # Set locales RUN locale-gen en_GB.UTF-8 ENV LANG en_GB.UTF-8 ENV LC_CTYPE en_GB.UTF-8 # Fix sh RUN rm /bin/sh && ln -s /bin/bash /bin/sh # Install dependencies RUN apt-get update && \ apt-get install -y git bu...
giovanniguarino/docker-tomcat-maven
Dockerfile
Dockerfile
mit
1,383
FROM mandic/php:5.6-fpm-rice MAINTAINER wagnerpinheiro ENV DEBIAN_FRONTEND noninteractive RUN apt-get update && \ apt-get -yq install wget && \ wget -O - https://download.newrelic.com/548C16BF.gpg | apt-key add - && \ echo "deb http://apt.newrelic.com/debian/ newrelic non-free" > /etc/apt/sources.list.d/...
mandic-cloud/docker-php-fpm
5.6-fpm/rice-nr/Dockerfile
Dockerfile
mit
520
FROM python:2.7.11-alpine MAINTAINER Francesco Uliana <francesco@uliana.it> RUN pip install virtualenv WORKDIR /app RUN virtualenv /env ADD requirements.txt /app/requirements.txt RUN /env/bin/pip install -r requirements.txt ADD . /app EXPOSE 5000 CMD [] ENTRYPOINT ["/env/bin/python", "/app/main.py"]
francescou/docker-continuous-deployment
rest-count/Dockerfile
Dockerfile
mit
305
FROM golang:1.4.2 ENV GBUPDATED 08-19-2015 RUN go get github.com/constabulary/gb/... ADD . /app WORKDIR /app RUN mkdir data RUN gb build all EXPOSE 6606
stevenbooru/stevenbooru
Dockerfile
Dockerfile
cc0-1.0
156
# AUTOGENERATED FILE FROM balenalib/kitra520-ubuntu:bionic-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/kitra520/ubuntu/bionic/1.14.14/run/Dockerfile
Dockerfile
apache-2.0
2,354
ARG BASE_IMAGE FROM ${BASE_IMAGE} ARG CUDA_LITE ARG CUDNN_VERSION ARG TENSORRT_VERSION RUN M="${CUDNN_VERSION%%.*}" \ && PATCH="-1+cuda${CUDA_LITE}" \ && apt-get update \ && apt-get install -y --no-install-recommends \ libcudnn${M}="${CUDNN_VERSION}${PATCH}" \ libcudnn${M}-dev="${CUDNN_VERSION}${P...
ApolloAuto/apollo
docker/build/base.x86_64.dockerfile
Dockerfile
apache-2.0
1,371
# AUTOGENERATED FILE FROM balenalib/hummingboard-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 McV...
nghiant2710/base-images
balena-base-images/python/hummingboard/alpine/3.10/3.7.9/build/Dockerfile
Dockerfile
apache-2.0
4,839
# AUTOGENERATED FILE FROM balenalib/imx6ul-var-dart-ubuntu:focal-run ENV NODE_VERSION 14.15.4 ENV YARN_VERSION 1.22.4 RUN buildDeps='curl libatomic1' \ && set -x \ && for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pg...
nghiant2710/base-images
balena-base-images/node/imx6ul-var-dart/ubuntu/focal/14.15.4/run/Dockerfile
Dockerfile
apache-2.0
2,921
# AUTOGENERATED FILE FROM balenalib/beaglebone-pocket-alpine:3.10-run 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/beaglebone-pocket/alpine/3.10/1.14.14/run/Dockerfile
Dockerfile
apache-2.0
2,476
FROM ubuntu:14.04 RUN echo "deb http://security.ubuntu.com/ubuntu trusty-security main" >> /etc/apt/sources.list RUN apt-get update # Download specific Android Studio bundle (all packages). RUN apt-get install -y curl RUN curl 'http://jaist.dl.sourceforge.net/project/soapui/soapui/5.1.2/SoapUI-5.1.2-linux-bin.tar.g...
mehulsbhatt/docker-4
Dockerfiles/SoapUI/Dockerfile
Dockerfile
apache-2.0
1,386
# AUTOGENERATED FILE FROM balenalib/raspberrypi4-64-debian:bullseye-build # remove several traces of debian python RUN apt-get purge -y python.* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # key 63C7CC9...
nghiant2710/base-images
balena-base-images/python/raspberrypi4-64/debian/bullseye/3.9.1/build/Dockerfile
Dockerfile
apache-2.0
4,864
# AUTOGENERATED FILE FROM balenalib/generic-amd64-debian:bookworm-run ENV GO_VERSION 1.17.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 \ ' \ && a...
resin-io-library/base-images
balena-base-images/golang/generic-amd64/debian/bookworm/1.17.7/run/Dockerfile
Dockerfile
apache-2.0
2,347
# AUTOGENERATED FILE FROM balenalib/revpi-core-3-fedora:30-run # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 RUN dnf install -y \ python3-pip \ python3-dbus \ && dnf clean all # install "virtualenv",...
nghiant2710/base-images
balena-base-images/python/revpi-core-3/fedora/30/3.8.9/run/Dockerfile
Dockerfile
apache-2.0
2,434
# AUTOGENERATED FILE FROM balenalib/nitrogen6xq2g-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: pu...
nghiant2710/base-images
balena-base-images/python/nitrogen6xq2g/ubuntu/focal/2.7.18/build/Dockerfile
Dockerfile
apache-2.0
5,205
# AUTOGENERATED FILE FROM balenalib/aarch64-ubuntu:cosmic-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 keyserver.pgp.com -...
nghiant2710/base-images
balena-base-images/node/aarch64/ubuntu/cosmic/12.22.1/run/Dockerfile
Dockerfile
apache-2.0
2,911
# AUTOGENERATED FILE FROM balenalib/jetson-nano-alpine:3.13-build 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 for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do...
nghiant2710/base-images
balena-base-images/node/jetson-nano/alpine/3.13/15.14.0/build/Dockerfile
Dockerfile
apache-2.0
2,958
# AUTOGENERATED FILE FROM balenalib/intel-edison-alpine:3.14-build # remove several traces of python RUN apk del python* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # key 63C7CC90: public key "Simon McV...
resin-io-library/base-images
balena-base-images/python/intel-edison/alpine/3.14/3.7.12/build/Dockerfile
Dockerfile
apache-2.0
4,838
# AUTOGENERATED FILE FROM balenalib/artik710-alpine:3.15-run ENV GO_VERSION 1.17.7 # set up nsswitch.conf for Go's "netgo" implementation # - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275 # - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf RUN [ ! -e /etc/nsswitch.conf ] && echo...
resin-io-library/base-images
balena-base-images/golang/artik710/alpine/3.15/1.17.7/run/Dockerfile
Dockerfile
apache-2.0
2,465
# AUTOGENERATED FILE FROM balenalib/imx8m-var-dart-ubuntu:xenial-run ENV GO_VERSION 1.17.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 \ ' \ && ap...
resin-io-library/base-images
balena-base-images/golang/imx8m-var-dart/ubuntu/xenial/1.17.7/run/Dockerfile
Dockerfile
apache-2.0
2,329
# AUTOGENERATED FILE FROM balenalib/etcher-pro-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 \ libssl1.1 \ ...
nghiant2710/base-images
balena-base-images/dotnet/etcher-pro/debian/bullseye/3.1-runtime/build/Dockerfile
Dockerfile
apache-2.0
2,533
# This is an auto generated Dockerfile for ros:ros1-bridge # generated from docker_images_ros2/ros1_bridge/create_ros_ros1_bridge_image.Dockerfile.em FROM ros:galactic-ros-base-focal # setup sources.list RUN echo "deb http://packages.ros.org/ros/ubuntu focal main" > /etc/apt/sources.list.d/ros1-latest.list # setup ke...
ruffsl/docker_images
ros/galactic/ubuntu/focal/ros1-bridge/Dockerfile
Dockerfile
apache-2.0
1,036
# AUTOGENERATED FILE FROM balenalib/nanopc-t4-ubuntu:hirsute-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/nanopc-t4/ubuntu/hirsute/12.22.9/build/Dockerfile
Dockerfile
apache-2.0
2,754
FROM balenalib/amd64-ubuntu:impish-run LABEL io.balena.device-type="edge" RUN apt-get update && apt-get install -y --no-install-recommends \ less \ kmod \ nano \ net-tools \ ifupdown \ iputils-ping \ i2c-tools \ usbutils \ && rm -rf /var/lib/apt/lists/* RUN [ ! -d /.balena/messages ] && mkdir -p /.ba...
resin-io-library/base-images
balena-base-images/device-base/edge/ubuntu/impish/run/Dockerfile
Dockerfile
apache-2.0
1,096
# AUTOGENERATED FILE FROM balenalib/asus-tinker-board-debian:stretch-build ENV NODE_VERSION 12.21.0 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --batch --keyserver keyserver.pgp.com --recv-keys "$key" ...
nghiant2710/base-images
balena-base-images/node/asus-tinker-board/debian/stretch/12.21.0/build/Dockerfile
Dockerfile
apache-2.0
2,796