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 mhart/alpine-node:4.2.1 # Create app directory RUN mkdir -p /home/chat WORKDIR /home/chat # Add packages COPY package.json /home/chat/ # Install npm packages RUN cd /home/chat && npm install # Bundle app source COPY . /home/chat CMD [ "npm", "start" ] EXPOSE 8020
truocphamkhac/chat
backend/Dockerfile
Dockerfile
mit
275
FROM ruby:2.2.3 RUN gem install bundler github-pages # Just for the expansion... RUN bash -c 'curl -sS https://nodejs.org/dist/v4.2.3/node-v4.2.3-linux-x64.tar.gz | tar -xz -C /usr/local node-v4.2.3-linux-x64/{lib,bin} --strip-components=1' RUN apt-get update && apt-get install sudo # Add a new user to have develop...
helionagamachi/helionagamachi.github.io
Docker/Dockerfile
Dockerfile
mit
1,282
FROM instructure/node:10 USER root RUN mkdir -p /usr/src/app/report && chown -R docker /usr/src/app USER docker ADD package.json package.json RUN npm install . --ignore-scripts && rm package.json ADD . /usr/src/app CMD npm test
instructure/canvas-data-cli
Dockerfile
Dockerfile
mit
231
FROM node:latest MAINTAINER Dmitry Ustalov WORKDIR /teleboyarin COPY package.json /teleboyarin/package.json RUN npm install && mkdir log && chown -R nobody:nogroup log COPY . /teleboyarin USER nobody CMD ["/teleboyarin/teleboyarin-cmd.sh"]
mtsar/teleboyarin
Dockerfile
Dockerfile
mit
240
# AUTOGENERATED FILE FROM balenalib/qemux86-ubuntu:bionic-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/qemux86/ubuntu/bionic/10.23.1/run/Dockerfile
Dockerfile
apache-2.0
2,940
# AUTOGENERATED FILE FROM balenalib/blackboard-tx2-debian:bullseye-build ENV GO_VERSION 1.15.8 RUN mkdir -p /usr/local/go \ && curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \ && echo "0e31ea4bf53496b0f0809730520dee98c0ae5c530f3701a19df0ba0a327bf3d2 go$GO_VERSION.linux-arm64.tar...
nghiant2710/base-images
balena-base-images/golang/blackboard-tx2/debian/bullseye/1.15.8/build/Dockerfile
Dockerfile
apache-2.0
2,007
# AUTOGENERATED FILE FROM balenalib/jetson-tx1-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 ] && e...
nghiant2710/base-images
balena-base-images/golang/jetson-tx1/alpine/3.13/1.15.11/run/Dockerfile
Dockerfile
apache-2.0
2,469
# AUTOGENERATED FILE FROM balenalib/jetson-tx2-ubuntu:eoan-build ENV NODE_VERSION 10.23.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/jetson-tx2/ubuntu/eoan/10.23.1/build/Dockerfile
Dockerfile
apache-2.0
2,755
# AUTOGENERATED FILE FROM balenalib/artik530-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 "virtualenv", sin...
resin-io-library/base-images
balena-base-images/python/artik530/fedora/33/3.10.0/run/Dockerfile
Dockerfile
apache-2.0
2,431
# Copyright 2018 The Kubeflow Authors # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writ...
kubeflow/kfp-tekton-backend
components/deprecated/dataproc/train/Dockerfile
Dockerfile
apache-2.0
743
# AUTOGENERATED FILE FROM balenalib/jetson-nano-emmc-debian:stretch-run ENV GO_VERSION 1.14.13 # gcc for cgo RUN apt-get update && apt-get install -y --no-install-recommends \ g++ \ gcc \ libc6-dev \ make \ pkg-config \ git \ && rm -rf /var/lib/apt/lists/* RUN set -x \ && fetchDeps=' \ curl \ ' \ &...
nghiant2710/base-images
balena-base-images/golang/jetson-nano-emmc/debian/stretch/1.14.13/run/Dockerfile
Dockerfile
apache-2.0
2,335
# AUTOGENERATED FILE FROM balenalib/generic-aarch64-debian:buster-build ENV GO_VERSION 1.15.6 RUN mkdir -p /usr/local/go \ && curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \ && echo "f87515b9744154ffe31182da9341d0a61eb0795551173d242c8cad209239e492 go$GO_VERSION.linux-arm64.tar....
nghiant2710/base-images
balena-base-images/golang/generic-aarch64/debian/buster/1.15.6/build/Dockerfile
Dockerfile
apache-2.0
2,004
# This is an auto generated Dockerfile for ros:ros-base # generated from docker_images/create_ros_image.Dockerfile.em FROM ros:melodic-ros-core-stretch # install bootstrap tools RUN apt-get update && apt-get install --no-install-recommends -y \ build-essential \ python-rosdep \ python-rosinstall \ pyth...
ruffsl/docker_images
ros/melodic/debian/stretch/ros-base/Dockerfile
Dockerfile
apache-2.0
613
# AUTOGENERATED FILE FROM balenalib/fincm3-debian:bullseye-build ENV GO_VERSION 1.14.13 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 "53c5236a76730f6487052fa1a629d6f5efdde6341cfc2e0544b0b28aefc27708 go$GO_VERSION...
nghiant2710/base-images
balena-base-images/golang/fincm3/debian/bullseye/1.14.13/build/Dockerfile
Dockerfile
apache-2.0
2,030
# AUTOGENERATED FILE FROM balenalib/up-board-fedora:33-run ENV NODE_VERSION 15.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 ha.pool.s...
nghiant2710/base-images
balena-base-images/node/up-board/fedora/33/15.14.0/run/Dockerfile
Dockerfile
apache-2.0
2,754
FROM ubuntu:16.04 MAINTAINER Gary Yang <garyyang@purestorage.com>; Cary Li <cary.li@purestorage.com> # Expose a web endpoint for the management website EXPOSE 8080 RUN apt-get update && apt-get install -y rabbitmq-server python-pip python-dev vim nodejs-legacy npm curl RUN pip install Celery==3.1.18 RUN pip install p...
pureelk/pureelk
Dockerfile
Dockerfile
apache-2.0
867
# AUTOGENERATED FILE FROM balenalib/imx7-var-som-debian:bullseye-run RUN apt-get update \ && apt-get install -y --no-install-recommends \ ca-certificates \ curl \ \ # .NET Core dependencies libc6 \ libgcc1 \ libgssapi-krb5-2 \ libicu67 \ libssl1.1 \ ...
resin-io-library/base-images
balena-base-images/dotnet/imx7-var-som/debian/bullseye/3.1-aspnet/run/Dockerfile
Dockerfile
apache-2.0
3,131
# AUTOGENERATED FILE FROM balenalib/n510-tx2-debian:buster-build ENV NODE_VERSION 17.6.0 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --batch --keyserver keyserver.pgp.com --recv-keys "$key" || \ gpg ...
resin-io-library/base-images
balena-base-images/node/n510-tx2/debian/buster/17.6.0/build/Dockerfile
Dockerfile
apache-2.0
2,773
FROM openjdk:8-jre-slim ENV NEO4J_SHA256=%%NEO4J_SHA%% \ NEO4J_TARBALL=%%NEO4J_TARBALL%% \ NEO4J_EDITION=%%NEO4J_EDITION%% \ NEO4J_HOME="/var/lib/neo4j" ARG NEO4J_URI=%%NEO4J_DIST_SITE%%/%%NEO4J_TARBALL%% RUN addgroup --gid 7474 --system neo4j && adduser --uid 7474 --system --no-create-home --home "${NEO4...
neo4j/docker-neo4j
docker-image-src/3.5/neo4j-admin/Dockerfile
Dockerfile
apache-2.0
1,369
FROM i386/ubuntu:xenial LABEL io.balena.architecture="i386" RUN apt-get update && apt-get install -y --no-install-recommends \ sudo \ ca-certificates \ findutils \ gnupg \ dirmngr \ inetutils-ping \ netbase \ curl \ udev \ $( \ if apt-cache show 'iproute' 2>/dev/null | grep -q '^Version:'; th...
resin-io-library/base-images
balena-base-images/i386/ubuntu/xenial/run/Dockerfile
Dockerfile
apache-2.0
2,737
FROM fitbur/jdk MAINTAINER Sharmarke Aden, saden1@gmail.com ENV _NAME storm ENV _VERSION 0.9.1 ENV _FILE apache-$_NAME-$_VERSION-incubating.zip ENV _HOME /opt/apache-$_NAME-$_VERSION-incubating RUN curl -L -o $_FILE http://archive.apache.org/dist/incubator/$_NAME/apache-$_NAME-$_VERSION-incubating/$_FILE RUN unzip -...
MagIciaNGTAO/docker
storm/storm-base/Dockerfile
Dockerfile
apache-2.0
529
# AUTOGENERATED FILE FROM balenalib/fincm3-ubuntu:xenial-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 k...
resin-io-library/base-images
balena-base-images/python/fincm3/ubuntu/xenial/3.6.15/build/Dockerfile
Dockerfile
apache-2.0
4,826
# AUTOGENERATED FILE FROM balenalib/apalis-imx6q-ubuntu:bionic-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....
nghiant2710/base-images
balena-base-images/node/apalis-imx6q/ubuntu/bionic/14.16.1/run/Dockerfile
Dockerfile
apache-2.0
2,920
FROM balenalib/amd64-ubuntu:impish-run LABEL io.balena.device-type="intel-nuc" 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...
resin-io-library/base-images
balena-base-images/device-base/intel-nuc/ubuntu/impish/run/Dockerfile
Dockerfile
apache-2.0
1,101
# AUTOGENERATED FILE FROM balenalib/raspberrypi3-debian:bookworm-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 ...
resin-io-library/base-images
balena-base-images/openjdk/raspberrypi3/debian/bookworm/11-jre/build/Dockerfile
Dockerfile
apache-2.0
3,742
# AUTOGENERATED FILE FROM balenalib/beaglebone-green-wifi-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 \ libicu57 \ libltt...
nghiant2710/base-images
balena-base-images/dotnet/beaglebone-green-wifi/debian/buster/2.1-aspnet/run/Dockerfile
Dockerfile
apache-2.0
2,611
# AUTOGENERATED FILE FROM balenalib/jetson-nano-emmc-debian:stretch-build ENV NODE_VERSION 15.7.0 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --batch --keyserver keyserver.pgp.com --recv-keys "$key" ||...
nghiant2710/base-images
balena-base-images/node/jetson-nano-emmc/debian/stretch/15.7.0/build/Dockerfile
Dockerfile
apache-2.0
2,789
# AUTOGENERATED FILE FROM balenalib/jetson-nano-2gb-devkit-alpine:3.10-build 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 for key in \ 6A010C5166006599AA17F08146C2130DFD249...
nghiant2710/base-images
balena-base-images/node/jetson-nano-2gb-devkit/alpine/3.10/14.16.1/build/Dockerfile
Dockerfile
apache-2.0
2,969
# AUTOGENERATED FILE FROM balenalib/aarch64-alpine:3.14-run ENV NODE_VERSION 16.14.0 ENV YARN_VERSION 1.22.4 # Install dependencies RUN apk add --no-cache libgcc libstdc++ libuv \ && apk add --no-cache libssl1.0 || apk add --no-cache libssl1.1 RUN buildDeps='curl' \ && set -x \ && for key in \ 6A010C5166006599AA...
resin-io-library/base-images
balena-base-images/node/aarch64/alpine/3.14/16.14.0/run/Dockerfile
Dockerfile
apache-2.0
3,016
# AUTOGENERATED FILE FROM balenalib/raspberrypi4-64-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....
resin-io-library/base-images
balena-base-images/dotnet/raspberrypi4-64/debian/bookworm/5.0-sdk/build/Dockerfile
Dockerfile
apache-2.0
2,924
# AUTOGENERATED FILE FROM balenalib/npe-x500-m3-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 \ liblttng-ust0 \...
nghiant2710/base-images
balena-base-images/dotnet/npe-x500-m3/debian/stretch/2.1-aspnet/run/Dockerfile
Dockerfile
apache-2.0
2,603
# AUTOGENERATED FILE FROM balenalib/ccimx8x-sbc-pro-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 ...
resin-io-library/base-images
balena-base-images/python/ccimx8x-sbc-pro/alpine/3.14/3.9.7/build/Dockerfile
Dockerfile
apache-2.0
4,839
# AUTOGENERATED FILE FROM balenalib/orbitty-tx2-ubuntu:xenial-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: pub...
resin-io-library/base-images
balena-base-images/python/orbitty-tx2/ubuntu/xenial/3.9.7/build/Dockerfile
Dockerfile
apache-2.0
4,829
# AUTOGENERATED FILE FROM balenalib/qemux86-alpine:3.11-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/qemux86/alpine/3.11/3.9.1/build/Dockerfile
Dockerfile
apache-2.0
4,834
# AUTOGENERATED FILE FROM balenalib/orange-pi-lite-ubuntu:xenial-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 --keyserv...
nghiant2710/base-images
balena-base-images/node/orange-pi-lite/ubuntu/xenial/12.22.1/build/Dockerfile
Dockerfile
apache-2.0
2,767
# AUTOGENERATED FILE FROM balenalib/generic-aarch64-debian:buster-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 --batch --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --batch --keyse...
nghiant2710/base-images
balena-base-images/node/generic-aarch64/debian/buster/15.14.0/run/Dockerfile
Dockerfile
apache-2.0
2,943
# AUTOGENERATED FILE FROM balenalib/armv7hf-fedora:30-build ENV NODE_VERSION 15.6.0 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \ gpg --keyserver ha.pool.s...
nghiant2710/base-images
balena-base-images/node/armv7hf/fedora/30/15.6.0/build/Dockerfile
Dockerfile
apache-2.0
2,752
FROM ubuntu:14.04 ENV ERLANG_VSN R13B01 RUN apt-get update && \ apt-get install -y curl \ build-essential \ libncurses5-dev \ libssl-dev \ unixodbc-dev RUN curl -O https://raw.githubusercontent.com/yrashk/kerl/master/kerl...
studzien/erlang
R13B01/Dockerfile
Dockerfile
apache-2.0
477
FROM java:8 MAINTAINER Earvin Kayonga <e.kayonga@bevolta.com> ENV EMBER_CLI_VERSION 2.4.1 ENV BOWER_VERSION 1.7.1 ENV PHANTOMJS_VERSION 1.9.7 ENV WATCHMAN_VERSION 3.5.0 ENV SCALA_VERSION 2.11.8 ENV SBT_VERSION 0.13.12 ENV LANG en_US.utf8 ADD install.sh . RUN chmod +x install.sh && ./install.sh # Set up user jenkins...
BEVOLTA/ember-alpine
Dockerfile
Dockerfile
apache-2.0
453
FROM linuxkit/alpine:0c069d0fd7defddb6e03925fcd4915407db0c9e1 AS mirror RUN mkdir -p /out/etc/apk && cp -r /etc/apk/* /out/etc/apk/ RUN apk add --no-cache --initdb -p /out \ alpine-baselayout \ busybox \ cryptsetup \ musl \ util-linux RUN rm -rf /out/etc/apk /out/lib/apk /out/var/cache FROM scratc...
konstruktoid/linuxkit
pkg/swap/Dockerfile
Dockerfile
apache-2.0
419
# AUTOGENERATED FILE FROM balenalib/colibri-imx6dl-alpine:3.13-build ENV GO_VERSION 1.15.6 # set up nsswitch.conf for Go's "netgo" implementation # - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275 # - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf RUN [ ! -e /etc/nsswitch.conf ]...
nghiant2710/base-images
balena-base-images/golang/colibri-imx6dl/alpine/3.13/1.15.6/build/Dockerfile
Dockerfile
apache-2.0
2,341
# AUTOGENERATED FILE FROM balenalib/odroid-c1-debian:buster-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...
nghiant2710/base-images
balena-base-images/golang/odroid-c1/debian/buster/1.15.8/build/Dockerfile
Dockerfile
apache-2.0
2,027
# AUTOGENERATED FILE FROM balenalib/parallella-hdmi-resin-fedora:34-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$G...
resin-io-library/base-images
balena-base-images/golang/parallella-hdmi-resin/fedora/34/1.16.14/build/Dockerfile
Dockerfile
apache-2.0
2,035
# TAKEN FROM: https://github.com/GoogleCloudPlatform/distributed-load-testing-using-kubernetes/blob/master/docker-image/Dockerfile # 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:...
RealKinetic/locust_k8s
docker/Dockerfile
Dockerfile
apache-2.0
1,204
FROM phusion/baseimage RUN sed 's/main$/main universe/' -i /etc/apt/sources.list RUN apt-get update RUN apt-get install -y git RUN apt-get install -y wget RUN apt-get install -y mercurial RUN apt-get install -y build-essential ENV PROTOVERSION 2.3.0 ENV PROTODOWNLOAD http://protobuf.googlecode.com/files/protobuf-2.3....
hblanks/tabler
vendor/src/github.com/gogo/protobuf/dockertest/generated-dockerfiles/go1.3.3_protoc2.3.0/Dockerfile
Dockerfile
bsd-3-clause
2,206
FROM balenalib/aarch64-fedora:34-run LABEL io.balena.device-type="photon-nano" RUN dnf install -y \ less \ nano \ net-tools \ usbutils \ gnupg \ i2c-tools \ && dnf clean all RUN [ ! -d /.balena/messages ] && mkdir -p /.balena/messages; echo $'Here are a few details about this Docker image (For more infor...
nghiant2710/base-images
balena-base-images/device-base/photon-nano/fedora/34/run/Dockerfile
Dockerfile
apache-2.0
995
# AUTOGENERATED FILE FROM balenalib/nitrogen6xq2g-debian:bullseye-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...
nghiant2710/base-images
balena-base-images/openjdk/nitrogen6xq2g/debian/bullseye/11-jre/build/Dockerfile
Dockerfile
apache-2.0
3,743
# Copyright (c) Jupyter Development Team. FROM jupyter/minimal-notebook MAINTAINER Jupyter Project <jupyter@googlegroups.com> USER root # Spark dependencies ENV APACHE_SPARK_VERSION 1.4.1 RUN apt-get -y update && \ apt-get install -y --no-install-recommends openjdk-7-jre-headless && \ apt-get clean RUN wget ...
MaryanMorel/docker-stacks
pyspark-notebook/Dockerfile
Dockerfile
bsd-3-clause
1,714
FROM nginx MAINTAINER Kashav Madan COPY nginx.conf /etc/nginx/nginx.conf
kshvmdn/next-ride-api
docker/nginx.Dockerfile
Dockerfile
mit
75
# Debian: NGINX # # VERSION 0.0.1 # Pull the base image. FROM ericmdev/essentials-common # Set the author. MAINTAINER Eric Mugerwa <dev@ericmugerwa.com> # Set environment variables. ENV FILES config/ ENV NGINX_VERSION 1.9.9-1~jessie # Install packages. RUN apt-key adv --keyserver hkp://pgp.mit.edu:80 --recv-keys 57...
ericmdev/dockerfile.nginx-phpfcgi
Dockerfile
Dockerfile
mit
831
# Java baseimage, for Bazel. FROM openjdk:8 ENV SYNTAXNETDIR=/opt/tensorflow PATH=$PATH:/root/bin # Install system packages. This doesn't include everything the TensorFlow # dockerfile specifies, so if anything goes awry, maybe install more packages # from there. Also, running apt-get clean before further commands wi...
unnikrishnankgs/va
venv/lib/python3.5/site-packages/tensorflow/models/syntaxnet/Dockerfile
Dockerfile
bsd-2-clause
3,545
# Copyright 2019 The TensorFlow Authors. All Rights Reserved. # # 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 applica...
annarev/tensorflow
tensorflow/tools/dockerfiles/dockerfiles/onednn/centos-8-mpi-horovod-jupyter.Dockerfile
Dockerfile
apache-2.0
3,747
CMD [] CMD [""] CMD ["a"] CMD ["a","b"] CMD [ "a", "b" ] CMD [ "a", "b" ] CMD [ "a", "b" ] CMD ["abc 123", "♥", "☃", "\" \\ \/ \b \f \n \r \t \u0000"]
openshift/dockerexec
vendor/src/github.com/docker/docker/builder/parser/testfiles/json/Dockerfile
Dockerfile
apache-2.0
156
FROM mono@sha256:c2ac05aa577216cec19d985c6fb27366ee3820d93c613e742522501b72a20868 # Copy source COPY ./App /src WORKDIR /src RUN nuget restore -NonInteractive # Build WORKDIR /src RUN xbuild /p:Configuration=Release # Run CMD ["mono", "/src/bin/Release/App.exe"]
thinknode/thinknode-provider-seed-cs
Dockerfile
Dockerfile
mit
269
FROM eleidan/buildpack-deps-scm:ubuntu-14.04 LABEL maintainer="Oleg Kulyk" \ description="Ubuntu 14.04, buildpack-deps" \ run="docker run -it --rm -v $(pwd):/home/phantom/app eleidan/buildpack-deps:ubuntu-14.04" \ version="2017-07-09" ENV SERVICE_NAME="buildpack-deps:ubuntu-14.04" RUN apt-get updat...
eleidan/docker-buildpack-deps
ubuntu/14.04/Dockerfile
Dockerfile
mit
1,149
# PHPUnit Docker Container. FROM composer/composer MAINTAINER Julien Breux <julien.breux@gmail.com> # Run some Debian packages installation. ENV PACKAGES="php-pear curl" RUN apt-get update && \ apt-get install -yq --no-install-recommends $PACKAGES && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* # Run ...
JulienBreux/phpunit-docker
5.0.7/Dockerfile
Dockerfile
mit
1,073
FROM java:8 VOLUME /tmp ADD demo-djt-0.0.1.jar app.jar RUN sh -c 'touch /app.jar' ENTRYPOINT ["java","-Djava.security.egd=file:/dev/./urandom","-jar","/app.jar"]
peim/demo-djt
src/main/docker/Dockerfile
Dockerfile
mit
161
FROM node COPY index.js index.js CMD ["node","index.js"]
wyvernnot/docker-compose-examples
influxdb-udp/Dockerfile
Dockerfile
mit
56
FROM debian:stretch-20181226 # Install tools and dependencies. RUN apt-get update && \ apt-get install -y \ apt-transport-https \ dirmngr \ gnupg \ ca-certificates \ make \ git \ gcc \ g++ \ gdb \ autoconf \ libtool \ a...
brianrob/coretests
managed/aspnet_start/docker/mono_fx_aot_app_jit_llvm/Dockerfile
Dockerfile
mit
2,166
FROM tcnksm/gox:1.4.2-light WORKDIR /goroot/src RUN GOOS=windows GOARCH=amd64 CGO_ENABLED=0 ./make.bash --no-clean RUN GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 ./make.bash --no-clean
lookout/summon-cerberus
Dockerfile
Dockerfile
mit
182
# bitgandtter webimage FROM ubuntu:15.04 # basic env fix ENV TERM xterm # install packages RUN apt-get update && apt-get dist-upgrade -y RUN apt-get install -y apt-utils RUN apt-get install -y htop nano curl git RUN apt-get install -y nginx php5-common php5-cli php5-fpm ...
bitgandtter/dockersf
Dockerfile
Dockerfile
mit
1,126
FROM ubuntu:14.04 MAINTAINER Jean-Tiare Le Bigot "jt@lebigot.net" ENV DEBIAN_FRONTEND noninteractive # Grab all dependencies RUN apt-get update && \ apt-get -y upgrade && \ apt-get -y install curl libx11-dev libxtst-dev libxcomposite-dev \ libxdamage-dev libxkbfile-dev python-all-dev \ ...
yadutaf/docker-firefox-xpra
Dockerfile
Dockerfile
mit
1,574
FROM docker.elastic.co/kibana/kibana-oss:7.10.2 ARG TZ ENV TZ=$TZ USER root RUN ln -fs /usr/share/zoneinfo/$TZ /etc/localtime RUN mkdir -p /var/log/kibana/ RUN chown kibana:kibana /var/log/kibana/ USER kibana
rstiller/inspector-metrics
test-env/kibana/Dockerfile
Dockerfile
mit
212
FROM microsoft/dotnet:1.0.0-preview2-onbuild WORKDIR /app ENV ASPNETCORE_URLS http://*:50759 ENV NLE_URL ${NLE_URL} ENV NLE_PORT ${NLE_PORT} ENV NLE_PROTOCOL ${NLE_PROTOCOL} ENV NLE_KEY ${NLE_KEY} EXPOSE 50759 ENTRYPOINT ["dotnet", "run"] COPY . /app RUN dotnet restore RUN dotnet build
BaobabCoder/nle-admin
src/node-log-admin/Dockerfile
Dockerfile
mit
290
FROM ubuntu:16.04 MAINTAINER soeren.koenig@zalando.de ENV DIST ubuntu16.04 ENV DEBIAN_FRONTEND noninteractive ENV PATH $PATH:/usr/local/go/bin COPY zalando/ /usr/share/ca-certificates/zalando/ RUN ln -fs /usr/share/zoneinfo/Europe/Berlin /etc/localtime && dpkg-reconfigure --frontend noninteractive tzdata RUN apt-ge...
zalando/package-build
docker/ubuntu16.04/Dockerfile
Dockerfile
mit
999
FROM phusion/baseimage # Simple installing and configuring RUN apt-get update && \ apt-get -y install nginx && \ echo "\ndaemon off;" >> /etc/nginx/nginx.conf && \ apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* # TODO: add site config. ADD dev.server /etc/nginx/sites-available/ RUN ...
r0b1n/dockerized-phpdev
nginx/Dockerfile
Dockerfile
mit
501
FROM jboss/base-jdk:8 USER root RUN yum -y install openssh-server git python-setuptools docker which gcc python-devel golang rubygem-bundler ruby-devel libxslt-devel libxml2-devel make gcc-c++ && \ yum clean all RUN groupadd -r jenkins -g 175 && \ useradd -u 175 -r -g jenkins -m -d /home/jenkins -s /bin/bash...
jboss-dockerfiles/ci
jenkins-slave/Dockerfile
Dockerfile
mit
2,163
# AUTOGENERATED FILE FROM balenalib/colibri-imx6dl-ubuntu:eoan-build ENV NODE_VERSION 15.7.0 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \ gpg --keyserver ...
nghiant2710/base-images
balena-base-images/node/colibri-imx6dl/ubuntu/eoan/15.7.0/build/Dockerfile
Dockerfile
apache-2.0
2,761
# AUTOGENERATED FILE FROM balenalib/raspberrypi400-64-debian:buster-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.t...
nghiant2710/base-images
balena-base-images/golang/raspberrypi400-64/debian/buster/1.15.11/build/Dockerfile
Dockerfile
apache-2.0
2,008
FROM node:13.7@sha256:944f469fc0eb34391766f9598d094a38f3fd629791c43972abfa2ce3b1b587f6 WORKDIR /app/ COPY package.json package-lock.json /app/ RUN npm install COPY . /app/ RUN npm run build CMD ["npm", "test"]
wiktor-k/infrastructure-tests
Dockerfile
Dockerfile
apache-2.0
212
# AUTOGENERATED FILE FROM balenalib/cubox-i-debian:buster-build RUN apt-get update \ && apt-get install -y --no-install-recommends \ ca-certificates \ curl \ \ # .NET Core dependencies libc6 \ libgcc1 \ libgssapi-krb5-2 \ libicu63 \ libssl1.1 \ ...
resin-io-library/base-images
balena-base-images/dotnet/cubox-i/debian/buster/5.0-aspnet/build/Dockerfile
Dockerfile
apache-2.0
3,126
# AUTOGENERATED FILE FROM balenalib/odroid-xu4-ubuntu:focal-build ENV NODE_VERSION 14.16.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/odroid-xu4/ubuntu/focal/14.16.1/build/Dockerfile
Dockerfile
apache-2.0
2,761
# AUTOGENERATED FILE FROM balenalib/rockpi-4b-rk3399-fedora:35-build # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 RUN dnf install -y \ python3-pip \ python3-dbus \ && dnf clean all # install "virtua...
resin-io-library/base-images
balena-base-images/python/rockpi-4b-rk3399/fedora/35/3.6.15/build/Dockerfile
Dockerfile
apache-2.0
2,444
# AUTOGENERATED FILE FROM balenalib/ts4900-fedora:34-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 keyserver.ub...
resin-io-library/base-images
balena-base-images/node/ts4900/fedora/34/17.6.0/run/Dockerfile
Dockerfile
apache-2.0
2,741
# AUTOGENERATED FILE FROM balenalib/raspberrypi4-64-debian:sid-build ENV NODE_VERSION 10.24.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/raspberrypi4-64/debian/sid/10.24.0/build/Dockerfile
Dockerfile
apache-2.0
2,782
# AUTOGENERATED FILE FROM balenalib/revpi-connect-alpine:3.10-build ENV GO_VERSION 1.14.13 # set up nsswitch.conf for Go's "netgo" implementation # - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275 # - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf RUN [ ! -e /etc/nsswitch.conf ]...
nghiant2710/base-images
balena-base-images/golang/revpi-connect/alpine/3.10/1.14.13/build/Dockerfile
Dockerfile
apache-2.0
2,342
# AUTOGENERATED FILE FROM balenalib/artik533s-ubuntu:disco-run ENV NODE_VERSION 10.24.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/artik533s/ubuntu/disco/10.24.0/run/Dockerfile
Dockerfile
apache-2.0
2,915
# AUTOGENERATED FILE FROM balenalib/revpi-connect-alpine:3.14-build ENV GO_VERSION 1.17.7 # set up nsswitch.conf for Go's "netgo" implementation # - https://github.com/golang/go/blob/go1.9.1/src/net/conf.go#L194-L275 # - docker run --rm debian:stretch grep '^hosts:' /etc/nsswitch.conf RUN [ ! -e /etc/nsswitch.conf ] ...
resin-io-library/base-images
balena-base-images/golang/revpi-connect/alpine/3.14/1.17.7/build/Dockerfile
Dockerfile
apache-2.0
2,340
# AUTOGENERATED FILE FROM balenalib/beaglebone-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/beaglebone/debian/buster/3.1-runtime/run/Dockerfile
Dockerfile
apache-2.0
2,524
# AUTOGENERATED FILE FROM balenalib/edge-debian:buster-run # remove several traces of debian python RUN apt-get purge -y python.* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # install python dependencie...
nghiant2710/base-images
balena-base-images/python/edge/debian/buster/3.7.9/run/Dockerfile
Dockerfile
apache-2.0
4,094
# AUTOGENERATED FILE FROM balenalib/raspberrypi2-debian:bullseye-run RUN apt-get update \ && apt-get install -y --no-install-recommends \ ca-certificates \ curl \ \ # .NET Core dependencies libc6 \ libgcc1 \ libgssapi-krb5-2 \ libicu57 \ liblttng-ust0...
nghiant2710/base-images
balena-base-images/dotnet/raspberrypi2/debian/bullseye/2.1-aspnet/run/Dockerfile
Dockerfile
apache-2.0
2,606
# AUTOGENERATED FILE FROM balenalib/colibri-imx6dl-alpine:3.10-build # Default to UTF-8 file.encoding ENV LANG C.UTF-8 # add a simple script that can auto-detect the appropriate JAVA_HOME value # based on whether the JDK or only the JRE is installed RUN { \ echo '#!/bin/sh'; \ echo 'set -e'; \ echo; \ echo 'd...
nghiant2710/base-images
balena-base-images/openjdk/colibri-imx6dl/alpine/3.10/8-jdk/build/Dockerfile
Dockerfile
apache-2.0
1,763
FROM nginx:latest COPY sources.list /etc/apt/sources.list
bingoku/docker-devops
nginx/Dockerfile
Dockerfile
apache-2.0
59
FROM golang:1.8-stretch ENV DOCKER_VERSION 1.13.1 RUN curl https://get.docker.com/builds/Linux/x86_64/docker-${DOCKER_VERSION}.tgz | tar -xvz && \ mv docker/docker /usr/local/bin/docker && \ chmod +x /usr/local/bin/docker && \ rm -r docker
eedugon/prometheus-operator
scripts/jenkins/docker-golang-env/Dockerfile
Dockerfile
apache-2.0
253
# AUTOGENERATED FILE FROM balenalib/raspberrypi400-64-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 '...
nghiant2710/base-images
balena-base-images/openjdk/raspberrypi400-64/alpine/3.10/8-jre/run/Dockerfile
Dockerfile
apache-2.0
1,766
# AUTOGENERATED FILE FROM balenalib/artik5-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 --n...
nghiant2710/base-images
balena-base-images/python/artik5/alpine/3.10/3.8.6/run/Dockerfile
Dockerfile
apache-2.0
4,126
# AUTOGENERATED FILE FROM balenalib/iot-gate-imx8-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 63C7CC90:...
resin-io-library/base-images
balena-base-images/python/iot-gate-imx8/debian/bullseye/3.6.15/build/Dockerfile
Dockerfile
apache-2.0
4,861
# AUTOGENERATED FILE FROM balenalib/ccimx8x-sbc-pro-alpine:3.13-run 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 buildDeps='curl' \ && set -x \ && for key in \ 6A010C5166...
nghiant2710/base-images
balena-base-images/node/ccimx8x-sbc-pro/alpine/3.13/15.10.0/run/Dockerfile
Dockerfile
apache-2.0
3,030
# AUTOGENERATED FILE FROM balenalib/genericx86-64-ext-debian:bullseye-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"...
nghiant2710/base-images
balena-base-images/node/genericx86-64-ext/debian/bullseye/12.20.1/build/Dockerfile
Dockerfile
apache-2.0
2,801
# AUTOGENERATED FILE FROM balenalib/srd3-tx2-fedora:32-run ENV NODE_VERSION 15.7.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.sk...
nghiant2710/base-images
balena-base-images/node/srd3-tx2/fedora/32/15.7.0/run/Dockerfile
Dockerfile
apache-2.0
2,745
FROM arm32v7/ubuntu:xenial LABEL io.balena.architecture="armv7hf" LABEL io.balena.qemu.version="5.2.0+balena4-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 \ curl \...
nghiant2710/base-images
balena-base-images/armv7hf/ubuntu/xenial/build/Dockerfile
Dockerfile
apache-2.0
3,643
# AUTOGENERATED FILE FROM balenalib/generic-amd64-fde-ubuntu:xenial-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...
resin-io-library/base-images
balena-base-images/python/generic-amd64-fde/ubuntu/xenial/3.10.2/build/Dockerfile
Dockerfile
apache-2.0
4,844
# AUTOGENERATED FILE FROM balenalib/beaglebone-black-fedora:30-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 "virtua...
nghiant2710/base-images
balena-base-images/python/beaglebone-black/fedora/30/3.6.12/build/Dockerfile
Dockerfile
apache-2.0
2,444
# AUTOGENERATED FILE FROM balenalib/generic-aarch64-alpine:edge-run 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/generic-aarch64/alpine/edge/1.15.7/run/Dockerfile
Dockerfile
apache-2.0
2,472
# AUTOGENERATED FILE FROM balenalib/jetson-tx2-debian:stretch-run # remove several traces of debian python RUN apt-get purge -y python.* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # install python depe...
resin-io-library/base-images
balena-base-images/python/jetson-tx2/debian/stretch/3.7.12/run/Dockerfile
Dockerfile
apache-2.0
4,093
# AUTOGENERATED FILE FROM balenalib/floyd-nano-debian:bookworm-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...
resin-io-library/base-images
balena-base-images/openjdk/floyd-nano/debian/bookworm/17-jdk/run/Dockerfile
Dockerfile
apache-2.0
3,021
# AUTOGENERATED FILE FROM balenalib/armv7hf-ubuntu:xenial-run ENV NODE_VERSION 15.10.0 ENV YARN_VERSION 1.22.4 RUN buildDeps='curl libatomic1' \ && set -x \ && for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.com -...
nghiant2710/base-images
balena-base-images/node/armv7hf/ubuntu/xenial/15.10.0/run/Dockerfile
Dockerfile
apache-2.0
2,915
# AUTOGENERATED FILE FROM balenalib/astro-tx2-debian:bullseye-build ENV NODE_VERSION 16.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" || \ ...
resin-io-library/base-images
balena-base-images/node/astro-tx2/debian/bullseye/16.14.0/build/Dockerfile
Dockerfile
apache-2.0
2,780
# AUTOGENERATED FILE FROM balenalib/zc702-zynq7-ubuntu:focal-run RUN apt-get update \ && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \ ca-certificates \ \ # .NET Core dependencies libc6 \ libgcc1 \ libgssapi-krb5-2 \ libicu66 \ ...
resin-io-library/base-images
balena-base-images/dotnet/zc702-zynq7/ubuntu/focal/3.1-runtime/run/Dockerfile
Dockerfile
apache-2.0
2,557
# AUTOGENERATED FILE FROM balenalib/bananapi-m1-plus-alpine:3.13-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 \ 6A010C516...
nghiant2710/base-images
balena-base-images/node/bananapi-m1-plus/alpine/3.13/14.16.1/run/Dockerfile
Dockerfile
apache-2.0
3,031