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 ubuntu:14.04 MAINTAINER Daniel Krech <eikeon@eikeon.com> RUN apt-get -qq update RUN apt-get -qqy install nodejs-legacy npm RUN npm install -g bower gulp ADD . /src RUN cd /src; bower --allow-root install; npm install EXPOSE 3000 CMD cd /src ; gulp
eikeon/rui
Dockerfile
Dockerfile
cc0-1.0
255
# AUTOGENERATED FILE FROM balenalib/beagleboard-xm-ubuntu:cosmic-build ENV NODE_VERSION 10.24.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/beagleboard-xm/ubuntu/cosmic/10.24.1/build/Dockerfile
Dockerfile
apache-2.0
2,767
# AUTOGENERATED FILE FROM balenalib/ts4900-ubuntu:eoan-build ENV GO_VERSION 1.16.3 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 "0cfbfa848a1ab81e2aa2dd257c2b3572c3637d32562b1eaa6aeadb2909911606 go$GO_VERSION.linu...
nghiant2710/base-images
balena-base-images/golang/ts4900/ubuntu/eoan/1.16.3/build/Dockerfile
Dockerfile
apache-2.0
2,020
# # 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...
merlimat/pulsar
pulsar-client-cpp/docker/Dockerfile
Dockerfile
apache-2.0
6,108
# AUTOGENERATED FILE FROM balenalib/beaglebone-green-wifi-alpine:edge-run ENV NODE_VERSION 17.6.0 ENV YARN_VERSION 1.22.4 # Install dependencies RUN apk add --no-cache libgcc libstdc++ libuv \ && apk add --no-cache libssl1.0 || apk add --no-cache libssl1.1 RUN buildDeps='curl' \ && set -x \ && for key in \ 6A010...
resin-io-library/base-images
balena-base-images/node/beaglebone-green-wifi/alpine/edge/17.6.0/run/Dockerfile
Dockerfile
apache-2.0
3,028
# AUTOGENERATED FILE FROM balenalib/astro-tx2-alpine:3.13-run ENV NODE_VERSION 17.6.0 ENV YARN_VERSION 1.22.4 # Install dependencies RUN apk add --no-cache libgcc libstdc++ libuv \ && apk add --no-cache libssl1.0 || apk add --no-cache libssl1.1 RUN buildDeps='curl' \ && set -x \ && for key in \ 6A010C5166006599A...
resin-io-library/base-images
balena-base-images/node/astro-tx2/alpine/3.13/17.6.0/run/Dockerfile
Dockerfile
apache-2.0
3,016
# AUTOGENERATED FILE FROM balenalib/imx7-var-som-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 'dirna...
resin-io-library/base-images
balena-base-images/openjdk/imx7-var-som/alpine/3.14/7-jre/run/Dockerfile
Dockerfile
apache-2.0
1,761
# AUTOGENERATED FILE FROM balenalib/nanopi-r2c-fedora:36-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", s...
resin-io-library/base-images
balena-base-images/python/nanopi-r2c/fedora/36/3.8.12/run/Dockerfile
Dockerfile
apache-2.0
2,433
FROM ubuntu:trusty MAINTAINER Dell Cloud Market Place <Cloud_Marketplace@dell.com> # Set environment variable for package install ENV DEBIAN_FRONTEND noninteractive # Install packages RUN apt-get update && \ echo exit 0 > /usr/sbin/policy-rc.d && \ chmod +x /usr/sbin/policy-rc.d && \ apt-get install -y su...
dell-cloud-marketplace/docker-postgresql
Dockerfile
Dockerfile
apache-2.0
1,622
# AUTOGENERATED FILE FROM balenalib/parallella-hdmi-resin-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 \ libssl...
resin-io-library/base-images
balena-base-images/dotnet/parallella-hdmi-resin/debian/buster/6.0-sdk/run/Dockerfile
Dockerfile
apache-2.0
2,920
# AUTOGENERATED FILE FROM balenalib/floyd-nano-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 so...
resin-io-library/base-images
balena-base-images/openjdk/floyd-nano/debian/bookworm/16-jdk/build/Dockerfile
Dockerfile
apache-2.0
3,024
# AUTOGENERATED FILE FROM balenalib/raspberrypi4-64-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/raspberrypi4-64/alpine/3.14/3.8.12/build/Dockerfile
Dockerfile
apache-2.0
4,841
# AUTOGENERATED FILE FROM balenalib/jn30b-nano-alpine:3.14-run ENV GO_VERSION 1.16.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 ] && e...
resin-io-library/base-images
balena-base-images/golang/jn30b-nano/alpine/3.14/1.16.14/run/Dockerfile
Dockerfile
apache-2.0
2,469
# AUTOGENERATED FILE FROM balenalib/cl-som-imx8-fedora:31-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/cl-som-imx8/fedora/31/3.8.9/build/Dockerfile
Dockerfile
apache-2.0
2,438
FROM openjdk:8 ARG version ARG jar #ARG war LABEL description="SwampUP 2017 Mere Mortals Docker service example." LABEL version=$version EXPOSE 8080 # says jar, but we mean war. COPY build/libs/$jar /app/app.war COPY build/jetty-runner/jetty-runner-*.jar /app/jetty-runner.jar ENTRYPOINT [ "/usr/bin/java", "-jar",...
SwampUpMereMortals/crispy-barnacle
Dockerfile
Dockerfile
apache-2.0
363
# AUTOGENERATED FILE FROM balenalib/apalis-imx6q-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 \ ' \ && apt-...
resin-io-library/base-images
balena-base-images/golang/apalis-imx6q/ubuntu/xenial/1.17.7/run/Dockerfile
Dockerfile
apache-2.0
2,356
# AUTOGENERATED FILE FROM balenalib/cubox-i-alpine:edge-run ENV GO_VERSION 1.15.8 # 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 ...
nghiant2710/base-images
balena-base-images/golang/cubox-i/alpine/edge/1.15.8/run/Dockerfile
Dockerfile
apache-2.0
2,464
# AUTOGENERATED FILE FROM balenalib/generic-alpine:edge-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 ] && ec...
nghiant2710/base-images
balena-base-images/golang/generic/alpine/edge/1.14.13/build/Dockerfile
Dockerfile
apache-2.0
2,343
# Run example: docker run --net=nexus --name mesos-agent1 nexusjpl/spark-mesos-agent FROM nexusjpl/spark-mesos-base MAINTAINER Joseph Jacob "Joseph.Jacob@jpl.nasa.gov" # Run a Mesos slave. WORKDIR ${MESOS_HOME}/build COPY docker-entrypoint.sh /tmp/docker-entrypoint.sh ENTRYPOINT ["/tmp/docker-entrypoint.sh"]
dataplumber/nexus
docker/spark-mesos-agent/Dockerfile
Dockerfile
apache-2.0
316
# AUTOGENERATED FILE FROM balenalib/astro-tx2-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 \ libicu67 \ libssl1.1 \ ...
resin-io-library/base-images
balena-base-images/dotnet/astro-tx2/debian/bullseye/3.1-sdk/build/Dockerfile
Dockerfile
apache-2.0
2,918
# AUTOGENERATED FILE FROM balenalib/cubox-i-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/cubox-i/debian/buster/5.0-runtime/run/Dockerfile
Dockerfile
apache-2.0
2,938
# AUTOGENERATED FILE FROM balenalib/beaglebone-green-wifi-alpine:3.13-run # remove several traces of python RUN apk del python* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # install python dependencies ...
resin-io-library/base-images
balena-base-images/python/beaglebone-green-wifi/alpine/3.13/3.7.12/run/Dockerfile
Dockerfile
apache-2.0
4,139
# AUTOGENERATED FILE FROM balenalib/aio-3288c-debian:bullseye-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-...
nghiant2710/base-images
balena-base-images/golang/aio-3288c/debian/bullseye/1.14.14/run/Dockerfile
Dockerfile
apache-2.0
2,359
# AUTOGENERATED FILE FROM balenalib/nanopc-t4-debian:jessie-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/nanopc-t4/debian/jessie/7-jre/build/Dockerfile
Dockerfile
apache-2.0
3,091
# AUTOGENERATED FILE FROM balenalib/parallella-ubuntu:disco-build ENV GO_VERSION 1.16.3 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 "0cfbfa848a1ab81e2aa2dd257c2b3572c3637d32562b1eaa6aeadb2909911606 go$GO_VERSION...
nghiant2710/base-images
balena-base-images/golang/parallella/ubuntu/disco/1.16.3/build/Dockerfile
Dockerfile
apache-2.0
2,026
# AUTOGENERATED FILE FROM balenalib/up-squared-ubuntu:xenial-run ENV NODE_VERSION 15.14.0 ENV YARN_VERSION 1.22.4 RUN buildDeps='curl libatomic1' \ && set -x \ && for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.co...
nghiant2710/base-images
balena-base-images/node/up-squared/ubuntu/xenial/15.14.0/run/Dockerfile
Dockerfile
apache-2.0
2,921
# AUTOGENERATED FILE FROM balenalib/beaglebone-pocket-fedora:36-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 --keyserve...
resin-io-library/base-images
balena-base-images/node/beaglebone-pocket/fedora/36/12.22.9/build/Dockerfile
Dockerfile
apache-2.0
2,758
# AUTOGENERATED FILE FROM balenalib/orange-pi-one-alpine:3.12-build ENV NODE_VERSION 15.7.0 ENV YARN_VERSION 1.22.4 # Install dependencies RUN apk add --no-cache libgcc libstdc++ libuv \ && apk add --no-cache libssl1.0 || apk add --no-cache libssl1.1 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; d...
nghiant2710/base-images
balena-base-images/node/orange-pi-one/alpine/3.12/15.7.0/build/Dockerfile
Dockerfile
apache-2.0
2,958
# AUTOGENERATED FILE FROM balenalib/jetson-tx2-alpine:3.10-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 ] && ec...
nghiant2710/base-images
balena-base-images/golang/jetson-tx2/alpine/3.10/1.16/build/Dockerfile
Dockerfile
apache-2.0
2,333
# AUTOGENERATED FILE FROM balenalib/raspberrypi3-64-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/raspberrypi3-64/debian/stretch/3.1-runtime/run/Dockerfile
Dockerfile
apache-2.0
2,533
# AUTOGENERATED FILE FROM balenalib/up-squared-debian:sid-build ENV GO_VERSION 1.16 RUN mkdir -p /usr/local/go \ && curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-amd64.tar.gz" \ && echo "013a489ebb3e24ef3d915abe5b94c3286c070dfe0818d5bca8108f1d6e8440d2 go$GO_VERSION.linux-amd64.tar.gz" | sha2...
nghiant2710/base-images
balena-base-images/golang/up-squared/debian/sid/1.16/build/Dockerfile
Dockerfile
apache-2.0
2,004
# AUTOGENERATED FILE FROM balenalib/up-squared-debian:stretch-run # remove several traces of debian python RUN apt-get purge -y python.* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # install python depe...
nghiant2710/base-images
balena-base-images/python/up-squared/debian/stretch/3.7.9/run/Dockerfile
Dockerfile
apache-2.0
4,102
# AUTOGENERATED FILE FROM balenalib/via-vab820-quad-fedora:36-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 "virtualen...
resin-io-library/base-images
balena-base-images/python/via-vab820-quad/fedora/36/3.10.0/run/Dockerfile
Dockerfile
apache-2.0
2,438
FROM openjdk:8-jdk-alpine ARG ES_VERSION=5.6.1 LABEL Description="Docker image for basic Elasticsearch service, without XPack" Vendor="FlexStudios" Version="${ES_VERSION}" authors="Kwok Yao Chim <yaochim8@gmail.com>" ENV TZONE="Europe/London" ES_VERSION="${ES_VERSION}" RUN apk add --update bash ca-certificates wget nod...
yaochim/docker
flex-elasticsearch/Dockerfile
Dockerfile
apache-2.0
1,091
# AUTOGENERATED FILE FROM balenalib/beaglebone-black-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...
nghiant2710/base-images
balena-base-images/dotnet/beaglebone-black/debian/bullseye/5.0-aspnet/build/Dockerfile
Dockerfile
apache-2.0
3,136
# AUTOGENERATED FILE FROM balenalib/raspberrypi3-64-debian:buster-run ENV NODE_VERSION 15.10.0 ENV YARN_VERSION 1.22.4 RUN buildDeps='curl libatomic1' \ && set -x \ && for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --batch --keyse...
nghiant2710/base-images
balena-base-images/node/raspberrypi3-64/debian/buster/15.10.0/run/Dockerfile
Dockerfile
apache-2.0
2,943
# AUTOGENERATED FILE FROM balenalib/am571x-evm-debian:sid-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 --batch --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --batch --keyserver keys...
nghiant2710/base-images
balena-base-images/node/am571x-evm/debian/sid/15.7.0/run/Dockerfile
Dockerfile
apache-2.0
2,934
# AUTOGENERATED FILE FROM balenalib/genericx86-64-ext-ubuntu:bionic-build ENV NODE_VERSION 16.14.0 ENV YARN_VERSION 1.22.4 RUN for key in \ 6A010C5166006599AA17F08146C2130DFD2497F5 \ ; do \ gpg --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \ gpg --keys...
resin-io-library/base-images
balena-base-images/node/genericx86-64-ext/ubuntu/bionic/16.14.0/build/Dockerfile
Dockerfile
apache-2.0
2,767
# AUTOGENERATED FILE FROM balenalib/kitra520-ubuntu:bionic-build RUN apt-get update \ && apt-get install -y --no-install-recommends \ ca-certificates \ \ # .NET Core dependencies libc6 \ libgcc1 \ libgssapi-krb5-2 \ libicu60 \ libssl1.1 \ libs...
resin-io-library/base-images
balena-base-images/dotnet/kitra520/ubuntu/bionic/3.1-runtime/build/Dockerfile
Dockerfile
apache-2.0
2,519
# AUTOGENERATED FILE FROM balenalib/jetson-nano-2gb-devkit-debian:buster-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 63...
resin-io-library/base-images
balena-base-images/python/jetson-nano-2gb-devkit/debian/buster/3.7.12/build/Dockerfile
Dockerfile
apache-2.0
4,866
# AUTOGENERATED FILE FROM balenalib/artik710-ubuntu:bionic-build ENV GO_VERSION 1.15.7 RUN mkdir -p /usr/local/go \ && curl -SLO "https://storage.googleapis.com/golang/go$GO_VERSION.linux-arm64.tar.gz" \ && echo "bca4af0c20f86521dfabf3b39fa2f1ceeeb11cebf7e90bdf1de2618c40628539 go$GO_VERSION.linux-arm64.tar.gz" | s...
nghiant2710/base-images
balena-base-images/golang/artik710/ubuntu/bionic/1.15.7/build/Dockerfile
Dockerfile
apache-2.0
1,997
# AUTOGENERATED FILE FROM balenalib/via-vab820-quad-debian:bullseye-run # remove several traces of debian python RUN apt-get purge -y python.* # http://bugs.python.org/issue19846 # > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK. ENV LANG C.UTF-8 # install pytho...
resin-io-library/base-images
balena-base-images/python/via-vab820-quad/debian/bullseye/3.10.0/run/Dockerfile
Dockerfile
apache-2.0
4,100
# AUTOGENERATED FILE FROM balenalib/orange-pi-zero-debian:bullseye-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 --batch --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --batch --keys...
nghiant2710/base-images
balena-base-images/node/orange-pi-zero/debian/bullseye/10.24.0/run/Dockerfile
Dockerfile
apache-2.0
2,950
FROM ubuntu:18.04 # Needed to be able to install python versions. RUN apt-get update && apt-get install -y software-properties-common RUN add-apt-repository ppa:deadsnakes/ppa RUN apt-get update && apt-get install -y \ python3.5 \ python3.6 \ python3.7 \ libpq-dev \ gdal-bin \ python3-distutils \ python3-pip ...
Hipo/django-sloop
Dockerfile
Dockerfile
apache-2.0
479
FROM $USER/hadoop-base NAME spark NAME spark-client # Make the various directories needed RUN mkdir -p /service/runscripts/start /service/runscripts/restart /service/runscripts/test /service/runscripts/stop # Install everything. Spark needs a newer version of Numpy, so we'll need to # use `pip` to install it. RUN ap...
jhorey/ferry
ferry/data/dockerfiles/spark/Dockerfile
Dockerfile
apache-2.0
3,070
FROM node:16-bullseye-slim AS BUILD # git is needed to install Half-Shot/slackdown RUN apt update && apt install -y git WORKDIR /src COPY package.json package-lock.json /src/ RUN npm ci --ignore-scripts COPY . /src RUN npm run build FROM node:16-bullseye-slim VOLUME /data/ /config/ WORKDIR /usr/src/app COPY packag...
matrix-org/matrix-appservice-slack
Dockerfile
Dockerfile
apache-2.0
731
# # Copyright 2015 Genymobile # # 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,...
Genymobile/gm_pr
Dockerfile
Dockerfile
apache-2.0
1,413
# AUTOGENERATED FILE FROM balenalib/nanopi-r2c-fedora:34-run 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 keyserv...
resin-io-library/base-images
balena-base-images/node/nanopi-r2c/fedora/34/12.22.9/run/Dockerfile
Dockerfile
apache-2.0
2,743
# AUTOGENERATED FILE FROM balenalib/rpi-debian:stretch-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 --b...
nghiant2710/base-images
balena-base-images/node/rpi/debian/stretch/12.20.1/build/Dockerfile
Dockerfile
apache-2.0
2,807
# AUTOGENERATED FILE FROM balenalib/jetson-tx1-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 McVit...
nghiant2710/base-images
balena-base-images/python/jetson-tx1/alpine/3.10/3.8.6/build/Dockerfile
Dockerfile
apache-2.0
4,837
# AUTOGENERATED FILE FROM balenalib/asus-tinker-board-s-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 \ python-pip \ python-dbus \ && dnf clean all # install "virtu...
nghiant2710/base-images
balena-base-images/python/asus-tinker-board-s/fedora/30/2.7.18/build/Dockerfile
Dockerfile
apache-2.0
2,443
# AUTOGENERATED FILE FROM balenalib/photon-nano-debian:sid-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 --batch --keyserver pgp.mit.edu --recv-keys "$key" || \ gpg --batch --keyserver key...
nghiant2710/base-images
balena-base-images/node/photon-nano/debian/sid/15.6.0/run/Dockerfile
Dockerfile
apache-2.0
2,931
# 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/devel-gpu-jupyter.Dockerfile
Dockerfile
apache-2.0
6,544
FROM linuxkit/alpine:9bcf61f605ef0ce36cc94d59b8eac307862de6e1 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 \ musl \ openntpd \ && true RUN rm -rf /out/etc/apk /out/lib/apk /out/var/cache FROM scratch ENT...
kencochrane/linuxkit
pkg/openntpd/Dockerfile
Dockerfile
apache-2.0
554
FROM nvidia/cuda:8.0-devel-ubuntu16.04 RUN apt-get update && apt-get install -y --no-install-recommends \ cuda-samples-8.0 && \ rm -rf /var/lib/apt/lists/* WORKDIR /usr/local/cuda/samples/1_Utilities/deviceQuery RUN make #CMD ./deviceQuery CMD yes
angrygoat/DE-Reference
utils/Docker-NvidiaTest/Dockerfile
Dockerfile
bsd-2-clause
264
FROM sumeetchhetri/ffead-cpp-5.0-base:5.2 ENV IROOT=/installs WORKDIR / CMD ./run_ffead.sh ffead-cpp-5.0 nginx mongo
volyrique/FrameworkBenchmarks
frameworks/C++/ffead-cpp/ffead-cpp-nginx.dockerfile
Dockerfile
bsd-3-clause
120
# container to just run cron scripts it finds in this directory FROM alpine:latest MAINTAINER Gavin Gray <g.d.b.gray@sms.ed.ac.uk> # need docker installed to run docker commands RUN apk add --update docker # ADD in all scripts ADD 15min/* /etc/periodic/15min/ ADD daily/* /etc/periodic/daily/ ADD hourly/* /etc/period...
edinburghlivinglab/livinglab-hubserver
cron/Dockerfile
Dockerfile
bsd-3-clause
569
FROM mcr.microsoft.com/dotnet/sdk:5.0 AS build WORKDIR /app COPY Benchmarks . RUN dotnet publish -c Release -o out COPY Benchmarks/appsettings.postgresql.json ./out/appsettings.json FROM mcr.microsoft.com/dotnet/aspnet:5.0 AS runtime ENV ASPNETCORE_URLS http://+:8080 WORKDIR /app COPY --from=build /app/out ./ ENTRYPO...
volyrique/FrameworkBenchmarks
frameworks/VB/aspnetcore/aspcore-vb-mw-ado-pg.dockerfile
Dockerfile
bsd-3-clause
352
FROM microsoft/windowsservercore # $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324 SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop'; $ProgressPreference = 'SilentlyContinue';"] # install MinGit (especially for "go get") # https://blogs.msdn.microsoft.c...
lindenlab/golang
1.8/windows/windowsservercore/Dockerfile
Dockerfile
bsd-3-clause
3,149
FROM node:boron # Create app directory RUN mkdir -p /usr/src/app WORKDIR /usr/src/app # Install app dependencies COPY package.json /usr/src/app/ RUN npm install # Bundle app source COPY package.json /usr/src/app COPY server.js /usr/src/app EXPOSE 8080 CMD [ "npm", "start" ]
xplaylivex/AAC
8- Javascript - JQuery/npm/Dockerfile
Dockerfile
mit
279
# # NOTE: THIS DOCKERFILE IS GENERATED VIA "apply-templates.sh" # # PLEASE DO NOT EDIT IT DIRECTLY. # FROM mcr.microsoft.com/windows/servercore:ltsc2022 # $ProgressPreference: https://github.com/PowerShell/PowerShell/issues/2138#issuecomment-251261324 SHELL ["powershell", "-Command", "$ErrorActionPreference = 'Stop';...
docker-library/pypy
3.8/windows/windowsservercore-ltsc2022/Dockerfile
Dockerfile
mit
4,219
FROM ubuntu:15.04 # This stops apt from presenting interactive prompts when installing apps that # would normally ask for them. Alternatively, check out debconf-set-selections. ENV DEBIAN_FRONTEND=noninteractive # groff is needed by the awscli pip package. # rsync is needed by knife. # zlib1g-dev is needed by the gem...
sbellem/definitive_guide_to_django_deployment
Dockerfile
Dockerfile
mit
973
FROM php:5.5-apache # Install all dependencies ENV DEBIAN_FRONTEND noninteractive RUN apt-get update && apt-get install -qqy \ zlib1g-dev libicu-dev libssl-dev libmcrypt-dev supervisor git-core && \ apt-get clean && rm -r /var/lib/apt/lists/* && \ docker-php-ext-install intl mbstring zip mcrypt && \ ye...
KasunDon/sandbox
docker/Dockerfile
Dockerfile
mit
1,309
FROM biocontainers/biocontainers:vdebian-buster-backports_cv1 MAINTAINER biocontainers <biodocker@gmail.com> LABEL software="ssake" \ base_image="biocontainers/biocontainers:vdebian-buster-backports_cv1" \ container="ssake" \ about.summary="genomics application for assembling millions of very short DN...
BioDocker/containers
ssake/4.0-2-deb/Dockerfile
Dockerfile
apache-2.0
1,127
FROM node:6 ENV NODE_ENV=production ENV PORT=3000 EXPOSE 3000 WORKDIR /opt/src ADD . /opt/src RUN npm install CMD ["node", "./server/app.js"]
henryyp/codevember2016
Dockerfile
Dockerfile
apache-2.0
146
FROM biocontainers/biocontainers:vdebian-buster-backports_cv1 MAINTAINER biocontainers <biodocker@gmail.com> LABEL software="unicycler" \ base_image="biocontainers/biocontainers:vdebian-buster-backports_cv1" \ container="unicycler" \ about.summary="hybrid assembly pipeline for bacterial genomes" \ ...
BioContainers/containers
unicycler/0.4.7dfsg-2-deb/Dockerfile
Dockerfile
apache-2.0
1,105
FROM node:0.10 RUN apt-get update RUN DEBIAN_FRONTEND=noninteractive apt-get install -y unzip ruby bundler fontforge ttfautohint RUN echo $(curl -sS https://appengine.google.com/api/updatecheck) | \ sed -E 's/release: \"(.+)\".*/\1/g' > /gae_sdk_version RUN curl -sS -o /gae_sdk.zip https://storage.googleapis.com/app...
paulirish/WebFundamentals
Dockerfile
Dockerfile
apache-2.0
727
FROM python:2 WORKDIR /app ADD /requirements.txt /app/requirements.txt RUN pip install -r /app/requirements.txt # Wait this number of seconds between checks ENV POLLING_PERIOD 5 # Log only pings with a RTT longer than this number of milliseconds. Pings that fail are always logged ENV PING_THRESHOLD_MS 0 ADD / /app ...
fermayo/tutum-network-tester
Dockerfile
Dockerfile
apache-2.0
351
FROM hseeberger/scala-sbt:8u181_2.12.8_1.2.8 WORKDIR /akka-http-slick-postgres RUN mkdir project COPY akka-http-slick-postgres/project/build.properties project/ COPY akka-http-slick-postgres/project/plugins.sbt project/ RUN \ which sbt && \ pwd && \ ls -la . && \ ls -la project && \ sbt sbtVersion COPY ak...
Dith3r/FrameworkBenchmarks
frameworks/Scala/akka-http/akka-http-slick-postgres.dockerfile
Dockerfile
bsd-3-clause
1,077
# # BUILD # FROM gradle:5.4.1-jdk11 AS gradle_build USER root WORKDIR /hexagon COPY src src COPY build.gradle build.gradle COPY gradle.properties gradle.properties RUN gradle --quiet --exclude-task test # # RUNTIME # FROM openjdk:11.0.3-jdk-stretch ENV DBSTORE mongodb ENV MONGODB_DB_HOST tfb-database ENV WEBENGINE j...
zloster/FrameworkBenchmarks
frameworks/Kotlin/hexagon/hexagon.dockerfile
Dockerfile
bsd-3-clause
455
FROM microsoft/vsts-agent:ubuntu-14.04-standard MAINTAINER Joao Moreno <joao.moreno@microsoft.com> ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update # Dependencies RUN apt-get install -y build-essential RUN apt-get install -y gcc-multilib g++-multilib RUN apt-get install -y git RUN apt-get install -y dpkg-dev RUN...
gagangupt16/vscode
build/tfs/linux/x64/Dockerfile
Dockerfile
mit
1,370
FROM mono:4.0 ENV KRE_VERSION 1.0.0-beta2 ENV KRE_USER_HOME /opt/kre RUN apt-get -qq update && apt-get -qqy install unzip RUN curl -sSL https://raw.githubusercontent.com/aspnet/Home/release/kvminstall.sh | KVM_BRANCH=v$KRE_VERSION sh RUN bash -c "source $KRE_USER_HOME/kvm/kvm.sh \ && kvm install $KRE_VERSION -a def...
PeterJausovec/aspnet-docker
1.0.0-beta2/Dockerfile
Dockerfile
mit
967
# Based on the SequenceIQ hadoop-docker project hosted at # https://github.com/sequenceiq/hadoop-docker, and modified at # the Apache Software Foundation (ASF). # # 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 ...
nishantmonu51/druid
examples/quickstart/tutorial/hadoop/docker/Dockerfile
Dockerfile
apache-2.0
4,860
# Copyright 2017 The Kubernetes 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 ...
spxtr/test-infra
boskos/reaper/Dockerfile
Dockerfile
apache-2.0
684
FROM gliderlabs/alpine:3.1 ENTRYPOINT ["/bin/logspout"] VOLUME /mnt/routes EXPOSE 8000 COPY . /src RUN cd /src && ./build.sh "$(cat VERSION)" ONBUILD COPY ./modules.go /src/modules.go ONBUILD RUN cd /src && ./build.sh "$(cat VERSION)-custom"
raychaser/logspout-http
vendor/src/github.com/gliderlabs/logspout/Dockerfile
Dockerfile
apache-2.0
244
# Inherit from node base image FROM node:6.11 # Updating the environment RUN apt-get update RUN apt-get upgrade -y # This is an alternative to mounting our source code as a volume. # ADD . /app # Install Yarn repository RUN curl -sS http://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add - RUN echo "deb http://dl.y...
jgunnison/react-boilerplate
Dockerfile
Dockerfile
mit
509
# Event Data Common # Just for testing. This is a library. FROM clojure:lein-2.7.0-alpine MAINTAINER Joe Wass jwass@crossref.org COPY src /usr/src/app/src COPY test /usr/src/app/test COPY resources /usr/src/app/resources COPY project.clj /usr/src/app/project.clj WORKDIR /usr/src/app RUN lein deps && lein compile
CrossRef/event-data-common
Dockerfile
Dockerfile
mit
318
# Base Image FROM python:3 # Copy Source COPY . / # Install Dependencies RUN pip install -r requirements.txt # Expose port and Run EXPOSE 8008 CMD ["python", "./app.py"]
DerpyChap/catbot-webserver
Dockerfile
Dockerfile
mit
185
FROM oracle-java:7u40 # See Oracle Java 7 Dockerfile in this repo for the FROM image above. # # If you use a different java 7 image, make sure JAVA_HOME is set # # Installs river-jdbc 2.0.2, head, and bigdesk plugins as well # MAINTAINER Randy D. Wallace Jr. <randy@randywallace.com> ADD https://download.elasticsear...
randywallace/dockerfiles
elasticsearch/v2/Dockerfile
Dockerfile
mit
1,375
# https://docs.docker.com/develop/develop-images/multistage-build/#stop-at-a-specific-build-stage # https://docs.docker.com/compose/compose-file/#target # https://docs.docker.com/engine/reference/builder/#understand-how-arg-and-from-interact ARG NODE_VERSION=16 # "common" stage FROM node:${NODE_VERSION}-alpine AS ap...
api-platform/api-platform
pwa/Dockerfile
Dockerfile
mit
1,020
FROM poolmon/tickbase:latest MAINTAINER David Antliff <david.antliff@gmail.com> RUN apt-get update && apt-get install -y telegraf COPY telegraf.conf /etc/telegraf/telegraf.conf EXPOSE 8125/udp 8092/udp 8094 CMD /usr/bin/telegraf
DavidAntliff/poolmon
services/telegraf/Dockerfile
Dockerfile
mit
232
FROM golang:1.5.1 MAINTAINER Hamed Ghasemzadeh version: 0.1 RUN apt-get update && apt-get -y install rsync cron ENV SYNC_HOME=/go/src/git.jiksoot.com/jiksoot/sync/ RUN mkdir -p $SYNC_HOME RUN go get github.com/tools/godep COPY . $SYNC_HOME ADD ./crontab /etc/crontab RUN chmod g-w /etc/crontab WORKDIR $SYNC_HOME RUN g...
ghasemz/sync
Dockerfile
Dockerfile
mit
436
# #-------------------------------------------------------------------------- # Image Setup #-------------------------------------------------------------------------- # # To edit the 'php-fpm' base Image, visit its repository on Github # https://github.com/LaraDock/php-fpm # # To change its version, see the availab...
prodriguezval/symfodock
php7-fpm/Dockerfile
Dockerfile
mit
5,250
FROM openjdk:8-jre-alpine ENV CCFLAGS="${CCFLAGS} -fPIC" CXXFLAGS="${CXXFLAGS} -fPIC" CPPFLAGS="${CPPFLAGS} -fPIC" RUN apk add --update --virtual build-dependencies wget git g++ python linux-headers alpine-sdk binutils-gold --no-cache && \ mkdir data && cd data && \ # Download and build the matching nodejs ve...
tarent/openjdk-alpine-j2v8
8-jre-j2v8-4-6/Dockerfile
Dockerfile
mit
2,271
FROM rust:1.46-slim RUN apt-get update \ && apt-get install --yes --no-install-recommends neovim curl git python3-pip python3-pytest mypy flake8 npm make \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* RUN python3 -m pip install neovim vim-vint RUN rustup component add rustfmt clippy && r...
autozimu/LanguageClient-neovim
ci/Dockerfile
Dockerfile
mit
564
FROM node:alpine
rojul/snip
languages/javascript/Dockerfile
Dockerfile
mit
18
# Generated by Neurodocker version 0.5.0 # Timestamp: 2019-09-28 17:57:57 UTC # # Thank you for using Neurodocker. If you discover any issues # or ways to improve this software, please submit an issue or # pull request on our GitHub repository: # # https://github.com/kaczmarj/neurodocker FROM neurodebian:stretch...
HBClab/NiBetaSeries
Dockerfile
Dockerfile
mit
5,461
FROM profideo/debian-jessie ENV DEBIAN_FRONTEND noninteractive ENV HOME /root ENV APACHE_RUN_USER www-data ENV APACHE_RUN_GROUP www-data ENV APACHE_LOG_DIR /var/log/apache2 RUN echo 'deb http://ftp.fr.debian.org/debian/ jessie non-free' >> /etc/apt/sources.list RUN echo 'deb-src http://ftp.fr.debian.org/debian/ jessi...
yyameogo/docker-images
apache-2.4.10/Dockerfile
Dockerfile
mit
575
FROM golang MAINTAINER Tsuzu RUN mkdir -p $GOPATH/src/github.com/cs3238-tsuzu/ && cd $GOPATH/src/github.com/cs3238-tsuzu/ && git clone -b swarm https://github.com/cs3238-tsuzu/popcon-sc COPY ./ $GOPATH/src/github.com/cs3238-tsuzu/popcon-sc/ppweb RUN go get -v github.com/cs3238-tsuzu/popcon-sc/ppweb WORKDIR $GOPATH/...
cs3238-tsuzu/popcon-sc
ppweb/Dockerfile
Dockerfile
mit
385
# AUTOGENERATED FILE FROM balenalib/smarc-px30-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 --keyserver ...
nghiant2710/base-images
balena-base-images/node/smarc-px30/debian/buster/15.14.0/run/Dockerfile
Dockerfile
apache-2.0
2,938
# AUTOGENERATED FILE FROM balenalib/generic-aarch64-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 'di...
nghiant2710/base-images
balena-base-images/openjdk/generic-aarch64/alpine/3.10/8-jdk/run/Dockerfile
Dockerfile
apache-2.0
1,760
FROM balenalib/rpi-alpine:3.11-build LABEL io.balena.device-type="raspberry-pi" RUN apk add --update \ less \ nano \ net-tools \ ifupdown \ usbutils \ gnupg \ raspberrypi \ raspberrypi-libs \ raspberrypi-dev \ && rm -rf /var/cache/apk/* RUN [ ! -d /.balena/messages ] && mkdir -p /.balena/messages; ...
nghiant2710/base-images
balena-base-images/device-base/raspberry-pi/alpine/3.11/build/Dockerfile
Dockerfile
apache-2.0
1,074
# AUTOGENERATED FILE FROM balenalib/apalis-imx6q-fedora:30-run 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.po...
nghiant2710/base-images
balena-base-images/node/apalis-imx6q/fedora/30/14.16.1/run/Dockerfile
Dockerfile
apache-2.0
2,755
# AUTOGENERATED FILE FROM balenalib/jetson-xavier-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 ...
resin-io-library/base-images
balena-base-images/python/jetson-xavier/alpine/3.12/3.7.12/run/Dockerfile
Dockerfile
apache-2.0
4,131
# AUTOGENERATED FILE FROM balenalib/aio-3288c-debian:stretch-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 --keyserver ...
nghiant2710/base-images
balena-base-images/node/aio-3288c/debian/stretch/15.14.0/run/Dockerfile
Dockerfile
apache-2.0
2,943
# AUTOGENERATED FILE FROM balenalib/aarch64-fedora:32-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.pool....
nghiant2710/base-images
balena-base-images/node/aarch64/fedora/32/10.23.1/build/Dockerfile
Dockerfile
apache-2.0
2,750
# AUTOGENERATED FILE FROM balenalib/artik710-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 McVitti...
nghiant2710/base-images
balena-base-images/python/artik710/alpine/3.10/2.7.18/build/Dockerfile
Dockerfile
apache-2.0
5,278
# AUTOGENERATED FILE FROM balenalib/etcher-pro-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", s...
nghiant2710/base-images
balena-base-images/python/etcher-pro/fedora/33/3.9.4/run/Dockerfile
Dockerfile
apache-2.0
2,432
# AUTOGENERATED FILE FROM balenalib/colibri-imx6-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...
resin-io-library/base-images
balena-base-images/openjdk/colibri-imx6/fedora/34/8-jre/run/Dockerfile
Dockerfile
apache-2.0
1,318
# AUTOGENERATED FILE FROM balenalib/orange-pi-zero-ubuntu:xenial-run ENV NODE_VERSION 14.16.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.pg...
nghiant2710/base-images
balena-base-images/node/orange-pi-zero/ubuntu/xenial/14.16.0/run/Dockerfile
Dockerfile
apache-2.0
2,922