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 |
|---|---|---|---|---|---|
#
# 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 us... | apache/kylin | docker/dockerfile/cluster/datanode/Dockerfile | Dockerfile | apache-2.0 | 1,122 |
FROM balenalib/aarch64-alpine:3.13-build
LABEL io.balena.device-type="smarc-px30"
RUN apk add --update \
less \
nano \
net-tools \
ifupdown \
usbutils \
gnupg \
&& rm -rf /var/cache/apk/*
RUN [ ! -d /.balena/messages ] && mkdir -p /.balena/messages; echo $'Here are a few details about this Docker image (... | nghiant2710/base-images | balena-base-images/device-base/smarc-px30/alpine/3.13/build/Dockerfile | Dockerfile | apache-2.0 | 1,019 |
FROM golang:alpine AS build-env
LABEL maintainer "Jimmy Zelinskie <jimmyzelinskie+git@gmail.com>"
# Install OS-level dependencies.
RUN apk add --no-cache curl git
# Copy our source code into the container.
WORKDIR /go/src/github.com/chihaya/chihaya
COPY . /go/src/github.com/chihaya/chihaya
# Install our golang depen... | kotoko/chihaya | Dockerfile | Dockerfile | bsd-2-clause | 648 |
<%#
Copyright 2013-2018 the original author or authors from the JHipster project.
This file is part of the JHipster project, see http://www.jhipster.tech/
for more information.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You ma... | nkolosnjaji/generator-jhipster | generators/server/templates/src/main/docker/cassandra/_Cassandra-Migration.Dockerfile | Dockerfile | apache-2.0 | 1,144 |
# Copyright 2015 The Camlistore Authors.
# We're using vivid, because it has systemd, which makes it easy to servicify Camlistore.
FROM scaleway/ubuntu:vivid
MAINTAINER Mathieu Lonjaret <mathieu.lonjaret@gmail.com> (@lejatorn)
# Prepare rootfs for image-builder
RUN /usr/local/sbin/builder-enter
ENV DEBIAN_FRONTEND no... | scaleway-community/scaleway-camlistore | Dockerfile | Dockerfile | apache-2.0 | 2,649 |
# Copyright 2018 The gRPC 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... | ctiller/grpc | tools/dockerfile/distribtest/python_dev_alpine3.7_x64/Dockerfile | Dockerfile | apache-2.0 | 948 |
FROM flynn/busybox
ADD ./bin/logaggregator /bin/logaggregator
ENTRYPOINT ["/bin/logaggregator"]
| technosophos/flynn | logaggregator/Dockerfile | Dockerfile | bsd-3-clause | 98 |
FROM dockage/alpine:3.8
LABEL maintainer="m.abdolirad@gmail.com" \
org.label-schema.name="php" \
org.label-schema.vendor="Dockage" \
org.label-schema.description="Docker PHP image built on Alpine Linux" \
org.label-schema.version="7.3" \
org.label-schema.license="MIT"
RUN wget -O /etc/apk/keys/php... | dockerzone/php | 7.3/alpine/3.8/fpm/Dockerfile | Dockerfile | mit | 841 |
FROM ruby:2.6.6-slim-buster
ENV LANG C.UTF-8
# Install dependencies.
#
# build-essential - To ensure certain gems can be compiled.
# libpq-dev - Communicate with postgres through the postgres gem.
# postgresql-client - In case of direct access to PostgreSQL,
# e.g. `rake ... | soulim/ptt | Dockerfile | Dockerfile | mit | 1,186 |
############################################################
# Dockerfile to build resolver
# Based on Ubuntu
############################################################
# Set the base image to Ubuntu
FROM digitalpassport/namecoind
# File Author / Maintainer
MAINTAINER Muneeb Ali (@muneeb)
################## BEGIN ... | jetbox/resolver | image/fullnode/Dockerfile | Dockerfile | mit | 1,514 |
FROM python:3.7-alpine
ENV WEB_PORT 8000
RUN mkdir -p /usr/src/app \
&& apk add --update --no-cache py-setuptools nginx bash gettext \
&& rm -rf /etc/nginx/*.default \
&& rm -rf /var/cache/apk/* \
&& rm -rf /tmp/* \
&& rm -rf /var/www/*
WORKDIR /usr/src/app
ADD ./app /usr/src/app/
ADD ./nginx.co... | viyh/whisper | Dockerfile | Dockerfile | mit | 745 |
FROM python:3.8.6-slim-buster
LABEL maintainer="tero.paloheimo@iki.fi"
WORKDIR /usr/local/app
COPY . .
# Install dependencies for psycogpg2
RUN apt-get update && apt-get install -y --no-install-recommends gcc python3-dev libpq-dev && rm -rf /var/lib/apt/lists/*
RUN pip install -r requirements.txt
RUN pip install guni... | terop/menu-app | app/Dockerfile | Dockerfile | mit | 403 |
FROM debian:sid
# ---------------- #
# Installation #
# ---------------- #
# Install prerequisites
RUN apt-get -y update && \
apt-get -y install wget curl supervisor libfontconfig1
# Install InfluxDB
RUN wget http://s3.amazonaws.com/influxdb/influxdb_latest_amd64.deb && \
dpkg -i influxd... | nsymms/dockerfiles | grafana-stats/Dockerfile | Dockerfile | mit | 1,993 |
FROM debian:8.2
RUN apt-get update && apt-get install -y nginx apache2-utils
RUN htpasswd -c /etc/nginx/.htpasswd username
RUN htpasswd -b /etc/nginx/.htpasswd username password
RUN sed -i 's/user .*;/user root;/' /etc/nginx/nginx.conf
ADD etc/nginx/sites-enabled/docker /etc/nginx/sites-enabled/docker
CMD service nginx... | docker-in-practice/docker-authenticate | Dockerfile | Dockerfile | mit | 345 |
# Update the VARIANT arg in docker-compose.yml to pick a Node version: 10, 12, 14
ARG VARIANT=12
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:${VARIANT}
RUN sudo apt-get update && sudo apt-get -y install libusb-1.0-0-dev libusb-1.0-0 libudev-dev
# Update args in docker-compose.yaml to set the UID/GID ... | snowypowers/neon-js | .devcontainer/Dockerfile | Dockerfile | mit | 680 |
FROM php:7.0-alpine
RUN docker-php-ext-install pdo_mysql
RUN curl -sS https://getcomposer.org/installer | php && mv composer.phar /usr/local/bin/composer && composer global require hirak/prestissimo --no-plugins --no-scripts
RUN composer --version
RUN composer global require hirak/prestissimo
WORKDIR /usr/src/myapp
C... | thebasix/RentACar | Dockerfile | Dockerfile | mit | 631 |
# AUTOGENERATED FILE
FROM balenalib/npe-x500-m3-ubuntu:cosmic-build
ENV NODE_VERSION 12.20.1
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver ... | nghiant2710/base-images | balena-base-images/node/npe-x500-m3/ubuntu/cosmic/12.20.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,764 |
# AUTOGENERATED FILE
FROM balenalib/aarch64-debian:sid-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 --keyserver keyser... | nghiant2710/base-images | balena-base-images/node/aarch64/debian/sid/10.24.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,929 |
# AUTOGENERATED FILE
FROM balenalib/photon-xavier-nx-ubuntu:xenial-run
ENV NODE_VERSION 12.22.9
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.... | resin-io-library/base-images | balena-base-images/node/photon-xavier-nx/ubuntu/xenial/12.22.9/run/Dockerfile | Dockerfile | apache-2.0 | 2,914 |
# AUTOGENERATED FILE
FROM balenalib/cubox-i-debian:bookworm-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" || \
gp... | resin-io-library/base-images | balena-base-images/node/cubox-i/debian/bookworm/16.14.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,782 |
# AUTOGENERATED FILE
FROM balenalib/aio-3288c-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 dependenc... | nghiant2710/base-images | balena-base-images/python/aio-3288c/debian/sid/3.8.6/run/Dockerfile | Dockerfile | apache-2.0 | 4,086 |
# AUTOGENERATED FILE
FROM balenalib/imx6ul-var-dart-ubuntu:eoan-build
ENV GO_VERSION 1.15.6
RUN mkdir -p /usr/local/go \
&& curl -SLO "http://resin-packages.s3.amazonaws.com/golang/v$GO_VERSION/go$GO_VERSION.linux-armv7hf.tar.gz" \
&& echo "7f60787d9d94ed040e2d58f7715a4dc1cdb9f9160504aec810712a7e20446bb7 go$GO_VER... | nghiant2710/base-images | balena-base-images/golang/imx6ul-var-dart/ubuntu/eoan/1.15.6/build/Dockerfile | Dockerfile | apache-2.0 | 2,029 |
# AUTOGENERATED FILE
FROM balenalib/astro-tx2-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 python depe... | resin-io-library/base-images | balena-base-images/python/astro-tx2/debian/bullseye/3.10.2/run/Dockerfile | Dockerfile | apache-2.0 | 4,094 |
# AUTOGENERATED FILE
FROM balenalib/apalis-imx6-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 dep... | resin-io-library/base-images | balena-base-images/python/apalis-imx6/debian/stretch/3.9.10/run/Dockerfile | Dockerfile | apache-2.0 | 4,094 |
# AUTOGENERATED FILE
FROM balenalib/raspberrypi3-64-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 ] ... | resin-io-library/base-images | balena-base-images/golang/raspberrypi3-64/alpine/edge/1.17.7/run/Dockerfile | Dockerfile | apache-2.0 | 2,472 |
# AUTOGENERATED FILE
FROM balenalib/colibri-imx6-ubuntu:bionic-run
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu60 \
libssl1.1 \
li... | resin-io-library/base-images | balena-base-images/dotnet/colibri-imx6/ubuntu/bionic/3.1-aspnet/run/Dockerfile | Dockerfile | apache-2.0 | 3,120 |
# AUTOGENERATED FILE
FROM balenalib/nebra-hnt-fedora:34-build
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
RUN dnf install -y \
python3-pip \
python3-dbus \
&& dnf clean all
# install "virtualenv", ... | nghiant2710/base-images | balena-base-images/python/nebra-hnt/fedora/34/3.9.4/build/Dockerfile | Dockerfile | apache-2.0 | 2,436 |
# AUTOGENERATED FILE
FROM balenalib/cubox-i-ubuntu:cosmic-build
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.p... | nghiant2710/base-images | balena-base-images/node/cubox-i/ubuntu/cosmic/15.14.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,760 |
# Copyright 2015 Google Inc. 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 applicable law or agr... | kidaa/kythe | tools/docker/Dockerfile | Dockerfile | apache-2.0 | 1,965 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen8mm-fedora:33-run
ENV GO_VERSION 1.16
# 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-arm64.tar.gz" \
&& echo "3770f7eb22d05e25fbee8fb53c... | nghiant2710/base-images | balena-base-images/golang/nitrogen8mm/fedora/33/1.16/run/Dockerfile | Dockerfile | apache-2.0 | 2,068 |
FROM ubuntu:14.04
MAINTAINER Yu-Chen Chang <edcyc.tw@gmail.com>
ENV CASSANDRA_VERSION 2.2.4
# Install curl
RUN apt-get install -y curl
# Setup repository
RUN apt-key adv --keyserver ha.pool.sks-keyservers.net --recv-keys 514A2AD631A57A16DD0047EC749D6EEC0353B12C
RUN echo 'deb http://www.apache.org/dist/cassandra/debi... | cloudawan/cloudone_template | cassandra/image/src/Dockerfile | Dockerfile | apache-2.0 | 967 |
# AUTOGENERATED FILE
FROM balenalib/amd64-alpine:edge-build
# remove several traces of python
RUN apk del python*
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
# key 63C7CC90: public key "Simon McVittie <... | resin-io-library/base-images | balena-base-images/python/amd64/alpine/edge/3.7.12/build/Dockerfile | Dockerfile | apache-2.0 | 4,838 |
# AUTOGENERATED FILE
FROM balenalib/beaglebone-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/beaglebone/debian/stretch/3.10.0/run/Dockerfile | Dockerfile | apache-2.0 | 4,093 |
# AUTOGENERATED FILE
FROM balenalib/artik533s-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/artik533s/debian/buster/5.0-runtime/build/Dockerfile | Dockerfile | apache-2.0 | 2,527 |
FROM python:2.7
ADD init-app.sh /usr/local/bin/
# Install some useful tools and libraries.
RUN apt-get update && \
apt-get install -y \
iptables
# Set up an unprivileged user so that we can drop out of root.
# Make /home/paradrop so that pip can drop some files in there.
# Make /opt/paradrop/app for inst... | ParadropLabs/Paradrop | base_images/python2-x86_64/Dockerfile | Dockerfile | apache-2.0 | 1,268 |
# AUTOGENERATED FILE
FROM balenalib/surface-go-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/surface-go/debian/bookworm/17-jdk/run/Dockerfile | Dockerfile | apache-2.0 | 3,020 |
# AUTOGENERATED FILE
FROM balenalib/parallella-hdmi-resin-debian:buster-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 \
' \
... | nghiant2710/base-images | balena-base-images/golang/parallella-hdmi-resin/debian/buster/1.16/run/Dockerfile | Dockerfile | apache-2.0 | 2,361 |
#指定基础镜像
FROM hub.c.163.com/library/java:8-alpine
#指定容器启动时执行命令的目录
WORKDIR /
#导出端口
EXPOSE 8080
#ADD命令:将主机构建环境(上下文)目录中的文件和目录、以及一个URL标记的文件 拷贝到镜像中
#如果源文件是个归档文件(压缩文件),则docker会自动帮解压。
#COPY命令:COPY指令和ADD指令功能和使用方式类似。只是COPY指令不会做自动解压工作:ADD zip.tar /myzip
ADD target/*.jar /app.jar
ENTRYPOINT ["java","-jar","/app.jar"]
| juebanlin/util4j | util4j/Dockerfile | Dockerfile | apache-2.0 | 549 |
# AUTOGENERATED FILE
FROM balenalib/odroid-xu4-ubuntu:xenial-run
ENV NODE_VERSION 16.14.0
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.co... | resin-io-library/base-images | balena-base-images/node/odroid-xu4/ubuntu/xenial/16.14.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,912 |
# AUTOGENERATED FILE
FROM balenalib/imx6ul-var-dart-ubuntu:bionic-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 ... | nghiant2710/base-images | balena-base-images/python/imx6ul-var-dart/ubuntu/bionic/3.8.6/run/Dockerfile | Dockerfile | apache-2.0 | 4,074 |
# AUTOGENERATED FILE
FROM balenalib/odroid-ux3-debian:stretch-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 --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserver... | nghiant2710/base-images | balena-base-images/node/odroid-ux3/debian/stretch/12.22.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,944 |
# AUTOGENERATED FILE
FROM balenalib/edge-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 \
6A010C5166006599AA17F0... | resin-io-library/base-images | balena-base-images/node/edge/alpine/3.13/17.6.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,018 |
# AUTOGENERATED FILE
FROM balenalib/jetson-tx2-alpine:3.10-run
ENV NODE_VERSION 14.15.4
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 \
6A010C516600659... | nghiant2710/base-images | balena-base-images/node/jetson-tx2/alpine/3.10/14.15.4/run/Dockerfile | Dockerfile | apache-2.0 | 3,025 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-nx-devkit-debian:bullseye-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 \
... | nghiant2710/base-images | balena-base-images/golang/jetson-xavier-nx-devkit/debian/bullseye/1.15.7/run/Dockerfile | Dockerfile | apache-2.0 | 2,342 |
# AUTOGENERATED FILE
FROM balenalib/jn30b-nano-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 McVit... | nghiant2710/base-images | balena-base-images/python/jn30b-nano/alpine/3.11/3.8.6/build/Dockerfile | Dockerfile | apache-2.0 | 4,837 |
# AUTOGENERATED FILE
FROM balenalib/aarch64-debian:jessie-build
ENV NODE_VERSION 14.16.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --batch --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --batch --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg ... | nghiant2710/base-images | balena-base-images/node/aarch64/debian/jessie/14.16.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,780 |
# AUTOGENERATED FILE
FROM balenalib/nitrogen6x-debian:stretch-build
RUN apt-get update \
&& apt-get install -y --no-install-recommends \
ca-certificates \
curl \
\
# .NET Core dependencies
libc6 \
libgcc1 \
libgssapi-krb5-2 \
libicu63 \
libssl1.1 \
... | nghiant2710/base-images | balena-base-images/dotnet/nitrogen6x/debian/stretch/3.1-runtime/build/Dockerfile | Dockerfile | apache-2.0 | 2,529 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-nx-devkit-emmc-ubuntu:cosmic-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 --keyserve... | nghiant2710/base-images | balena-base-images/node/jetson-xavier-nx-devkit-emmc/ubuntu/cosmic/15.10.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,932 |
# AUTOGENERATED FILE
FROM balenalib/am571x-evm-ubuntu:disco-run
ENV NODE_VERSION 15.14.0
ENV YARN_VERSION 1.22.4
RUN buildDeps='curl libatomic1' \
&& set -x \
&& for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com... | nghiant2710/base-images | balena-base-images/node/am571x-evm/ubuntu/disco/15.14.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,916 |
FROM python:2
COPY . /src
ENTRYPOINT ["python", "/src/src/sequence_node/__main__.py"]
EXPOSE 9999
| cloudsoft/hyperledger-sequence-node | Dockerfile | Dockerfile | apache-2.0 | 98 |
FROM elasticsearch:1
RUN \
plugin --install lmenezes/elasticsearch-kopf; \
plugin --install org.codelibs/elasticsearch-minhash/1.4.1; \
:
| maage/analyze-testing | elasticsearch-t1/Dockerfile | Dockerfile | apache-2.0 | 142 |
# AUTOGENERATED FILE
FROM balenalib/jetson-nano-2gb-devkit-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... | nghiant2710/base-images | balena-base-images/python/jetson-nano-2gb-devkit/alpine/3.13/2.7.18/run/Dockerfile | Dockerfile | apache-2.0 | 4,586 |
# AUTOGENERATED FILE
FROM balenalib/generic-amd64-fde-fedora:34-build
# http://bugs.python.org/issue19846
# > At the moment, setting "LANG=C" on a Linux system *fundamentally breaks Python 3*, and that's not OK.
ENV LANG C.UTF-8
RUN dnf install -y \
python3-pip \
python3-dbus \
&& dnf clean all
# install "virtu... | resin-io-library/base-images | balena-base-images/python/generic-amd64-fde/fedora/34/3.9.10/build/Dockerfile | Dockerfile | apache-2.0 | 2,460 |
# AUTOGENERATED FILE
FROM balenalib/jetson-xavier-fedora:33-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-arm64.tar.gz" \
&& echo "445b719ebf46d8825360d... | nghiant2710/base-images | balena-base-images/golang/jetson-xavier/fedora/33/1.14.13/run/Dockerfile | Dockerfile | apache-2.0 | 2,076 |
# AUTOGENERATED FILE
FROM balenalib/n510-tx2-ubuntu:eoan-build
ENV NODE_VERSION 10.24.0
ENV YARN_VERSION 1.22.4
RUN for key in \
6A010C5166006599AA17F08146C2130DFD2497F5 \
; do \
gpg --keyserver pgp.mit.edu --recv-keys "$key" || \
gpg --keyserver keyserver.pgp.com --recv-keys "$key" || \
gpg --keyserver ha.po... | nghiant2710/base-images | balena-base-images/node/n510-tx2/ubuntu/eoan/10.24.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,753 |
# AUTOGENERATED FILE
FROM balenalib/genericx86-64-ext-ubuntu:eoan-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/genericx86-64-ext/ubuntu/eoan/1.15.6/run/Dockerfile | Dockerfile | apache-2.0 | 2,343 |
# AUTOGENERATED FILE
FROM balenalib/genericx86-64-ext-alpine:3.12-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... | nghiant2710/base-images | balena-base-images/golang/genericx86-64-ext/alpine/3.12/1.15.11/run/Dockerfile | Dockerfile | apache-2.0 | 2,483 |
FROM ortools/cmake:archlinux_swig AS env
ENV PATH=/root/.local/bin:$PATH
RUN pacman -Syu --noconfirm python python-pip
FROM env AS devel
WORKDIR /home/project
COPY . .
FROM devel AS build
RUN cmake -S. -Bbuild -DBUILD_PYTHON=ON -DBUILD_CXX_SAMPLES=OFF -DBUILD_CXX_EXAMPLES=OFF
RUN cmake --build build --target all -v
R... | google/or-tools | cmake/docker/archlinux/python.Dockerfile | Dockerfile | apache-2.0 | 764 |
# This is an auto generated Dockerfile for ros:ros-core
# generated from docker_images/create_ros_core_image.Dockerfile.em
FROM ubuntu:trusty
# install packages
RUN apt-get update && apt-get install -q -y \
dirmngr \
gnupg2 \
&& rm -rf /var/lib/apt/lists/*
# setup keys
RUN apt-key adv --keyserver hkp://ke... | ruffsl/docker_images | ros/indigo/ubuntu/trusty/ros-core/Dockerfile | Dockerfile | apache-2.0 | 1,122 |
# AUTOGENERATED FILE
FROM balenalib/surface-pro-6-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 de... | nghiant2710/base-images | balena-base-images/python/surface-pro-6/debian/buster/3.7.9/run/Dockerfile | Dockerfile | apache-2.0 | 4,103 |
# AUTOGENERATED FILE
FROM balenalib/imx8m-var-dart-ubuntu:bionic-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 --keyserv... | nghiant2710/base-images | balena-base-images/node/imx8m-var-dart/ubuntu/bionic/14.16.1/build/Dockerfile | Dockerfile | apache-2.0 | 2,763 |
FROM jenkins
# Modify the UID of the jenkins user to automatically match the mounted volume.
# Use it just like the original: https://hub.docker.com/_/jenkins/
USER root
# Grab gosu for easy step-down from root.
ADD https://github.com/tianon/gosu/releases/download/1.5/gosu-amd64 /usr/local/bin/gosu
# Change the gro... | bdruemen/jenkins-docker-uid-from-volume | Dockerfile | Dockerfile | apache-2.0 | 609 |
# AUTOGENERATED FILE
FROM balenalib/generic-aarch64-fedora:33-run
ENV NODE_VERSION 15.10.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... | nghiant2710/base-images | balena-base-images/node/generic-aarch64/fedora/33/15.10.0/run/Dockerfile | Dockerfile | apache-2.0 | 2,754 |
FROM centos:7
MAINTAINER Justin R. Stout <justinrstout@justinrstout.com>
ENV JAVA_VERSION 8
ENV JAVA_UPDATE 60
ENV JAVA_BUILD 27
RUN yum install -y wget
RUN wget --no-cookies --no-check-certificate --header \
"Cookie: gpw_e24=htt%3A%2F%2Fwww.oracle.com%2F; oraclelicense=accept-securebackup-cookie" \
"http:/... | justinrstout/docker-oracle-jdk | Dockerfile | Dockerfile | apache-2.0 | 988 |
FROM jupyter/minimal-notebook
MAINTAINER Jupyter Project <jupyter@googlegroups.com>
USER root
# R pre-requisites
RUN apt-get update && \
apt-get install -y --no-install-recommends \
libxrender1 \
fonts-dejavu \
gfortran \
gcc && apt-get clean
# Julia dependencies
RUN apt-get update && \
apt-... | torz/docker-stacks | datascience-notebook/Dockerfile | Dockerfile | bsd-3-clause | 2,562 |
FROM java
RUN apt-get install -qq -y wget
RUN wget -nv http://download.elasticsearch.org/elasticsearch/elasticsearch/elasticsearch-1.2.1.tar.gz ; tar xzf elasticsearch-1.2.1.tar.gz
CMD elasticsearch-1.2.1/bin/elasticsearch
EXPOSE 9200 | ewolff/user-registration | log-analysis/elasticsearch/Dockerfile | Dockerfile | apache-2.0 | 235 |
# Copyright 2017 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, ... | GoogleCloudPlatform/ruby-docker | app-engine-exec-wrapper/Dockerfile | Dockerfile | apache-2.0 | 1,025 |
FROM haskell:7.10.3
RUN apt update -yqq && apt install -yqq xz-utils make
RUN apt install -yqq libpq-dev libmysqlclient-dev pkg-config libpcre3 libpcre3-dev
COPY ./yesod-mysql-mongo ./
RUN stack build -j$(nproc) --skip-ghc-check --no-terminal
CMD stack exec yesod-mysql-mongo -- $(nproc) tfb-database +RTS -A32m -N$(... | zapov/FrameworkBenchmarks | frameworks/Haskell/yesod/yesod.dockerfile | Dockerfile | bsd-3-clause | 327 |
# CEPH BASE IMAGE on OpenSUSE Leap 42.2
# CEPH VERSION: Jewel
# CEPH VERSION DETAIL: 10.2.4
FROM opensuse:42.2
MAINTAINER Ricardo Dias "rdias@suse.com"
# Install Ceph
RUN zypper -n ref && \
zypper -n install net-tools "ceph<11" "ceph-radosgw<11" "rbd-mirror<11" && \
zypper clean -a
ADD entrypoint.sh /entrypo... | cdxvirt/ceph-docker | ceph-releases/jewel/opensuse/Leap_42.2/base/Dockerfile | Dockerfile | apache-2.0 | 357 |
FROM ruby:2.6
ADD ./ /rails
WORKDIR /rails
RUN bundle install --jobs=4 --gemfile=/rails/Gemfile --path=/rails/rails/bundle
CMD DB_HOST=tfb-database bundle exec puma -C config/mri_puma.rb -b tcp://0.0.0.0:8080 -e production
| sxend/FrameworkBenchmarks | frameworks/Ruby/rails/rails.dockerfile | Dockerfile | bsd-3-clause | 227 |
FROM ubuntu:18.04
COPY ./ ./
RUN apt-get update -yqq && \
apt-get install -yqq software-properties-common build-essential curl locales wget unzip git \
libmysqlclient-dev libpq-dev \
libpcre3 libpcre3-dev \
libssl-dev libcurl4-openssl-dev \
zlib1g-dev \
libreadline6-dev \
libbz2-dev \
li... | sumeetchhetri/FrameworkBenchmarks | frameworks/C++/ulib/ulib-json_fit.dockerfile | Dockerfile | bsd-3-clause | 2,544 |
FROM phpdockerio/php73-fpm:latest
# Install selected extensions and other stuff
RUN apt-get update \
&& apt-get -y --no-install-recommends install wget git-core php7.3-mysql php7.3-gd php7.3-intl php7.3-mbstring php7.3-ssh2 php7.3-xdebug php7.3-xsl php7.3-soap \
&& apt-get clean; rm -rf /var/lib/apt/lists/* /t... | arvici/framework | Dockerfile | Dockerfile | mit | 390 |
FROM debian
ADD . /var/www/html/words
WORKDIR /root
RUN apt-get update && apt-get install --assume-yes apache2 php5 libapache2-mod-php5
CMD /usr/sbin/apache2ctl -D FOREGROUND
| mike42/word-puzzles | Dockerfile | Dockerfile | mit | 176 |
# Written against Docker v1.5.0
FROM java:8
MAINTAINER Chris Rebert <code@rebertia.com>
WORKDIR /
USER daemon
ADD target/scala-2.11/rorschach-assembly-1.0.jar /app/server.jar
CMD ["java", "-jar", "/app/server.jar", "9090"]
EXPOSE 9090
| twbs/rorschach | Dockerfile | Dockerfile | mit | 238 |
FROM postgres:10 AS build
ARG USE_POSTGIS=true
ENV PLUGIN_VERSION=v1.8.1.Final
ENV PROTOC_VERSION=1.3
ENV WAL2JSON_COMMIT_ID=92b33c7d7c2fccbeb9f79455dafbc92e87e00ddd
# Install the packages which will be required to get everything to compile
RUN apt-get update \
&& apt-get install -f -y --no-install-recommends \
... | debezium/docker-images | postgres/10/Dockerfile | Dockerfile | mit | 2,460 |
FROM registry.aliyuncs.com/freshncp/java
MAINTAINER berkaroad "jiarong.bai198605@gmail.com"
COPY elasticsearch-2.3.3.deb /tmp/elasticsearch.deb
RUN dpkg -i /tmp/elasticsearch.deb \
&& rm /tmp/elasticsearch.deb
RUN /usr/share/elasticsearch/bin/plugin install mobz/elasticsearch-head
ENV ELASTICSEARCH_CLUSTERNAME "ela... | Berkaroad/docker-images | elasticsearch/Dockerfile | Dockerfile | mit | 1,445 |
FROM openjdk:8
LABEL authors="phil.ewels@scilifelab.se,rickard.hammaren@scilifelab.se,denis.moreno@scilifelab.se" \
description="Docker image containing all requirements for NGI-RNAseq pipeline"
# Install container-wide requrements gcc, pip, zlib, libssl, make, libncurses, fortran77, g++, R
RUN apt-get update && ... | Hammarn/NGI-RNAseq | Dockerfile | Dockerfile | mit | 5,448 |
# Run tor browser in a container
#
# docker run -v /tmp/.X11-unix:/tmp/.X11-unix \
# -v /dev/snd:/dev/snd \
# -v /dev/shm:/dev/shm \
# -v /etc/machine-id:/etc/machine-id:ro \
# -e DISPLAY=unix$DISPLAY \
# jess/tor-browser
#
FROM debian:buster
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
RUN apt-get update && ap... | konstruktoid/dockerfiles | tor-browser/stable/Dockerfile | Dockerfile | mit | 1,999 |
FROM clojure:alpine
COPY . /usr/src/app
WORKDIR /usr/src/app
CMD ["lein", "run"]
| mjwestcott/projecteuler | clojure/Dockerfile | Dockerfile | mit | 83 |
FROM cedvan/ubuntu:14.04.20160326
MAINTAINER dev@cedvan.com
# Install supervisor
RUN apt-get update -qq \
&& apt-get install -qqy supervisor
# Install ssh
RUN apt-get update -qq \
&& apt-get install -qqy ssh
# Install PHP and Nginx
RUN apt-get update -qq \
&& apt-get install -qqy \
git \
... | adamgoose/docker-toran-proxy | Dockerfile | Dockerfile | mit | 1,361 |
FROM alpine:3.7
RUN apk --no-cache add jq
ENTRYPOINT ["jq"]
| treeder/dockers | jq/Dockerfile | Dockerfile | mit | 62 |
FROM node:4.2.4-wheezy
MAINTAINER Alex Flores <me@alexflor.es>
ADD . /app
WORKDIR /app
RUN DEBIAN_FRONTEND=noninteractive \
apt-get -q2 -y update && \
apt-get -y upgrade
RUN npm install
EXPOSE 5000
CMD ["npm", "start"]
| audibleblink/casbot2016 | Dockerfile | Dockerfile | mit | 228 |
FROM ruby:2.3.1
RUN mkdir -p /opt/cloudflare
WORKDIR /opt/cloudflare
ADD . /opt/cloudflare
| turhn/cloudflare-client | Dockerfile | Dockerfile | mit | 92 |
FROM armv7/armhf-fedora:23
# Pull base image
# Install deps
#RUN dnf upgrade -y
RUN dnf install -y \
python-pip python gcc git ca-certificates redhat-rpm-config \
python-devel python-cffi openssl-devel
RUN useradd -u 104 -ms /bin/bash sickbeard
RUN mkdir /conf && chown sickbeard /conf
WORKDIR /sickbeard
EXPO... | romlinch/rpi-sickbeard | Dockerfile | Dockerfile | mit | 645 |
FROM alpine:3.6
LABEL maintainer "diego.navarro.m@gmail.com"
ARG BUILD_DATE
ARG VCS_REF
LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.docker.dockerfile="/Dockerfile" \
org.label-schema.name="aws-mosquitto-broker" \
org.label-schema.url="https://hub.docker.com/r/mantgambl/aws_mosquitto_b... | dnavarrom/aws_mosquitto_broker | Dockerfile | Dockerfile | mit | 990 |
# AUTOGENERATED FILE
FROM balenalib/artik710-alpine:3.11-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 'dirname... | nghiant2710/base-images | balena-base-images/openjdk/artik710/alpine/3.11/7-jdk/build/Dockerfile | Dockerfile | apache-2.0 | 1,757 |
# AUTOGENERATED FILE
FROM balenalib/floyd-nano-debian:sid-run
ENV NODE_VERSION 14.18.3
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... | resin-io-library/base-images | balena-base-images/node/floyd-nano/debian/sid/14.18.3/run/Dockerfile | Dockerfile | apache-2.0 | 2,926 |
# AUTOGENERATED FILE
FROM balenalib/jetson-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... | nghiant2710/base-images | balena-base-images/python/jetson-nano/alpine/3.12/3.9.1/run/Dockerfile | Dockerfile | apache-2.0 | 4,131 |
# AUTOGENERATED FILE
FROM balenalib/generic-alpine:3.13-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 \
; do \
... | nghiant2710/base-images | balena-base-images/node/generic/alpine/3.13/15.7.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,959 |
FROM phusion/baseimage:0.9.12
MAINTAINER Y12STUDIO <y12studio@gmail.com>
ENV HOME /root
ENV LANG zh_TW.UTF-8
ENV DEBIAN_FRONTEND noninteractive
# Use UTF-8 locale inside the container
RUN locale-gen zh_TW.UTF-8
# Use the phusion baseimage's insecure key
RUN /usr/sbin/enable_insecure_key
RUN apt-get update ... | y12studio/y12io | projects/docker-topeka/Dockerfile | Dockerfile | apache-2.0 | 1,037 |
FROM openjdk:8-jre-alpine
# Installs zookeeper:3.4.10
# Install required packages
RUN apk add --no-cache \
bash \
su-exec
ENV ZOO_USER=zookeeper \
ZOO_CONF_DIR=/conf \
ZOO_DATA_DIR=/data \
ZOO_DATA_LOG_DIR=/datalog \
ZOO_PORT=2181 \
ZOO_TICK_TIME=2000 \
ZOO_INIT_LIMIT=5 \
ZOO_SYNC_... | abishgj/Kafka-cluster-on-Kubernetes | docker_images/zookeeper/Dockerfile | Dockerfile | apache-2.0 | 1,669 |
# AUTOGENERATED FILE
FROM balenalib/apalis-imx6q-ubuntu:cosmic-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.... | nghiant2710/base-images | balena-base-images/node/apalis-imx6q/ubuntu/cosmic/10.23.1/run/Dockerfile | Dockerfile | apache-2.0 | 2,920 |
FROM phusion/baseimage
MAINTAINER Yuriy Sannikov <yury.sannikov@gmail.com>
RUN apt-get -y update
RUN apt-get -y install unzip tar
# Install consul
ADD https://dl.bintray.com/mitchellh/consul/0.5.0_linux_amd64.zip /tmp/consul.zip
RUN cd /bin && unzip /tmp/consul.zip && chmod +x /bin/consul && rm /tmp/consul.zip
# Add... | yury-sannikov/ubuntu-consulate | Dockerfile | Dockerfile | apache-2.0 | 1,367 |
# AUTOGENERATED FILE
FROM balenalib/aio-3288c-debian:sid-run
ENV GO_VERSION 1.15.8
# gcc for cgo
RUN apt-get update && apt-get install -y --no-install-recommends \
g++ \
gcc \
libc6-dev \
make \
pkg-config \
git \
&& rm -rf /var/lib/apt/lists/*
RUN set -x \
&& fetchDeps=' \
curl \
' \
&& apt-get up... | nghiant2710/base-images | balena-base-images/golang/aio-3288c/debian/sid/1.15.8/run/Dockerfile | Dockerfile | apache-2.0 | 2,347 |
# 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 u... | apache/orc | docker/ubuntu20/Dockerfile | Dockerfile | apache-2.0 | 1,959 |
# AUTOGENERATED FILE
FROM balenalib/coral-dev-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 python depe... | resin-io-library/base-images | balena-base-images/python/coral-dev/debian/bullseye/3.8.12/run/Dockerfile | Dockerfile | apache-2.0 | 4,094 |
# AUTOGENERATED FILE
FROM balenalib/nanopi-r2c-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 \
6A010C516600659... | resin-io-library/base-images | balena-base-images/node/nanopi-r2c/alpine/3.14/16.14.0/run/Dockerfile | Dockerfile | apache-2.0 | 3,019 |
# AUTOGENERATED FILE
FROM balenalib/rpi-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" || \
gpg --... | resin-io-library/base-images | balena-base-images/node/rpi/debian/bullseye/16.14.0/build/Dockerfile | Dockerfile | apache-2.0 | 2,803 |
FROM ubuntu
MAINTAINER AJ Christensen <aj@junglist.io>
# Setup Go 1.3
ADD http://golang.org/dl/go1.3.linux-amd64.tar.gz /tmp/go.tgz
RUN tar -C /usr/local -xzf /tmp/go.tgz
ADD . /bawt/src/github.com/fujin/bawt
WORKDIR /bawt/src/github.com/fujin/bawt
ENV GOROOT /usr/local/go
ENV GOPATH /bawt
ENV PATH /usr/local/go/bin... | fujin/bawt | Dockerfile | Dockerfile | apache-2.0 | 498 |
FROM python:3.7
ADD server.py funds_correlations.py requirements-api.txt requirements-correlations.txt /app/
WORKDIR app
RUN pip install -r requirements-api.txt -r requirements-correlations.txt
ENTRYPOINT [ "python" ]
CMD [ "server.py" ]
| egenerat/portfolio | correlations/Dockerfile | Dockerfile | apache-2.0 | 241 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.