id
stringlengths
1
8
Commit Hash
stringlengths
40
32.8k
Subject
stringlengths
3
165
Message
stringlengths
6
462
Old Contents
stringlengths
45
32.8k
New Contents
stringlengths
67
32.8k
Ground truth
stringclasses
11 values
2234
27c2dc317c3ce0f5b4eb02f8a4820afbddd2343f
Upgrade
Upgrade
null
null
null
2317
129bf3a6958778ec7da4cb752eb7d2474a9a1074
bump template
bump template Should fix the issue with using default allowed groups in combination with the login service
FROM semtech/mu-ruby-template:2.11.0 MAINTAINER Erika Pauwels <[email protected]> ENV MU_APPLICATION_SALT '' ENV USERS_GRAPH 'http://mu.semte.ch/application' ENV SESSIONS_GRAPH 'http://mu.semte.ch/application'
null
null
211
587c28716217c0655b0abb9a8e9b417d2e21967f
Bumped source to 20201008-5afda63
Bumped source to 20201008-5afda63
FROM docker.pkg.github.com/dock0/service/service:20201008-6d6c2be MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm --needed openssh ENV ADMIN akerl ENV KEY_URL https://id-ed25519.pub/groups/default.txt RUN useradd -d /var/lib/ssh -M ssh_key_sync RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh RUN echo "$KEY_URL" > /var/lib/ssh/key_url ADD sshd_config /etc/ssh/sshd_config ADD run /service/sshd/run ADD sync /var/lib/ssh/sync RUN groupadd remote RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN" RUN passwd -d "$ADMIN"
FROM docker.pkg.github.com/dock0/service/service:20201008-5afda63 MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm --needed openssh ENV ADMIN akerl ENV KEY_URL https://id-ed25519.pub/groups/default.txt RUN useradd -d /var/lib/ssh -M ssh_key_sync RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh RUN echo "$KEY_URL" > /var/lib/ssh/key_url ADD sshd_config /etc/ssh/sshd_config ADD run /service/sshd/run ADD sync /var/lib/ssh/sync RUN groupadd remote RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN" RUN passwd -d "$ADMIN"
null
321
14cad570ad73905ba73be83fbcaa548b511f2e1d
change ADD to COPY
change ADD to COPY
FROM python:3.8-slim as app ENV PYTHONUNBUFFERED 1 RUN pip install --upgrade pipenv gunicorn WORKDIR /app COPY Pipfile /app/ RUN pipenv lock RUN pipenv install --deploy --system ADD manage.py /app/ ADD api /app/api ADD babybuddy /app/babybuddy ADD core /app/core ADD dashboard /app/dashboard ADD locale /app/locale ADD reports /app/reports ADD static /app/static ADD etc/gunicorn.py /app/
FROM python:3.8-slim as app ENV PYTHONUNBUFFERED 1 RUN pip install --upgrade pipenv gunicorn WORKDIR /app COPY Pipfile /app/ RUN pipenv lock RUN pipenv install --deploy --system COPY manage.py /app/ COPY api /app/api COPY babybuddy /app/babybuddy COPY core /app/core COPY dashboard /app/dashboard COPY locale /app/locale COPY reports /app/reports COPY static /app/static COPY etc/gunicorn.py /app/
null
139
08d7719eb074c3d393a33306e645bb01b2b234c1
Bumped source to 20200730-62b8ab8
Bumped source to 20200730-62b8ab8
FROM docker.pkg.github.com/dock0/arch/arch:20200730-cec5f17 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
FROM docker.pkg.github.com/dock0/arch/arch:20200730-62b8ab8 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
null
249
f849f6690811669d05e64ab623598d788ee39b9f
Add debugging information to Dockerfile
Add debugging information to Dockerfile
FROM golang:1.9 MAINTAINER The Stripe Observability Team <[email protected]> RUN mkdir -p /build ENV GOPATH=/go RUN apt-get update RUN apt-get install -y zip RUN go get -u -v github.com/ChimeraCoder/gojson/gojson RUN go get -u -v github.com/golang/protobuf/protoc-gen-go RUN go get -u -v github.com/gogo/protobuf/protoc-gen-gofast RUN go get -u github.com/golang/dep/cmd/dep RUN wget https://github.com/google/protobuf/releases/download/v3.1.0/protoc-3.1.0-linux-x86_64.zip RUN unzip protoc-3.1.0-linux-x86_64.zip RUN cp bin/protoc /usr/bin/protoc RUN chmod 777 /usr/bin/protoc WORKDIR /go/src/github.com/stripe/veneur ADD . /go/src/github.com/stripe/veneur # If running locally, ignore any changes since # the last commit RUN git reset --hard HEAD && git status # Unlike the travis build file, we do NOT need to # ignore changes to protobuf-generated output # because we are guaranteed only one version of Go # used to build protoc-gen-go RUN go generate RUN dep ensure -v RUN gofmt -w . # Stage any changes caused by go generate and gofmt, # then confirm that there are no staged changes. # # If `go generate` or `gofmt` yielded any changes, # this will fail with an error message like "too many arguments" # or "M: binary operator expected" # Due to overlayfs peculiarities, running git diff-index without --cached # won't work, because it'll compare the mtimes (which have changed), and # therefore reports that the file may have changed (ie, a series of 0s) # See https://github.com/stripe/veneur/pull/110#discussion_r92843581 RUN git add . RUN git diff-index --cached --exit-code HEAD RUN go test -race -v -timeout 60s ./... CMD cp -r henson /build/ && env GOBIN=/build go install -a -v -ldflags "-X github.com/stripe/veneur.VERSION=$(git rev-parse HEAD)" ./cmd/...
FROM golang:1.9 MAINTAINER The Stripe Observability Team <[email protected]> RUN mkdir -p /build ENV GOPATH=/go RUN apt-get update RUN apt-get install -y zip RUN go get -u -v github.com/ChimeraCoder/gojson/gojson RUN go get -u -v github.com/golang/protobuf/protoc-gen-go RUN go get -u -v github.com/gogo/protobuf/protoc-gen-gofast RUN go get -u github.com/golang/dep/cmd/dep RUN wget https://github.com/google/protobuf/releases/download/v3.1.0/protoc-3.1.0-linux-x86_64.zip RUN unzip protoc-3.1.0-linux-x86_64.zip RUN cp bin/protoc /usr/bin/protoc RUN chmod 777 /usr/bin/protoc WORKDIR /go/src/github.com/stripe/veneur ADD . /go/src/github.com/stripe/veneur # If running locally, ignore any changes since # the last commit RUN git reset --hard HEAD && git status # Unlike the travis build file, we do NOT need to # ignore changes to protobuf-generated output # because we are guaranteed only one version of Go # used to build protoc-gen-go RUN go generate RUN dep ensure -v RUN gofmt -w . # Stage any changes caused by go generate and gofmt, # then confirm that there are no staged changes. # # If `go generate` or `gofmt` yielded any changes, # this will fail with an error message like "too many arguments" # or "M: binary operator expected" # Due to overlayfs peculiarities, running git diff-index without --cached # won't work, because it'll compare the mtimes (which have changed), and # therefore reports that the file may have changed (ie, a series of 0s) # See https://github.com/stripe/veneur/pull/110#discussion_r92843581 RUN git add . # The output will be empty unless the build fails, in which case this # information is helpful in debugging RUN git diff --cached RUN git diff-index --cached --exit-code HEAD RUN go test -race -v -timeout 60s ./... CMD cp -r henson /build/ && env GOBIN=/build go install -a -v -ldflags "-X github.com/stripe/veneur.VERSION=$(git rev-parse HEAD)" ./cmd/...
null
293
77e838bdbfe70624a878d63d207e0c5e7744c2f7
Bumped source to 20200218-0cb8337
Bumped source to 20200218-0cb8337
FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20200218-b41fa16 MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20200218-0cb8337 MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
null
171
03313769a60a57650d6f037deea10dab730372af
Bumped source to 20200214-c47b88c
Bumped source to 20200214-c47b88c
FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20200214-54a8d1a MAINTAINER akerl <[email protected]> RUN yes | pacman -Syu --force --needed --nodeps \ curl-amylum \ gmp-amylum \ gnupg-amylum \ gpgme-amylum \ krb5-amylum \ libarchive-amylum \ libassuan-amylum \ libgcrypt-amylum \ libgpg-error-amylum \ libtasn1-amylum \ libunistring-amylum \ musl-amylum \ nettle-amylum \ openssh-amylum \ openssl-amylum \ p11-kit-amylum \ pacman-amylum \ pacman-mirrorlist-amylum \ sqlite-amylum RUN mv /etc/pacman.conf.pacsave /etc/pacman.conf && \ mv /etc/pacman.d/mirrorlist.pacsave /etc/pacman.d/mirrorlist RUN cp /usr/bin/xz /usr/local/bin/ && \ cp -a /usr/lib/liblzma* /usr/local/lib && \ echo "/usr/local/lib" > /etc/ld.so.conf.d/local.conf && \ ldconfig && \ yes | pacman -S xz-amylum && \ rm -f /usr/local/bin/xz /usr/local/lib/liblzma* /etc/ld.so.conf.d/local.conf && \ ldconfig RUN yes | pacman -S --needed \ bash-amylum \ coreutils-amylum \ git-amylum \ gzip-amylum \ iproute2-amylum \ iputils-amylum \ procps-ng-amylum \ shadow-amylum \ tar-amylum \ util-linux-amylum \ which-amylum \ zlib-amylum RUN pacman -R --noconfirm \ libldap \ e2fsprogs
FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20200214-c47b88c MAINTAINER akerl <[email protected]> RUN yes | pacman -Syu --force --needed --nodeps \ curl-amylum \ gmp-amylum \ gnupg-amylum \ gpgme-amylum \ krb5-amylum \ libarchive-amylum \ libassuan-amylum \ libgcrypt-amylum \ libgpg-error-amylum \ libtasn1-amylum \ libunistring-amylum \ musl-amylum \ nettle-amylum \ openssh-amylum \ openssl-amylum \ p11-kit-amylum \ pacman-amylum \ pacman-mirrorlist-amylum \ sqlite-amylum RUN mv /etc/pacman.conf.pacsave /etc/pacman.conf && \ mv /etc/pacman.d/mirrorlist.pacsave /etc/pacman.d/mirrorlist RUN cp /usr/bin/xz /usr/local/bin/ && \ cp -a /usr/lib/liblzma* /usr/local/lib && \ echo "/usr/local/lib" > /etc/ld.so.conf.d/local.conf && \ ldconfig && \ yes | pacman -S xz-amylum && \ rm -f /usr/local/bin/xz /usr/local/lib/liblzma* /etc/ld.so.conf.d/local.conf && \ ldconfig RUN yes | pacman -S --needed \ bash-amylum \ coreutils-amylum \ git-amylum \ gzip-amylum \ iproute2-amylum \ iputils-amylum \ procps-ng-amylum \ shadow-amylum \ tar-amylum \ util-linux-amylum \ which-amylum \ zlib-amylum RUN pacman -R --noconfirm \ libldap \ e2fsprogs
null
2263
876fe93570b4e03df76f102b028223c4839e5b0d
Bumped source to 20210905-c1ef314
Bumped source to 20210905-c1ef314
FROM docker.pkg.github.com/dock0/arch/arch:20210905-f4f3473 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm \ strace tcpdump openbsd-netcat socat htop \ nmap dnsutils net-tools iputils openssh \ screen tmux man-db lsof psmisc git tree \ vim-minimal inetutils
null
null
2292
c5408b9b7636958d1156f1939e4079ad683b98df
Fix permissions of `app/cache` dir
Fix permissions of `app/cache` dir
FROM debian:wheezy MAINTAINER William Durand <[email protected]> ENV DEBIAN_FRONTEND noninteractive RUN apt-get update -y RUN apt-get install -y nginx php5-fpm php5-sqlite php5-cli supervisor curl git-core # Install composer RUN curl -sS https://getcomposer.org/installer | php && mv composer.phar /usr/local/bin/composer # Install NodeJS RUN curl -sL https://deb.nodesource.com/setup | bash - RUN apt-get install -y nodejs # We do two things here. First, configuring php5-fpm and nginx to run in the # foreground so supervisord can keep track of them later. Then we configure # php5-fpm to run with the user as the web server, to avoid a few issues with # file permissions. RUN sed -e 's/;daemonize = yes/daemonize = no/' -i /etc/php5/fpm/php-fpm.conf RUN sed -e 's/;listen\.owner/listen.owner/' -i /etc/php5/fpm/pool.d/www.conf RUN sed -e 's/;listen\.group/listen.group/' -i /etc/php5/fpm/pool.d/www.conf RUN echo "\ndaemon off;" >> /etc/nginx/nginx.conf # Install a couple of configuration files. ADD app/config/docker/vhost.conf /etc/nginx/sites-available/default ADD app/config/docker/supervisor.conf /etc/supervisor/conf.d/supervisor.conf # Install Propilex ADD . /srv/propilex WORKDIR /srv/propilex RUN composer install --prefer-dist --no-dev RUN npm install RUN ./node_modules/.bin/bower install --allow-root RUN cp app/config/propel/runtime-conf.xml.dist app/config/propel/runtime-conf.xml RUN cp app/config/propel/build.properties.dist app/config/propel/build.properties RUN chmod +x vendor/propel/propel1/generator/bin/phing.php RUN bin/bootstrap RUN chown www-data:www-data app/cache/database.db # Forward request and error logs to docker log collector RUN ln -sf /dev/stdout /var/log/nginx/access.log RUN ln -sf /dev/stderr /var/log/nginx/error.log EXPOSE 80 CMD ["/usr/bin/supervisord"]
null
null
198
10bcb6184ca7779766289104193bb5f567c648e5
Bumped source to 20211221-3af6661
Bumped source to 20211221-3af6661
FROM docker.pkg.github.com/dock0/arch/arch:20211221-b0cfb87 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
FROM docker.pkg.github.com/dock0/arch/arch:20211221-3af6661 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
null
134
ea78adaf6321fce0ddd63f388b49801a4426a881
Bumped source to 20210803-f1e279c
Bumped source to 20210803-f1e279c
FROM docker.pkg.github.com/dock0/service/service:20210803-2386ccc MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm --needed openssh ENV ADMIN akerl ENV KEY_URL https://id-ed25519.pub/groups/default.txt RUN useradd -d /var/lib/ssh -M ssh_key_sync RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh RUN echo "$KEY_URL" > /var/lib/ssh/key_url ADD sshd_config /etc/ssh/sshd_config ADD run /service/sshd/run ADD sync /var/lib/ssh/sync RUN groupadd remote RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN" RUN passwd -d "$ADMIN"
FROM docker.pkg.github.com/dock0/service/service:20210803-f1e279c MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm --needed openssh ENV ADMIN akerl ENV KEY_URL https://id-ed25519.pub/groups/default.txt RUN useradd -d /var/lib/ssh -M ssh_key_sync RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh RUN echo "$KEY_URL" > /var/lib/ssh/key_url ADD sshd_config /etc/ssh/sshd_config ADD run /service/sshd/run ADD sync /var/lib/ssh/sync RUN groupadd remote RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN" RUN passwd -d "$ADMIN"
null
2258
cf90b840d3ac7eecee1bdf570aad657b5d939c6c
Bumped source to 20201115-1030562
Bumped source to 20201115-1030562
FROM docker.pkg.github.com/dock0/arch/arch:20201115-2d39c60 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
null
null
2199
92ff18294d65e48487242b325db2986bed8fdc7f
Updated to 10.1.3-ce.0
Updated to 10.1.3-ce.0
FROM gitlab/gitlab-ce:10.1.2-ce.0 RUN \ apt-get update && \ apt-get install cron && \ apt-get clean all ENV BACKUP_TIME="0 12 * * *" COPY container-files /
null
null
2264
ab4e14c8f6445ec4d856134d9bbda3387a8a288f
Upgrade node and npm versions in docker image
Upgrade node and npm versions in docker image Change-Id: I0005623ee10b643bd639a8b674cc1522591f276c
FROM ubuntu # Author / Maintainer MAINTAINER Silkroad Team <[email protected]> # Update repository RUN apt-get update # Install dependencies RUN apt-get -y install curl RUN curl -sL https://deb.nodesource.com/setup | sudo bash - # Install nodejs RUN apt-get -y install nodejs git git-core # Copy app source COPY . /src # Install dev dependencies RUN cd /src; npm install # Expose port EXPOSE 3000 # Enable corbel-composer CMD cd /src; npm start
null
null
2197
a0056b1a88014533e8addc6021e106e2877aa1f8
should fix build inconsistencies for razor
should fix build inconsistencies for razor
FROM docker.io/debian:buster-slim ARG VCS_VER ARG VCS_REF ARG DEBIAN_FRONTEND=noninteractive LABEL org.opencontainers.image.version=${VCS_VER} LABEL org.opencontainers.image.revision=${VCS_REF} LABEL org.opencontainers.image.title="docker-mailserver" LABEL org.opencontainers.image.vendor="The Docker Mailserver Organization" LABEL org.opencontainers.image.authors="The Docker Mailserver Organization on GitHub" LABEL org.opencontainers.image.licenses="MIT" LABEL org.opencontainers.image.description="A fullstack but simple mail server (SMTP, IMAP, LDAP, Antispam, Antivirus, etc.). Only configuration files, no SQL database." LABEL org.opencontainers.image.url="https://github.com/docker-mailserver" LABEL org.opencontainers.image.documentation="https://github.com/docker-mailserver/docker-mailserver/blob/master/README.md" LABEL org.opencontainers.image.source="https://github.com/docker-mailserver/docker-mailserver" ENV ENABLE_POSTGREY=0 ENV FETCHMAIL_POLL=300 ENV ONE_DIR=0 ENV POSTGREY_AUTO_WHITELIST_CLIENTS=5 ENV POSTGREY_DELAY=300 ENV POSTGREY_MAX_AGE=35 ENV POSTGREY_TEXT="Delayed by Postgrey" ENV SASLAUTHD_MECHANISMS=pam ENV SASLAUTHD_MECH_OPTIONS="" ENV VIRUSMAILS_DELETE_DELAY=7 SHELL ["/bin/bash", "-o", "pipefail", "-c"] # ––––––––––––––––––––––––––––––––––––––––––––––– # ––– Install Basic Software –––––––––––––––––––– # ––––––––––––––––––––––––––––––––––––––––––––––– RUN \ apt-get -qq --fix-missing update && \ apt-get -y dist-upgrade >/dev/null && \ apt-get -y install apt-utils &>/dev/null && \ apt-get -y install postfix >/dev/null && \ apt-get -y --no-install-recommends install \ # A - D altermime amavisd-new apt-transport-https arj binutils bzip2 \ dovecot-core dovecot-imapd dovecot-ldap dovecot-lmtpd \ dovecot-managesieved dovecot-pop3d dovecot-sieve dovecot-solr \ dumb-init ca-certificates cabextract clamav clamav-daemon cpio curl \ # E - O ed fail2ban fetchmail file gamin gnupg gzip iproute2 iptables \ locales logwatch lhasa libdate-manip-perl liblz4-tool \ libmail-spf-perl libnet-dns-perl libsasl2-modules lrzip lzop \ netcat-openbsd nomarch opendkim opendkim-tools opendmarc \ # P - Z pax pflogsumm postgrey p7zip-full postfix-ldap postfix-pcre \ postfix-policyd-spf-python postsrsd pyzor \ razor rpm2cpio rsyslog sasl2-bin spamassassin supervisor \ unrar-free unzip whois xz-utils >/dev/null && \ # cleanup apt-get -qq autoclean && \ apt-get -qq clean && \ rm -rf /var/lib/apt/lists/* && \ c_rehash 2>/dev/null # ––––––––––––––––––––––––––––––––––––––––––––––– # ––– ClamAV & FeshClam ––––––––––––––––––––––––– # ––––––––––––––––––––––––––––––––––––––––––––––– RUN \ echo '0 */6 * * * clamav /usr/bin/freshclam --quiet' > /etc/cron.d/clamav-freshclam && \ chmod 644 /etc/clamav/freshclam.conf && \ freshclam && \ sed -i 's/Foreground false/Foreground true/g' /etc/clamav/clamd.conf && \ mkdir /var/run/clamav && \ chown -R clamav:root /var/run/clamav && \ rm -rf /var/log/clamav/ # ––––––––––––––––––––––––––––––––––––––––––––––– # ––– Dovecot & MkCert –––––––––––––––––––––––––– # ––––––––––––––––––––––––––––––––––––––––––––––– COPY target/dovecot/auth-passwdfile.inc target/dovecot/??-*.conf /etc/dovecot/conf.d/ COPY target/dovecot/sieve/ /etc/dovecot/sieve/ COPY target/dovecot/dovecot-purge.cron /etc/cron.d/dovecot-purge.disabled RUN chmod 0 /etc/cron.d/dovecot-purge.disabled WORKDIR /usr/share/dovecot # hadolint ignore=SC2016,SC2086,SC2069 RUN \ sed -i -e 's/include_try \/usr\/share\/dovecot\/protocols\.d/include_try \/etc\/dovecot\/protocols\.d/g' /etc/dovecot/dovecot.conf && \ sed -i -e 's/#mail_plugins = \$mail_plugins/mail_plugins = \$mail_plugins sieve/g' /etc/dovecot/conf.d/15-lda.conf && \ sed -i -e 's/^.*lda_mailbox_autocreate.*/lda_mailbox_autocreate = yes/g' /etc/dovecot/conf.d/15-lda.conf && \ sed -i -e 's/^.*lda_mailbox_autosubscribe.*/lda_mailbox_autosubscribe = yes/g' /etc/dovecot/conf.d/15-lda.conf && \ sed -i -e 's/^.*postmaster_address.*/postmaster_address = '${POSTMASTER_ADDRESS:="[email protected]"}'/g' /etc/dovecot/conf.d/15-lda.conf && \ sed -i 's/#imap_idle_notify_interval = 2 mins/imap_idle_notify_interval = 29 mins/' /etc/dovecot/conf.d/20-imap.conf && \ # adapt mkcert for Dovecot community repo sed -i 's/CERTDIR=.*/CERTDIR=\/etc\/dovecot\/ssl/g' /usr/share/dovecot/mkcert.sh && \ sed -i 's/KEYDIR=.*/KEYDIR=\/etc\/dovecot\/ssl/g' /usr/share/dovecot/mkcert.sh && \ sed -i 's/KEYFILE=.*/KEYFILE=\$KEYDIR\/dovecot.key/g' /usr/share/dovecot/mkcert.sh && \ sed -i 's/RANDFILE.*//g' /usr/share/dovecot/dovecot-openssl.cnf && \ mkdir /etc/dovecot/ssl && \ chmod 755 /etc/dovecot/ssl && \ ./mkcert.sh 2>&1 >/dev/null && \ mkdir -p /usr/lib/dovecot/sieve-pipe /usr/lib/dovecot/sieve-filter /usr/lib/dovecot/sieve-global && \ chmod 755 -R /usr/lib/dovecot/sieve-pipe /usr/lib/dovecot/sieve-filter /usr/lib/dovecot/sieve-global # ––––––––––––––––––––––––––––––––––––––––––––––– # ––– LDAP & Spamassassin's Cron –––––––––––––––– # ––––––––––––––––––––––––––––––––––––––––––––––– COPY target/dovecot/dovecot-ldap.conf.ext /etc/dovecot COPY \ target/postfix/ldap-users.cf \ target/postfix/ldap-groups.cf \ target/postfix/ldap-aliases.cf \ target/postfix/ldap-domains.cf \ /etc/postfix/ # hadolint ignore=SC2016 RUN \ sed -i -r 's/^(CRON)=0/\1=1/g' /etc/default/spamassassin && \ sed -i -r 's/^\$INIT restart/supervisorctl restart amavis/g' /etc/spamassassin/sa-update-hooks.d/amavisd-new # ––––––––––––––––––––––––––––––––––––––––––––––– # ––– Scripts & Miscellaneous ––––––––––––––––––– # ––––––––––––––––––––––––––––––––––––––––––––––– COPY \ ./target/bin/* \ ./target/scripts/*.sh \ ./target/docker-configomat/configomat.sh \ /usr/local/bin/ RUN \ chmod +x /usr/local/bin/* && \ rm -rf /usr/share/locale/* && \ rm -rf /usr/share/man/* && \ rm -rf /usr/share/doc/* && \ touch /var/log/auth.log && \ update-locale && \ rm /etc/postsrsd.secret && \ rm /etc/cron.daily/00logwatch # ––––––––––––––––––––––––––––––––––––––––––––––– # ––– PostSRSD, Postgrey & Amavis ––––––––––––––– # ––––––––––––––––––––––––––––––––––––––––––––––– COPY target/postsrsd/postsrsd /etc/default/postsrsd COPY target/postgrey/postgrey /etc/default/postgrey COPY target/postgrey/postgrey.init /etc/init.d/postgrey RUN \ chmod 755 /etc/init.d/postgrey && \ mkdir /var/run/postgrey && \ chown postgrey:postgrey /var/run/postgrey COPY target/amavis/conf.d/* /etc/amavis/conf.d/ RUN \ sed -i -r 's/#(@| \\%)bypass/\1bypass/g' /etc/amavis/conf.d/15-content_filter_mode && \ adduser clamav amavis >/dev/null && \ adduser amavis clamav >/dev/null && \ # no syslog user in Debian compared to Ubuntu adduser --system syslog >/dev/null && \ useradd -u 5000 -d /home/docker -s /bin/bash -p "$(echo docker | openssl passwd -1 -stdin)" docker >/dev/null && \ echo "0 4 * * * /usr/local/bin/virus-wiper" | crontab - && \ chmod 644 /etc/amavis/conf.d/* RUN su - amavis -c "razor-admin -create && sleep 3 && razor-admin -register" # ––––––––––––––––––––––––––––––––––––––––––––––– # ––– Fail2Ban, DKIM & DMARC –––––––––––––––––––– # ––––––––––––––––––––––––––––––––––––––––––––––– COPY target/fail2ban/jail.conf /etc/fail2ban/jail.conf COPY target/fail2ban/filter.d/postfix-sasl.conf /etc/fail2ban/filter.d/postfix-sasl.conf RUN mkdir /var/run/fail2ban COPY target/opendkim/opendkim.conf /etc/opendkim.conf COPY target/opendkim/default-opendkim /etc/default/opendkim COPY target/opendmarc/opendmarc.conf /etc/opendmarc.conf COPY target/opendmarc/default-opendmarc /etc/default/opendmarc COPY target/opendmarc/ignore.hosts /etc/opendmarc/ignore.hosts RUN \ # switch iptables and ip6tables to legacy for Fail2Ban update-alternatives --set iptables /usr/sbin/iptables-legacy && \ update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy # ––––––––––––––––––––––––––––––––––––––––––––––– # ––– Fetchmail, Postfix & Let'sEncrypt ––––––––– # ––––––––––––––––––––––––––––––––––––––––––––––– COPY target/fetchmail/fetchmailrc /etc/fetchmailrc_general COPY target/postfix/main.cf target/postfix/master.cf /etc/postfix/ COPY target/shared/ffdhe4096.pem /etc/postfix/shared/ffdhe4096.pem COPY \ target/postfix/header_checks.pcre \ target/postfix/sender_header_filter.pcre \ target/postfix/sender_login_maps.pcre \ /etc/postfix/maps/ RUN \ : >/etc/aliases && \ sed -i 's/START_DAEMON=no/START_DAEMON=yes/g' /etc/default/fetchmail && \ mkdir /var/run/fetchmail && chown fetchmail /var/run/fetchmail && \ curl -s https://letsencrypt.org/certs/lets-encrypt-x3-cross-signed.pem >/etc/ssl/certs/lets-encrypt-x3-cross-signed.pem # ––––––––––––––––––––––––––––––––––––––––––––––– # ––– Logs –––––––––––––––––––––––––––––––––––––– # ––––––––––––––––––––––––––––––––––––––––––––––– RUN \ sed -i -r "/^#?compress/c\compress\ncopytruncate" /etc/logrotate.conf && \ mkdir -p /var/log/mail && \ chown syslog:root /var/log/mail && \ touch /var/log/mail/clamav.log && \ chown -R clamav:root /var/log/mail/clamav.log && \ touch /var/log/mail/freshclam.log && \ chown -R clamav:root /var/log/mail/freshclam.log && \ sed -i -r 's|/var/log/mail|/var/log/mail/mail|g' /etc/rsyslog.conf && \ sed -i -r 's|;auth,authpriv.none|;mail.none;mail.error;auth,authpriv.none|g' /etc/rsyslog.conf && \ sed -i -r 's|LogFile /var/log/clamav/|LogFile /var/log/mail/|g' /etc/clamav/clamd.conf && \ sed -i -r 's|UpdateLogFile /var/log/clamav/|UpdateLogFile /var/log/mail/|g' /etc/clamav/freshclam.conf && \ sed -i -r 's|/var/log/clamav|/var/log/mail|g' /etc/logrotate.d/clamav-daemon && \ sed -i -r 's|invoke-rc.d.*|/usr/bin/supervisorctl signal hup clamav >/dev/null \|\| true|g' /etc/logrotate.d/clamav-daemon && \ sed -i -r 's|/var/log/clamav|/var/log/mail|g' /etc/logrotate.d/clamav-freshclam && \ sed -i -r '/postrotate/,/endscript/d' /etc/logrotate.d/clamav-freshclam && \ sed -i -r 's|/var/log/mail|/var/log/mail/mail|g' /etc/logrotate.d/rsyslog && \ sed -i -r '/\/var\/log\/mail\/mail.log/d' /etc/logrotate.d/rsyslog && \ # prevent syslog logrotate warnings sed -i -e 's/\(printerror "could not determine current runlevel"\)/#\1/' /usr/sbin/invoke-rc.d && \ sed -i -e 's/^\(POLICYHELPER=\).*/\1/' /usr/sbin/invoke-rc.d && \ # prevent syslog warning about imklog permissions sed -i -e 's/^module(load=\"imklog\")/#module(load=\"imklog\")/' /etc/rsyslog.conf && \ # prevent email when /sbin/init or init system is not existing sed -i -e 's|invoke-rc.d rsyslog rotate > /dev/null|/usr/bin/supervisorctl signal hup rsyslog >/dev/null|g' /usr/lib/rsyslog/rsyslog-rotate # ––––––––––––––––––––––––––––––––––––––––––––––– # ––– Supervisord & Start ––––––––––––––––––––––– # ––––––––––––––––––––––––––––––––––––––––––––––– COPY target/supervisor/supervisord.conf /etc/supervisor/supervisord.conf COPY target/supervisor/conf.d/* /etc/supervisor/conf.d/ WORKDIR / EXPOSE 25 587 143 465 993 110 995 4190 ENTRYPOINT ["/usr/bin/dumb-init", "--"] CMD ["supervisord", "-c", "/etc/supervisor/supervisord.conf"]
null
null
163
e7850bbe2a7e471c9a7664a31aeba7432e3d9d70
Bumped source to 20201019-6f8e9bb
Bumped source to 20201019-6f8e9bb
FROM docker.pkg.github.com/dock0/arch/arch:20201019-9fe28a5 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm \ strace tcpdump openbsd-netcat socat htop \ nmap dnsutils net-tools iputils openssh \ screen tmux man-db lsof psmisc git tree \ vim-minimal inetutils
FROM docker.pkg.github.com/dock0/arch/arch:20201019-6f8e9bb MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm \ strace tcpdump openbsd-netcat socat htop \ nmap dnsutils net-tools iputils openssh \ screen tmux man-db lsof psmisc git tree \ vim-minimal inetutils
null
252
9843cf6f186dc0c342269592856ac7a117ceb32d
Bumped source to 20200814-ee66659
Bumped source to 20200814-ee66659
FROM docker.pkg.github.com/dock0/arch/arch:20200814-af58a04 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
FROM docker.pkg.github.com/dock0/arch/arch:20200814-ee66659 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
null
131
a30de46c33d7bb1fbfaacfa3884cf037941ff9e7
Bumped source to 20201122-db9c881
Bumped source to 20201122-db9c881
FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20201122-4168b6f MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20201122-db9c881 MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
null
397
78192e9fac3e99bd6b07a745d8b13e428c0d8426
Update to 2.2.16
Update to 2.2.16
FROM node:argon MAINTAINER Raul Rodriguez <[email protected]> ENV PARSE_SERVER_VERSION 2.2.15 RUN npm install -g parse-server@${PARSE_SERVER_VERSION} COPY docker-entrypoint.sh /entrypoint.sh EXPOSE 1337 ENTRYPOINT ["/entrypoint.sh"] CMD ["parse-server"]
FROM node:argon MAINTAINER Raul Rodriguez <[email protected]> ENV PARSE_SERVER_VERSION 2.2.16 RUN npm install -g parse-server@${PARSE_SERVER_VERSION} COPY docker-entrypoint.sh /entrypoint.sh EXPOSE 1337 ENTRYPOINT ["/entrypoint.sh"] CMD ["parse-server"]
null
123
9a8cef0db85ff70e35a2354bb39ba41178a47853
Bumped source to 20200319-cc2850c
Bumped source to 20200319-cc2850c
FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20200319-f5d16c2 MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20200319-cc2850c MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
null
335
59a844bde9a7d99d1ae90dc83f85325e562b81bd
added test data
added test data
FROM kbase/kbase:sdkbase.latest MAINTAINER Dylan Chivian # ----------------------------------------- # Insert apt-get instructions here to install # any required dependencies for your module. # Update Transform (should go away eventually) RUN \ . /kb/dev_container/user-env.sh && \ cd /kb/dev_container/modules && \ rm -rf transform && \ git clone https://github.com/kbase/transform -b develop # setup the transform, but ignore errors because sample data cannot be found! RUN \ . /kb/dev_container/user-env.sh; \ cd /kb/dev_container/modules/transform/t/demo; \ python setup.py; \ exit 0; # Install VSEARCH # RUN git clone https://github.com/torognes/vsearch WORKDIR vsearch RUN ./configure RUN make RUN make install WORKDIR ../ # RUN apt-get update # ----------------------------------------- COPY ./ /kb/module RUN mkdir -p /kb/module/work WORKDIR /kb/module RUN make ENTRYPOINT [ "./scripts/entrypoint.sh" ] CMD [ ]
FROM kbase/kbase:sdkbase.latest MAINTAINER Dylan Chivian # ----------------------------------------- # Insert apt-get instructions here to install # any required dependencies for your module. # Update Transform (should go away eventually) RUN \ . /kb/dev_container/user-env.sh && \ cd /kb/dev_container/modules && \ rm -rf transform && \ git clone https://github.com/kbase/transform -b develop # setup the transform, but ignore errors because sample data cannot be found! RUN \ . /kb/dev_container/user-env.sh; \ cd /kb/dev_container/modules/transform/t/demo; \ python setup.py; \ exit 0; # Install VSEARCH # RUN git clone https://github.com/torognes/vsearch WORKDIR vsearch RUN ./configure RUN make RUN make install RUN git clone https://github.com/dcchivian/kb_vsearch_test_data WORKDIR ../ # RUN apt-get update # ----------------------------------------- COPY ./ /kb/module RUN mkdir -p /kb/module/work WORKDIR /kb/module RUN make ENTRYPOINT [ "./scripts/entrypoint.sh" ] CMD [ ]
null
2282
83d6f7cb75d1bedcb34ed9f32027930f62a433d0
Bumped source to 20201129-a325984
Bumped source to 20201129-a325984
FROM docker.pkg.github.com/dock0/ssh/ssh:20201129-4565f3d MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm --needed cpio dnsutils htop lockfile-progs lsof mtr net-tools whois zsh neovim RUN usermod --shell /usr/bin/zsh $ADMIN RUN su - $ADMIN -c "git clone git://github.com/akerl/....git /home/$ADMIN/..." RUN su - $ADMIN -c '.../... conf https://raw.githubusercontent.com/akerl/dotfiles/master/.dotdotdot.conf' RUN su - $ADMIN -c '.../... supi'
null
null
2265
eac773c1d3a14d52159d01f35e4861e042038cfd
Bumped source to 20211013-1e1930d
Bumped source to 20211013-1e1930d
FROM docker.pkg.github.com/dock0/arch/arch:20211013-301a6d1 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm \ strace tcpdump openbsd-netcat socat htop \ nmap dnsutils net-tools iputils openssh \ screen tmux man-db lsof psmisc git tree \ vim-minimal inetutils
null
null
183
606e10b0fdeec3678306a00214d4fc03346cf783
Bumped source to 20210824-cfcafd0
Bumped source to 20210824-cfcafd0
FROM docker.pkg.github.com/dock0/arch/arch:20210824-7560e8d MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm \ strace tcpdump openbsd-netcat socat htop \ nmap dnsutils net-tools iputils openssh \ screen tmux man-db lsof psmisc git tree \ vim-minimal inetutils
FROM docker.pkg.github.com/dock0/arch/arch:20210824-cfcafd0 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm \ strace tcpdump openbsd-netcat socat htop \ nmap dnsutils net-tools iputils openssh \ screen tmux man-db lsof psmisc git tree \ vim-minimal inetutils
null
2184
f42f00fac59648b10633dcdf40f8869f9af53f60
Bumped source to 20200704-ce3cbba
Bumped source to 20200704-ce3cbba
FROM docker.pkg.github.com/dock0/service/service:20200704-d2525e2 MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm --needed openssh ENV ADMIN akerl ENV KEY_URL https://id-ed25519.pub/groups/default.txt RUN useradd -d /var/lib/ssh -M ssh_key_sync RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh RUN echo "$KEY_URL" > /var/lib/ssh/key_url ADD sshd_config /etc/ssh/sshd_config ADD run /service/sshd/run ADD sync /var/lib/ssh/sync RUN groupadd remote RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN" RUN passwd -d "$ADMIN"
null
null
2320
b7b6b95e1d8aef3d92cf01d97ed1c8bf1def8d93
Added DEBIAN_FRONTEND=noninteractive before apt-get commands
Added DEBIAN_FRONTEND=noninteractive before apt-get commands
FROM ubuntu MAINTAINER Justin Plock <[email protected]> RUN sed 's/main$/main universe/' -i /etc/apt/sources.list RUN apt-get update RUN apt-get upgrade -y RUN apt-get install -y -q wget openjdk-7-jre-headless RUN mkdir -p /opt/snowizard /var/log/snowizard RUN wget -q -O /opt/snowizard/snowizard.jar http://repo.maven.apache.org/maven2/com/ge/snowizard/snowizard-service/1.0.1/snowizard-service-1.0.1.jar ADD ./snowizard-service/snowizard.upstart /etc/init/snowizard.conf ADD ./snowizard-service/snowizard.yml /etc/snowizard.yml ADD ./snowizard-service/snowizard.jvm.conf /etc/snowizard.jvm.conf ENV JAVA_HOME /usr/lib/jvm/default-java # Snowizard port EXPOSE 8080 # Administration port EXPOSE 8180 ENTRYPOINT /usr/bin/java -d64 -server -jar /opt/snowizard/snowizard.jar server /etc/snowizard.yml
null
null
289
424572a3e6180208a721fc38fe3161e64e519f95
Bumped source to 20210109-3d48068
Bumped source to 20210109-3d48068
FROM docker.pkg.github.com/dock0/arch/arch:20210109-5485830 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
FROM docker.pkg.github.com/dock0/arch/arch:20210109-3d48068 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
null
2077
9a1b94a5ca828f79b93db5605a0ee4832344e61c
Update Dockerfile for nightly build 1.6.2-nightly-a633d766d1763f4f4648e423c4e8a8635b183d03
Update Dockerfile for nightly build 1.6.2-nightly-a633d766d1763f4f4648e423c4e8a8635b183d03
# latest possible stable go for bootstrapping new go (or just ":latest") FROM golang:latest # SHA of commit to build ENV GOLANG_BUILD_SHA b64c7fc6832902acb8eebc67c887d2ef9114f644 # Last stable version prior this commit ENV GOLANG_BASE_VERSION 1.6.2 ENV GOLANG_BUILD_VERSION $GOLANG_BASE_VERSION-nightly-$GOLANG_BUILD_SHA # gcc for cgo RUN apt-get update && apt-get install -y --no-install-recommends \ g++ \ gcc \ libc6-dev \ make \ && rm -rf /var/lib/apt/lists/* ENV GOLANG_DOWNLOAD_URL https://github.com/golang/go/archive/$GOLANG_BUILD_SHA.tar.gz ENV GOSRC /usr/local/go-$GOLANG_BUILD_SHA ENV GOROOT $GOSRC ENV GOPATH /go ENV GOROOT_BOOTSTRAP /usr/local/go ENV GOBUILD $GOSRC/src RUN curl -fsSL "$GOLANG_DOWNLOAD_URL" \ | tar -C /usr/local -xz RUN echo $GOLANG_BUILD_VERSION > "$GOROOT/VERSION" WORKDIR $GOBUILD RUN ./make.bash # let new built go take precendence over old go used for bootstrapping it ENV PATH=$GOSRC/bin:$PATH
null
null
341
3fea5aec737b37c576a1d2ab328e3503c037b60d
Bumped source to 20200911-934b1c5
Bumped source to 20200911-934b1c5
FROM docker.pkg.github.com/dock0/arch/arch:20200911-9cb9cec MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm \ strace tcpdump openbsd-netcat socat htop \ nmap dnsutils net-tools iputils openssh \ screen tmux man-db lsof psmisc git tree \ vim-minimal inetutils
FROM docker.pkg.github.com/dock0/arch/arch:20200911-934b1c5 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm \ strace tcpdump openbsd-netcat socat htop \ nmap dnsutils net-tools iputils openssh \ screen tmux man-db lsof psmisc git tree \ vim-minimal inetutils
null
2194
1a394a2b912aba655014a38a8fc384975c66d395
bypass '/dev/tty' gpg bug
bypass '/dev/tty' gpg bug https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=913614
# Use an official Python runtime as a parent image FROM python:3.7-slim-stretch # add our user and group first to make sure their IDs get assigned consistently RUN groupadd -r zeus && useradd -r -m -g zeus zeus ENV NVM_DIR /usr/local/nvm ENV NODE_ENV production ENV PYTHONUNBUFFERED 1 # Sane defaults for pip ENV PIP_NO_CACHE_DIR off ENV PIP_DISABLE_PIP_VERSION_CHECK on RUN mkdir -p /usr/src/zeus WORKDIR /usr/src/zeus RUN set -ex \ && apt-get update && apt-get install -y --no-install-recommends \ build-essential \ ca-certificates \ curl \ gcc \ git \ gosu \ libffi-dev \ libpq-dev \ libxml2-dev \ libxslt-dev \ openssl \ ssh \ wget \ && rm -rf /var/lib/apt/lists/* # install nvm, node, and npm # gpg keys listed at https://github.com/nodejs/node COPY .nvmrc /usr/src/zeus/ ENV YARN_VERSION 1.7.0 RUN set -x \ && export NODE_VERSION=$(cat /usr/src/zeus/.nvmrc) \ && export GNUPGHOME="$(mktemp -d)" \ && apt-get update && apt-get install -y --no-install-recommends dirmngr gnupg && rm -rf /var/lib/apt/lists/* \ && for key in \ 94AE36675C464D64BAFA68DD7434390BDBE9B9C5 \ B9AE9905FFD7803F25714661B63B535A4C206CA9 \ 77984A986EBC2AA786BC0F66B01FBB92821C587A \ 71DCFD284A79C3B38668286BC97EC7A07EDE3FC1 \ FD3A5288F042B6850C66B31F09FE44734EB7990E \ 8FCCA13FEF1D0C2E91008E09770F7A9A5AE15600 \ C4F0DFFF4E8C1A8236409D08E73BC641CC11F4C8 \ DD8F2338BAE7501E3DD5AC78C273792F7D83545D \ 9554F04D7259F04124DE6B476D5A82AC7E37093B \ 93C7E9E91B49E432C2F75674B0A78B0A6C481CF6 \ 56730D5401028683275BD23C23EFEFE93C4CFFFE \ 114F43EE0176B71C7BC219DD50A3051F888C628D \ 7937DFD2AB06298B2293C3187D33FF9D0246406D \ ; do \ gpg --keyserver ha.pool.sks-keyservers.net --recv-keys "$key"; \ done \ && wget --no-verbose "https://nodejs.org/dist/v$NODE_VERSION/node-v$NODE_VERSION-linux-x64.tar.gz" \ && wget --no-verbose "https://nodejs.org/dist/v$NODE_VERSION/SHASUMS256.txt.asc" \ && gpg --verify SHASUMS256.txt.asc \ && grep " node-v$NODE_VERSION-linux-x64.tar.gz\$" SHASUMS256.txt.asc | sha256sum -c - \ && tar -xzf "node-v$NODE_VERSION-linux-x64.tar.gz" -C /usr/local --strip-components=1 \ && rm -rf "$GNUPGHOME" "node-v$NODE_VERSION-linux-x64.tar.gz" SHASUMS256.txt.asc \ && apt-get purge -y --auto-remove dirmngr gnupg \ && npm install -g yarn@$YARN_VERSION \ && npm cache clear --force COPY requirements-base.txt /usr/src/zeus/ RUN pip install -r requirements-base.txt COPY requirements-dev.txt /usr/src/zeus/ RUN pip install -r requirements-dev.txt COPY requirements-test.txt /usr/src/zeus/ RUN pip install -r requirements-test.txt RUN pip install -e git+https://github.com/pallets/werkzeug.git@8eb665a94aea9d9b56371663075818ca2546e152#egg=werkzeug COPY yarn.lock /usr/src/zeus/ COPY package.json /usr/src/zeus/ RUN yarn install --production --pure-lockfile --ignore-optional \ && yarn cache clean COPY . /usr/src/zeus RUN pip install -e . RUN node_modules/.bin/webpack -p ENV WORKSPACE_ROOT /workspace ENV REPO_ROOT /workspace/repos RUN mkdir -p $WORKSPACE_ROOT $REPO_ROOT ENV PATH /usr/src/zeus/bin:$PATH # Make port 8080 available to the world outside this container EXPOSE 8080 EXPOSE 8090 VOLUME /workspace ENTRYPOINT ["docker-entrypoint"] # Run Zeus CMD ["zeus", "run", "--host=0.0.0.0", "--port=8080"]
null
null
2226
86f2da0f15af77c5922bfa652a35a160b64eee54
Bumped source to 20200906-d943f6a
Bumped source to 20200906-d943f6a
FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20200906-52d850a MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
null
null
307
d66233e2a0aecb6e80a4f802b0dc6a5cd2fa9041
fix: change to static base container (#791)
fix: change to static base container (#791) In addition, this commits ensures we compile a static binary by disabling CGO. Fix #762.
# Copyright 2019 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Use the latest stable golang 1.x to compile to a binary FROM golang:1 as build WORKDIR /go/src/cloudsql-proxy COPY . . RUN go get ./... RUN go build -ldflags "-X main.metadataString=container" -o cloud_sql_proxy ./cmd/cloud_sql_proxy # Final Stage FROM gcr.io/distroless/base-debian10:nonroot COPY --from=build --chown=nonroot /go/src/cloudsql-proxy/cloud_sql_proxy /cloud_sql_proxy # set the uid as an integer for compatibility with runAsNonRoot in Kubernetes USER 65532
# Copyright 2019 Google LLC # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # Use the latest stable golang 1.x to compile to a binary FROM golang:1 as build WORKDIR /go/src/cloudsql-proxy COPY . . RUN go get ./... RUN CGO_ENABLED=0 go build -ldflags "-X main.metadataString=container" -o cloud_sql_proxy ./cmd/cloud_sql_proxy # Final Stage FROM gcr.io/distroless/static:nonroot COPY --from=build --chown=nonroot /go/src/cloudsql-proxy/cloud_sql_proxy /cloud_sql_proxy # set the uid as an integer for compatibility with runAsNonRoot in Kubernetes USER 65532
null
54
4bc9702a755389ec9ed253aea8c8403b565c587a
chore(dockerfile): Add aws cli to container build (#1099)
chore(dockerfile): Add aws cli to container build (#1099) Per discussion in spinnaker/spinnaker#2394, adding awscli to container such that the features added in spinnaker/spinnaker#2941 to enable an external passwordCommand for a docker registry can be utilized by AWS users wishing to add their ECR-based docker registries. Signed-off-by: Joe Hohertz <[email protected]>
FROM openjdk:8 MAINTAINER [email protected] ENV KUBECTL_RELEASE=1.10.3 ENV HEPTIO_BINARY_RELEASE_DATE=2018-06-05 COPY . workdir/ WORKDIR workdir RUN GRADLE_USER_HOME=cache ./gradlew installDist -x test -Prelease.useLastTag=true && \ cp -r ./halyard-web/build/install/halyard /opt && \ cd .. && \ rm -rf workdir RUN echo '#!/usr/bin/env bash' | tee /usr/local/bin/hal > /dev/null && \ echo '/opt/halyard/bin/hal "$@"' | tee /usr/local/bin/hal > /dev/null RUN chmod +x /usr/local/bin/hal RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_RELEASE}/bin/linux/amd64/kubectl && \ chmod +x ./kubectl && \ mv ./kubectl /usr/local/bin/kubectl RUN curl -o heptio-authenticator-aws https://amazon-eks.s3-us-west-2.amazonaws.com/${KUBECTL_RELEASE}/${HEPTIO_BINARY_RELEASE_DATE}/bin/linux/amd64/heptio-authenticator-aws && \ chmod +x ./heptio-authenticator-aws && \ mv ./heptio-authenticator-aws /usr/local/bin/heptio-authenticator-aws ENV PATH "$PATH:/usr/local/bin/heptio-authenticator-aws" RUN useradd -m spinnaker USER spinnaker CMD "/opt/halyard/bin/halyard"
FROM openjdk:8 MAINTAINER [email protected] ENV KUBECTL_RELEASE=1.10.3 ENV HEPTIO_BINARY_RELEASE_DATE=2018-06-05 COPY . workdir/ WORKDIR workdir RUN GRADLE_USER_HOME=cache ./gradlew installDist -x test -Prelease.useLastTag=true && \ cp -r ./halyard-web/build/install/halyard /opt && \ cd .. && \ rm -rf workdir RUN echo '#!/usr/bin/env bash' | tee /usr/local/bin/hal > /dev/null && \ echo '/opt/halyard/bin/hal "$@"' | tee /usr/local/bin/hal > /dev/null RUN chmod +x /usr/local/bin/hal RUN curl -LO https://storage.googleapis.com/kubernetes-release/release/v${KUBECTL_RELEASE}/bin/linux/amd64/kubectl && \ chmod +x ./kubectl && \ mv ./kubectl /usr/local/bin/kubectl RUN curl -o heptio-authenticator-aws https://amazon-eks.s3-us-west-2.amazonaws.com/${KUBECTL_RELEASE}/${HEPTIO_BINARY_RELEASE_DATE}/bin/linux/amd64/heptio-authenticator-aws && \ chmod +x ./heptio-authenticator-aws && \ mv ./heptio-authenticator-aws /usr/local/bin/heptio-authenticator-aws ENV PATH "$PATH:/usr/local/bin/heptio-authenticator-aws" RUN wget -O /tmp/get-pip.py https://bootstrap.pypa.io/get-pip.py && \ python /tmp/get-pip.py && \ pip install awscli --upgrade RUN useradd -m spinnaker USER spinnaker CMD "/opt/halyard/bin/halyard"
null
8
a7f9a5fb4a7081a6633aab094445e84ad24d1283
Bumped source to 20210724-cbc37fa
Bumped source to 20210724-cbc37fa
FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20210724-44e8f14 MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20210724-cbc37fa MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
null
257
c9f8f307b5ae03dfdde13dbeac8b1c31ab0f0ba3
Updated Dockerfile
Updated Dockerfile
FROM ubuntu:trusty MAINTAINER Werner Maisl <[email protected]> # Install packages ENV DEBIAN_FRONTEND noninteractive RUN apt-get update && \ apt-get -y install supervisor git apache2 libapache2-mod-php5 mysql-server php5-mysql pwgen php-apc php5-mcrypt curl && \ echo "ServerName localhost" >> /etc/apache2/apache2.conf # Add image configuration and scripts ADD start-apache2.sh /start-apache2.sh ADD start-mysqld.sh /start-mysqld.sh ADD run.sh /run.sh RUN chmod 755 /*.sh ADD my.cnf /etc/mysql/conf.d/my.cnf ADD supervisord-apache2.conf /etc/supervisor/conf.d/supervisord-apache2.conf ADD supervisord-mysqld.conf /etc/supervisor/conf.d/supervisord-mysqld. ADD .env /.env # Remove pre-installed database RUN rm -rf /var/lib/mysql/* # Add MySQL utils ADD create_mysql_admin_user.sh /create_mysql_admin_user.sh ADD create_mysql_database.sh /create_mysql_database.sh RUN chmod 755 /*.sh # config to enable .htaccess ADD apache_default /etc/apache2/sites-available/000-default.conf RUN a2enmod rewrite # Configure /app folder with sample app RUN git clone https://github.com/SourceMod-Store/WebPanel-Core.git /app # Download composer RUN curl -sS https://getcomposer.org/installer (link is external) | php RUN mv composer.phar /usr/local/bin/composer # Link the app to /var/www/html RUN mkdir -p /app && rm -fr /var/www/html && ln -s /app /var/www/html # Link .env to /var/www/html RUN ln -s .env /var/www/html/.env # Compoer install the WebPanel-Core RUN cd /app && composer install #Enviornment variables to configure php ENV PHP_UPLOAD_MAX_FILESIZE 10M ENV PHP_POST_MAX_SIZE 10M # Add volumes for MySQL VOLUME ["/etc/mysql", "/var/lib/mysql" ] EXPOSE 80 3306 CMD ["/run.sh"]
FROM ubuntu:trusty MAINTAINER Werner Maisl <[email protected]> # Install packages ENV DEBIAN_FRONTEND noninteractive RUN apt-get update && \ apt-get -y install supervisor git apache2 libapache2-mod-php5 mysql-server php5-mysql pwgen php-apc php5-mcrypt curl && \ echo "ServerName localhost" >> /etc/apache2/apache2.conf # Add image configuration and scripts ADD start-apache2.sh /start-apache2.sh ADD start-mysqld.sh /start-mysqld.sh ADD run.sh /run.sh RUN chmod 755 /*.sh ADD my.cnf /etc/mysql/conf.d/my.cnf ADD supervisord-apache2.conf /etc/supervisor/conf.d/supervisord-apache2.conf ADD supervisord-mysqld.conf /etc/supervisor/conf.d/supervisord-mysqld. ADD .env /.env # Remove pre-installed database RUN rm -rf /var/lib/mysql/* # Add MySQL utils ADD create_mysql_admin_user.sh /create_mysql_admin_user.sh ADD create_mysql_database.sh /create_mysql_database.sh RUN chmod 755 /*.sh # config to enable .htaccess ADD apache_default /etc/apache2/sites-available/000-default.conf RUN a2enmod rewrite # Configure /app folder with sample app RUN git clone https://github.com/SourceMod-Store/WebPanel-Core.git /app # Download composer RUN curl -sS https://getcomposer.org/installer | php RUN mv composer.phar /usr/local/bin/composer # Link the app to /var/www/html RUN mkdir -p /app && rm -fr /var/www/html && ln -s /app /var/www/html # Link .env to /var/www/html RUN ln -s .env /var/www/html/.env # Compoer install the WebPanel-Core RUN cd /app && composer install #Enviornment variables to configure php ENV PHP_UPLOAD_MAX_FILESIZE 10M ENV PHP_POST_MAX_SIZE 10M # Add volumes for MySQL VOLUME ["/etc/mysql", "/var/lib/mysql" ] EXPOSE 80 3306 CMD ["/run.sh"]
null
2220
1e66b4b34b80cb26ae59106cf32cb12250ccf4f6
Bumped source to 20200523-57dd44e
Bumped source to 20200523-57dd44e
FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20200523-bcffc57 MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
null
null
2211
aeb2f6b956f3600ed748270881cee6bd1d83cc1d
Fix sqlite3 benchmark (#1289)
Fix sqlite3 benchmark (#1289)
# Copyright 2016 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ################################################################################ FROM gcr.io/oss-fuzz-base/base-builder@sha256:1b6a6993690fa947df74ceabbf6a1f89a46d7e4277492addcd45a8525e34be5a RUN apt-get update && apt-get install -y make autoconf automake libtool curl tcl zlib1g-dev RUN mkdir $SRC/sqlite3 && \ cd $SRC/sqlite3 && \ curl 'https://sqlite.org/src/tarball/sqlite.tar.gz?r=c78cbf2e86850cc6' -o sqlite3.tar.gz && \ tar xzf sqlite3.tar.gz --strip-components 1 RUN find $SRC/sqlite3 -name "*.test" | xargs zip $SRC/ossfuzz_seed_corpus.zip WORKDIR sqlite3 COPY build.sh *.dict $SRC/
null
null
372
624c0ce52b90ca9ce61a97185908b605c3f8535b
Bumped source to 20220430-92b305d
Bumped source to 20220430-92b305d
FROM ghcr.io/dock0/arch:20220430-c44361f MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm base-devel vim-minimal tree ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
FROM ghcr.io/dock0/arch:20220430-92b305d MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm base-devel vim-minimal tree ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
null
74
0bec062ec7c124fc378005bffaa94952bf308b3e
Update to v0.5.17
Update to v0.5.17
FROM learninglayers/ror MAINTAINER Jukka Purma <jukka.purma ÄT aalto.fi> # Doing the bundle install with local files so that its result gets cached. # If these are not up to date with the github version of achrails, it spells trouble, # but couldn't get COPY or ADD working with files downloaded from the Dockerfile. WORKDIR /tmp COPY Gemfile Gemfile COPY Gemfile.lock Gemfile.lock RUN bundle install RUN mkdir /achrails RUN curl -SL https://github.com/learning-layers/achrails/archive/v0.5.16.tar.gz \ | tar -zxC /achrails --strip-components=1 RUN echo ls ADD . /achrails COPY database.yml /achrails/config/database.yml WORKDIR /achrails VOLUME /achrails COPY start-achrails.sh start-achrails.sh CMD ["bash", "start-achrails.sh"]
FROM learninglayers/ror MAINTAINER Jukka Purma <jukka.purma ÄT aalto.fi> # Doing the bundle install with local files so that its result gets cached. # If these are not up to date with the github version of achrails, it spells trouble, # but couldn't get COPY or ADD working with files downloaded from the Dockerfile. WORKDIR /tmp COPY Gemfile Gemfile COPY Gemfile.lock Gemfile.lock RUN bundle install RUN mkdir /achrails RUN curl -SL https://github.com/learning-layers/achrails/archive/v0.5.17.tar.gz \ | tar -zxC /achrails --strip-components=1 RUN echo ls ADD . /achrails COPY database.yml /achrails/config/database.yml WORKDIR /achrails VOLUME /achrails COPY start-achrails.sh start-achrails.sh CMD ["bash", "start-achrails.sh"]
null
2096
eb98c66e7534f34af47180359b67b9403efb5562
add install-geschichte script
add install-geschichte script
FROM ubuntu:latest # Update the APT cache RUN apt-get update # Install and setup project dependencies RUN apt-get install -y curl git wget unzip # prepare for Java download RUN apt-get install -y software-properties-common RUN apt-get -y install openjdk-7-jre-headless RUN apt-get install -y mongodb-clients ENV JAVA_HOME /usr/lib/jvm/java-7-openjdk-amd64 # fix wget RUN export HTTP_CLIENT="wget --no-check-certificate -O" # grab leiningen RUN wget https://raw.github.com/technomancy/leiningen/stable/bin/lein -O /usr/local/bin/lein RUN chmod +x /usr/local/bin/lein ENV LEIN_ROOT yes RUN lein # grab geschichte # add scripts ADD ./resources /opt # grab project RUN git clone https://github.com/kordano/ceres-geschichte.git /opt/ceres-geschichte # retrieve dependencies RUN /opt/retrieve-deps CMD ["/opt/start-ceres"]
null
null
143
98b63c912d4f07b6ad9f20e41f2dc6214df8a154
Bumped source to 20200916-9110dd6
Bumped source to 20200916-9110dd6
FROM docker.pkg.github.com/dock0/arch/arch:20200916-e08c9f6 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
FROM docker.pkg.github.com/dock0/arch/arch:20200916-9110dd6 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
null
35
31f8b3a2952edf76d3eb3e2991867309b5ab59ed
Bumped source to 20200309-d3b09fb
Bumped source to 20200309-d3b09fb
FROM docker.pkg.github.com/dock0/ssh/ssh:20200309-1f429df MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm --needed cpio dnsutils htop lockfile-progs lsof mtr net-tools whois zsh neovim RUN usermod --shell /usr/bin/zsh $ADMIN RUN su - $ADMIN -c "git clone git://github.com/akerl/....git /home/$ADMIN/..." RUN su - $ADMIN -c '.../... conf https://raw.githubusercontent.com/akerl/dotfiles/master/.dotdotdot.conf' RUN su - $ADMIN -c '.../... supi'
FROM docker.pkg.github.com/dock0/ssh/ssh:20200309-d3b09fb MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm --needed cpio dnsutils htop lockfile-progs lsof mtr net-tools whois zsh neovim RUN usermod --shell /usr/bin/zsh $ADMIN RUN su - $ADMIN -c "git clone git://github.com/akerl/....git /home/$ADMIN/..." RUN su - $ADMIN -c '.../... conf https://raw.githubusercontent.com/akerl/dotfiles/master/.dotdotdot.conf' RUN su - $ADMIN -c '.../... supi'
null
100
08326236d2772b8cffa54c1080074993ee6166e6
Bumped source to 20201011-9ed8a5c
Bumped source to 20201011-9ed8a5c
FROM docker.pkg.github.com/dock0/service/service:20201011-35fda10 MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm --needed openssh ENV ADMIN akerl ENV KEY_URL https://id-ed25519.pub/groups/default.txt RUN useradd -d /var/lib/ssh -M ssh_key_sync RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh RUN echo "$KEY_URL" > /var/lib/ssh/key_url ADD sshd_config /etc/ssh/sshd_config ADD run /service/sshd/run ADD sync /var/lib/ssh/sync RUN groupadd remote RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN" RUN passwd -d "$ADMIN"
FROM docker.pkg.github.com/dock0/service/service:20201011-9ed8a5c MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm --needed openssh ENV ADMIN akerl ENV KEY_URL https://id-ed25519.pub/groups/default.txt RUN useradd -d /var/lib/ssh -M ssh_key_sync RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh RUN echo "$KEY_URL" > /var/lib/ssh/key_url ADD sshd_config /etc/ssh/sshd_config ADD run /service/sshd/run ADD sync /var/lib/ssh/sync RUN groupadd remote RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN" RUN passwd -d "$ADMIN"
null
317
0daab36ea584572dd313bc56468e14458f7c6be9
Bumped source to 20210817-14c11c7
Bumped source to 20210817-14c11c7
FROM docker.pkg.github.com/dock0/arch/arch:20210817-e52d23a MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm \ strace tcpdump openbsd-netcat socat htop \ nmap dnsutils net-tools iputils openssh \ screen tmux man-db lsof psmisc git tree \ vim-minimal inetutils
FROM docker.pkg.github.com/dock0/arch/arch:20210817-14c11c7 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm \ strace tcpdump openbsd-netcat socat htop \ nmap dnsutils net-tools iputils openssh \ screen tmux man-db lsof psmisc git tree \ vim-minimal inetutils
null
2133
f9066a76dade410c5f9d873b491bc4bdbf734723
Bumped source to 20210406-b04420a
Bumped source to 20210406-b04420a
FROM docker.pkg.github.com/dock0/ssh/ssh:20210406-f4c4501 MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm --needed cpio dnsutils htop lockfile-progs lsof mtr net-tools whois zsh neovim RUN usermod --shell /usr/bin/zsh $ADMIN RUN su - $ADMIN -c "git clone git://github.com/akerl/....git /home/$ADMIN/..." RUN su - $ADMIN -c '.../... conf https://raw.githubusercontent.com/akerl/dotfiles/master/.dotdotdot.conf' RUN su - $ADMIN -c '.../... supi'
null
null
66
aab7d78d3d9fb341a1cab310cce9cfa1a4e76c36
Update Dockerfile
Update Dockerfile
FROM ubuntu:16.04 RUN apt-get update -y && \ apt-get install -y openjdk-8-jre openjdk-8-jdk lib32stdc++6 lib32z1 wget git RUN cd && wget https://dl.google.com/android/android-sdk_r24.4.1-linux.tgz && tar -zxvf android-sdk_r24.4.1-linux.tgz && \ /root/android-sdk-linux/tools/android list sdk -a -e && \ echo y | /root/android-sdk-linux/tools/android update sdk -a -u -t build-tools-24.0.0,android-24,extra-android-support,extra-android-m2repository,extra-google-m2repository,extra-google-google_play_services ENV ANDROID_HOME /root/android-sdk-linux COPY app-build.sh /root/ COPY netrc /root/.netrc CMD ["sh", "/root/app-build.sh"]
FROM ubuntu:16.04 RUN apt-get update -y && \ apt-get install -y openjdk-8-jre openjdk-8-jdk lib32stdc++6 lib32z1 wget git RUN cd && wget https://dl.google.com/android/android-sdk_r24.4.1-linux.tgz && tar -zxvf android-sdk_r24.4.1-linux.tgz && \ /root/android-sdk-linux/tools/android list sdk -a -e && \ echo y | /root/android-sdk-linux/tools/android update sdk -a -u -t build-tools-24.0.0,android-24,extra-android-support,extra-android-m2repository,extra-google-m2repository,extra-google-google_play_services RUN echo y | /root/android-sdk-linux/tools/android update sdk -a -u -t 4 ENV ANDROID_HOME /root/android-sdk-linux COPY app-build.sh /root/ COPY netrc /root/.netrc CMD ["sh", "/root/app-build.sh"]
null
78
73229c1a57f90c98acf63f66312e836ca1ba546e
added missing packages to Dockerfile, bison and flex
added missing packages to Dockerfile, bison and flex
## Use a base ubuntu install FROM ubuntu:14.04 MAINTAINER vgteam ## Download dependencies for vg, pretty standard fare #RUN sed 's/main$/main universe/' -i /etc/apt/sources.list RUN apt-get update && apt-get install -y software-properties-common \ gcc-4.9-base \ g++ \ ncurses-dev \ pkg-config \ build-essential \ libjansson-dev \ automake \ libevent-2.0-5 \ libevent-pthreads-2.0-5 \ libpomp-dev \ libtool \ curl \ unzip \ wget \ libbz2-dev \ gzip \ git \ cmake \ libsnappy-dev \ libgflags-dev \ zlib1g-dev #python-dev \ #protobuf-compiler \ #libprotoc-dev \ #RUN apt-get update ## Set CXXFLAGS and CFLAGS for gcc to use SSE4.1 #ENV CXXFLAGS "-O2 -g march=corei7 -mavx -fopenmp -std=c++11" #ENV CXXFLAGS "$CXXFLAGS -march=corei7 -mavx" ## Download VG and its git dependencies RUN git clone --recursive https://github.com/edawson/vg.git /home/vg RUN cd /home/vg && . ./source_me.sh && make #RUN cd /home/vg; make #RUN cp -r /home/vg/include/* /usr/local/include/ ENV LIBRARY_PATH /home/vg/lib:$LIBRARY_PATH ENV LD_LIBRARY_PATH /home/vg/lib:$LD_LIBRARY_PATH ENV LD_INCLUDE_PATH /home/vg/include:$LD_INCLUDE_PATH ENV C_INCLUDE_PATH /home/vg/include:$C_INCLUDE_PATH ENV CPLUS_INCLUDE_PATH /home/vg/include:$CPLUS_INCLUDE_PATH ENV INCLUDE_PATH /home/vg/include:$INCLUDE_PATH ENV PATH /home/vg/bin:$PATH #RUN cp -r /home/vg/lib/* /usr/local/lib #RUN ln -s "/home/vg/bin/vg" "/usr/bin/vg" #CMD cd /home/vg/ && . ./source_me.sh && vg #ENTRYPOINT vg
## Use a base ubuntu install FROM ubuntu:14.04 MAINTAINER vgteam ## Download dependencies for vg, pretty standard fare #RUN sed 's/main$/main universe/' -i /etc/apt/sources.list RUN apt-get update && apt-get install -y software-properties-common \ gcc-4.9-base \ g++ \ ncurses-dev \ pkg-config \ build-essential \ libjansson-dev \ automake \ libevent-2.0-5 \ libevent-pthreads-2.0-5 \ libpomp-dev \ libtool \ curl \ unzip \ wget \ libbz2-dev \ gzip \ git \ cmake \ libsnappy-dev \ libgflags-dev \ zlib1g-dev \ bison \ flex #python-dev \ #protobuf-compiler \ #libprotoc-dev \ #RUN apt-get update ## Set CXXFLAGS and CFLAGS for gcc to use SSE4.1 #ENV CXXFLAGS "-O2 -g march=corei7 -mavx -fopenmp -std=c++11" #ENV CXXFLAGS "$CXXFLAGS -march=corei7 -mavx" ## Download VG and its git dependencies RUN git clone --recursive https://github.com/edawson/vg.git /home/vg RUN cd /home/vg && . ./source_me.sh && make #RUN cd /home/vg; make #RUN cp -r /home/vg/include/* /usr/local/include/ ENV LIBRARY_PATH /home/vg/lib:$LIBRARY_PATH ENV LD_LIBRARY_PATH /home/vg/lib:$LD_LIBRARY_PATH ENV LD_INCLUDE_PATH /home/vg/include:$LD_INCLUDE_PATH ENV C_INCLUDE_PATH /home/vg/include:$C_INCLUDE_PATH ENV CPLUS_INCLUDE_PATH /home/vg/include:$CPLUS_INCLUDE_PATH ENV INCLUDE_PATH /home/vg/include:$INCLUDE_PATH ENV PATH /home/vg/bin:$PATH #RUN cp -r /home/vg/lib/* /usr/local/lib #RUN ln -s "/home/vg/bin/vg" "/usr/bin/vg" #CMD cd /home/vg/ && . ./source_me.sh && vg #ENTRYPOINT vg
null
192
a81427bd440186278b2faf5ff6786f2ace99ab3f
Bumped source to 20210806-700d370
Bumped source to 20210806-700d370
FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20210806-757af97 MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20210806-700d370 MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
null
2110
45f1cb3f7c0099d7d952ad22cba2cb0146c66636
Added a symlink from python3 to python, and added PATH to include iquery
Added a symlink from python3 to python, and added PATH to include iquery
FROM ubuntu:latest MAINTAINER Cerbo IO <[email protected]> ENV DEBIAN_FRONTEND noninteractive ENV PATH=$PATH:/usr/local/scidb/bin RUN apt-get update ; \ apt-get -y install python3 python3-pip libopenjpeg-dev python3-grib python3-netcdf4 openssh-server wget screen vim-nox ; \ ln -s /usr/local/bin/python3 /usr/local/bin/python ; \ pip3 install --upgrade pip ;\ pip3 install scidb-py ; \ sed -i 's/PermitRootLogin prohibit-password/PermitRootLogin yes/g' /etc/ssh/sshd_config ; \ echo "root:scidb" | chpasswd ; \ mkdir -p /usr/local/scidb/bin /usr/local/scidb/lib ; \ mkdir -p /opt/scidb/15.12/3rdparty/cityhash/lib/ COPY iquery /usr/local/scidb/bin/ COPY usr-local-scidb-lib/* /usr/local/scidb/lib/ COPY lib-x86_64-linux-gnu/* /lib/x86_64-linux-gnu/ COPY libcityhash.so.0 /opt/scidb/15.12/3rdparty/cityhash/lib/ COPY start-ssh / EXPOSE 22 CMD ["/bin/bash"]
null
null
380
a0e71692f0aedcff1ad2f47538c407cf22e19218
Dockerfile version bump
Dockerfile version bump
FROM alpine MAINTAINER David Personette <[email protected]> # Install emby RUN export LANG=C.UTF-8 && \ ff_url='http://johnvansickle.com/ffmpeg/releases' && \ glib_url='https://github.com/sgerrand/alpine-pkg-glibc/releases/download'&&\ glib_version=2.31-r0 && \ glibc_base=glibc-${glib_version}.apk && \ glibc_bin=glibc-bin-${glib_version}.apk && \ glibc_i18n=glibc-i18n-${glib_version}.apk && \ monourl='https://archive.archlinux.org/packages/m/mono' && \ mono_version=6.4.0.198-2 && \ key=/etc/apk/keys/sgerrand.rsa.pub && \ url='https://github.com/MediaBrowser/Emby.Releases/releases/download' && \ version=4.4.2.0 && \ apk --no-cache --no-progress upgrade && \ apk --no-cache --no-progress add bash curl shadow sqlite-libs tini tzdata \ zstd &&\ curl -LSs https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub -o $key && \ curl -LOSs $glib_url/$glib_version/$glibc_base && \ curl -LOSs $glib_url/$glib_version/$glibc_bin && \ curl -LOSs $glib_url/$glib_version/$glibc_i18n && \ apk --no-cache --no-progress add $glibc_base $glibc_bin $glibc_i18n && \ { /usr/glibc-compat/bin/localedef -c -iPOSIX -fUTF-8 $LANG || :; } && \ ln -s libsqlite3.so.0 /usr/lib/libsqlite3.so && \ curl -LSs $monourl/mono-${mono_version}-x86_64.pkg.tar.zst \ -o mono.tar.zst && \ zstdcat mono.tar.zst | tar xf - && \ addgroup -S emby && \ adduser -S -D -H -h /usr/lib/emby-server -s /sbin/nologin -G emby \ -g 'Emby User' emby && \ echo "Downloading version: $version" && \ curl -LSs $url/$version/embyserver-netframework_$version.zip -o emby.zip &&\ curl -LSs "$ff_url/ffmpeg-release-amd64-static.tar.xz" -o ffmpeg.txz && \ { tar --strip-components=1 -C /bin -xf ffmpeg.txz "*/ffmpeg" 2>&-||:; } && \ { tar --strip-components=1 -C /bin -xf ffmpeg.txz "*/ffprobe" 2>&-||:; } &&\ mkdir -p /config /media /usr/lib/emby-server && \ unzip emby.zip -d /usr/lib/emby-server && \ cert-sync /etc/ssl/certs/ca-certificates.crt && \ chown -Rh root. /bin/ff* /usr/lib/emby-server && \ chown -Rh emby. /config /media && \ apk del glibc-i18n zstd && \ rm -rf /tmp/* /var/cache/* emby.zip ffmpeg.txz glibc* $key mono.tar.zst COPY emby.sh /usr/bin/ EXPOSE 8096 8920 7359/udp 1900/udp HEALTHCHECK --interval=60s --timeout=15s --start-period=90s \ CMD curl -L http://localhost:8096/ VOLUME ["/config", "/media"] ENTRYPOINT ["/sbin/tini", "--", "/usr/bin/emby.sh"]
FROM alpine MAINTAINER David Personette <[email protected]> # Install emby RUN export LANG=C.UTF-8 && \ ff_url='http://johnvansickle.com/ffmpeg/releases' && \ glib_url='https://github.com/sgerrand/alpine-pkg-glibc/releases/download'&&\ glib_version=2.31-r0 && \ glibc_base=glibc-${glib_version}.apk && \ glibc_bin=glibc-bin-${glib_version}.apk && \ glibc_i18n=glibc-i18n-${glib_version}.apk && \ monourl='https://archive.archlinux.org/packages/m/mono' && \ mono_version=6.4.0.198-2 && \ key=/etc/apk/keys/sgerrand.rsa.pub && \ url='https://github.com/MediaBrowser/Emby.Releases/releases/download' && \ version=4.4.3.0 && \ apk --no-cache --no-progress upgrade && \ apk --no-cache --no-progress add bash curl shadow sqlite-libs tini tzdata \ zstd &&\ curl -LSs https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub -o $key && \ curl -LOSs $glib_url/$glib_version/$glibc_base && \ curl -LOSs $glib_url/$glib_version/$glibc_bin && \ curl -LOSs $glib_url/$glib_version/$glibc_i18n && \ apk --no-cache --no-progress add $glibc_base $glibc_bin $glibc_i18n && \ { /usr/glibc-compat/bin/localedef -c -iPOSIX -fUTF-8 $LANG || :; } && \ ln -s libsqlite3.so.0 /usr/lib/libsqlite3.so && \ curl -LSs $monourl/mono-${mono_version}-x86_64.pkg.tar.zst \ -o mono.tar.zst && \ zstdcat mono.tar.zst | tar xf - && \ addgroup -S emby && \ adduser -S -D -H -h /usr/lib/emby-server -s /sbin/nologin -G emby \ -g 'Emby User' emby && \ echo "Downloading version: $version" && \ curl -LSs $url/$version/embyserver-netframework_$version.zip -o emby.zip &&\ curl -LSs "$ff_url/ffmpeg-release-amd64-static.tar.xz" -o ffmpeg.txz && \ { tar --strip-components=1 -C /bin -xf ffmpeg.txz "*/ffmpeg" 2>&-||:; } && \ { tar --strip-components=1 -C /bin -xf ffmpeg.txz "*/ffprobe" 2>&-||:; } &&\ mkdir -p /config /media /usr/lib/emby-server && \ unzip emby.zip -d /usr/lib/emby-server && \ cert-sync /etc/ssl/certs/ca-certificates.crt && \ chown -Rh root. /bin/ff* /usr/lib/emby-server && \ chown -Rh emby. /config /media && \ apk del glibc-i18n zstd && \ rm -rf /tmp/* /var/cache/* emby.zip ffmpeg.txz glibc* $key mono.tar.zst COPY emby.sh /usr/bin/ EXPOSE 8096 8920 7359/udp 1900/udp HEALTHCHECK --interval=60s --timeout=15s --start-period=90s \ CMD curl -L http://localhost:8096/ VOLUME ["/config", "/media"] ENTRYPOINT ["/sbin/tini", "--", "/usr/bin/emby.sh"]
null
3
0f7a86e1e0209c90dd96d3375d3a8e6183be2336
really fix dockerfile this time
really fix dockerfile this time
FROM alpine:3.1 RUN mkdir /etc/gremlinproxy RUN mkdir /var/log/gremlinproxy ADD example-config.json /etc/gremlinproxy/ # Define mountable directories. VOLUME ["/etc/gremlinproxy", "/var/log/gremlinproxy"] # executable only ADD gremlinproxy /usr/bin/ # Define working directory. WORKDIR /etc/gremlinproxy # Define default cmd CMD ["gremlinproxy", "-c", "/etc/gremlinproxy/example-config.json"] # Expose control port. EXPOSE 9876 ## IMPORTANT: expose all proxy ports that you want gremlinproxy to listen on for your application services (from the proxy block in config file) EXPOSE 7777
FROM alpine:3.1 ADD example-config.json /opt/gremlinproxy/ ADD gremlinproxy /opt/gremlinproxy/ CMD ["/opt/gremlinproxy/gremlinproxy", "-c", "/opt/gremlinproxy/example-config.json"] # Expose control port. EXPOSE 9876 ## IMPORTANT: expose all proxy ports that you want gremlinproxy to listen on for your application services (from the proxy block in config file) EXPOSE 7777
null
205
0b9afe6e4ad94dd2b70421742dc8cccfc764853a
Update Dockerfile. Part 3.
Update Dockerfile. Part 3.
FROM centos:7 MAINTAINER Igor Zubkov <[email protected]> RUN yum upgrade -y RUN yum install git gcc make bzip2 openssl-devel readline-devel zlib-devel -y RUN git clone https://github.com/rbenv/rbenv.git /root/.rbenv RUN git clone https://github.com/sstephenson/ruby-build.git /root/.rbenv/plugins/ruby-build ENV PATH /root/.rbenv/bin:$PATH RUN cd /root/.rbenv && src/configure && make -C src RUN rbenv install -v 2.4.1 RUN rbenv global 2.4.1 # RUN set -ex && echo 'export PATH="/root/.rbenv/bin:$PATH"' >> /root/.bash_profile # RUN set -ex && echo 'eval "$(rbenv init -)"' >> /root/.bash_profile # RUN set -ex && echo 'eval "$(rbenv init -)"' >> /root/.profile # RUN set -ex && echo 'eval "$(rbenv init -)"' >> /etc/profile # RUN echo 'eval "$(rbenv init -)"' >> /etc/profile.d/rbenv.sh # RUN eval "$(rbenv init -)" # RUN which gem # RUN gem update --system # ENV BUNDLER_VERSION 1.15.0.pre.2 # RUN gem install bundler --version "$BUNDLER_VERSION" # RUN gem i bundler -v 1.15.0.pre.2 # RUN mkdir -p /srv/evemonk # RUN git clone https://github.com/biow0lf/evemonk.git /srv/evemonk # ENV RAILS_ENV production # RUN type rbenv # RUN ruby -v # RUN gem -v # RUN bundle -v # RUN bundle install --without development test CMD ["/bin/bash"]
FROM centos:7 MAINTAINER Igor Zubkov <[email protected]> RUN yum upgrade -y RUN yum install git gcc make bzip2 openssl-devel readline-devel zlib-devel -y RUN git clone https://github.com/rbenv/rbenv.git /root/.rbenv RUN git clone https://github.com/sstephenson/ruby-build.git /root/.rbenv/plugins/ruby-build ENV PATH /root/.rbenv/bin:/root/.rbenv/shims:$PATH RUN cd /root/.rbenv && src/configure && make -C src RUN rbenv install -v 2.4.1 RUN rbenv global 2.4.1 RUN set -ex && echo 'eval "$(rbenv init -)"' >> /root/.bash_profile RUN gem update --system ENV BUNDLER_VERSION 1.15.0.pre.2 RUN gem install bundler --version "$BUNDLER_VERSION" RUN mkdir -p /srv/evemonk RUN git clone https://github.com/biow0lf/evemonk.git /srv/evemonk # ENV RAILS_ENV production # RUN bundle install --without development test CMD ["/bin/bash"]
null
212
f4c0908c66452f92a7741f7389d851f7526435bc
build(deps): bump golang from 1.16.3 to 1.16.4 (#495)
build(deps): bump golang from 1.16.3 to 1.16.4 (#495)
# Copyright 2019 Francisco Souza. All rights reserved. # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. FROM golang:1.16.3 AS builder WORKDIR /code ADD go.mod go.sum ./ RUN go mod download ADD . ./ ENV CGO_ENABLED=0 RUN go build -o fake-gcs-server FROM alpine:3.13.5 COPY --from=builder /code/fake-gcs-server /bin/fake-gcs-server RUN /bin/fake-gcs-server -h EXPOSE 4443 ENTRYPOINT ["/bin/fake-gcs-server", "-data", "/data"]
# Copyright 2019 Francisco Souza. All rights reserved. # Use of this source code is governed by a BSD-style # license that can be found in the LICENSE file. FROM golang:1.16.4 AS builder WORKDIR /code ADD go.mod go.sum ./ RUN go mod download ADD . ./ ENV CGO_ENABLED=0 RUN go build -o fake-gcs-server FROM alpine:3.13.5 COPY --from=builder /code/fake-gcs-server /bin/fake-gcs-server RUN /bin/fake-gcs-server -h EXPOSE 4443 ENTRYPOINT ["/bin/fake-gcs-server", "-data", "/data"]
null
142
f6f4be79803a5438e670b437674e3a22253db660
Bumped source to 20201215-ac1d624
Bumped source to 20201215-ac1d624
FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20201215-9d661ab MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20201215-ac1d624 MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
null
50
7c6505b899d7baf5b19ae4c26c55ee392eeff4b0
Bumped source to 20200506-6192e79
Bumped source to 20200506-6192e79
FROM docker.pkg.github.com/dock0/ssh/ssh:20200505-4727542 MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm --needed cpio dnsutils htop lockfile-progs lsof mtr net-tools whois zsh neovim RUN usermod --shell /usr/bin/zsh $ADMIN RUN su - $ADMIN -c "git clone git://github.com/akerl/....git /home/$ADMIN/..." RUN su - $ADMIN -c '.../... conf https://raw.githubusercontent.com/akerl/dotfiles/master/.dotdotdot.conf' RUN su - $ADMIN -c '.../... supi'
FROM docker.pkg.github.com/dock0/ssh/ssh:20200506-6192e79 MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm --needed cpio dnsutils htop lockfile-progs lsof mtr net-tools whois zsh neovim RUN usermod --shell /usr/bin/zsh $ADMIN RUN su - $ADMIN -c "git clone git://github.com/akerl/....git /home/$ADMIN/..." RUN su - $ADMIN -c '.../... conf https://raw.githubusercontent.com/akerl/dotfiles/master/.dotdotdot.conf' RUN su - $ADMIN -c '.../... supi'
null
2107
e85771180a754547114683f6ef989947de63711c
accidentially added bitbucket
accidentially added bitbucket
FROM debian:jessie MAINTAINER Shane Starcher <[email protected]> RUN apt-get update && apt-get install -y wget ca-certificates && apt-get -y clean RUN wget -q http://repos.sensuapp.org/apt/pubkey.gpg -O- | apt-key add - RUN echo "deb http://repos.sensuapp.org/apt sensu main" > /etc/apt/sources.list.d/sensu.list RUN \ apt-get update && \ apt-get install -y sensu && \ apt-get -y clean ENV PATH /opt/sensu/embedded/bin:$PATH #Nokogiri is needed by aws plugins RUN \ apt-get update && \ apt-get install -y libxml2 libxml2-dev libxslt1-dev zlib1g-dev build-essential && \ gem install nokogiri && \ apt-get remove -y libxml2-dev libxslt1-dev zlib1g-dev && \ apt-get autoremove -y && \ apt-get -y clean RUN wget https://github.com/jwilder/dockerize/releases/download/v0.0.2/dockerize-linux-amd64-v0.0.2.tar.gz RUN tar -C /usr/local/bin -xzvf dockerize-linux-amd64-v0.0.2.tar.gz ENV DEFAULT_PLUGINS_REPO sensu-plugins ADD templates /etc/sensu/templates ADD bin /bin/ #Plugins needed for handlers RUN /bin/install hipchat mailer pagerduty #Plugins needed for checks and maybe handlers RUN /bin/install docker aws http graphite ftp consul etcd bitbucket redis elasticsearch EXPOSE 4567 VOLUME ["/etc/sensu/conf.d"] #Client Config ENV CLIENT_SUBSCRIPTIONS all,default #Common Config ENV RUNTIME_INSTALL '' ENV LOG_LEVEL warn ENV EMBEDDED_RUBY true ENV CONFIG_FILE /etc/sensu/config.json ENV CONFIG_DIR /etc/sensu/conf.d ENV EXTENSION_DIR /etc/sensu/extensions ENV PLUGINS_DIR /etc/sensu/plugins ENV HANDLERS_DIR /etc/sensu/handlers ENTRYPOINT ["/bin/start"]
null
null
2223
80c6ef2596786c6ee7fc3a7f0efdec0f55278a16
Bumped source to 20210826-418f7fd
Bumped source to 20210826-418f7fd
FROM docker.pkg.github.com/dock0/arch/arch:20210826-d6c3c5f MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
null
null
2286
73da7e633cf1033a4444e9d200fd57c1522eccba
Bumped source to 20200712-af6faf9
Bumped source to 20200712-af6faf9
FROM docker.pkg.github.com/dock0/ssh/ssh:20200712-23d091a MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm --needed cpio dnsutils htop lockfile-progs lsof mtr net-tools whois zsh neovim RUN usermod --shell /usr/bin/zsh $ADMIN RUN su - $ADMIN -c "git clone git://github.com/akerl/....git /home/$ADMIN/..." RUN su - $ADMIN -c '.../... conf https://raw.githubusercontent.com/akerl/dotfiles/master/.dotdotdot.conf' RUN su - $ADMIN -c '.../... supi'
null
null
53
36d43d0249d907c6ec8a6f4a494c771a8b9dfeab
updated docker file
updated docker file
# nodezoo-npm FROM node:4 ADD . / EXPOSE 44003 EXPOSE 43003 CMD ["node","srv/npm-dev.js","--seneca.options.tag=npm","--seneca.log.all"] # build and run: # $ docker build -t nodezoo-npm-04 . # $ docker run -d -p 44003:44003 -p 43003:43003 -e HOST=$(docker-machine ip default) -e REDIS=192.168.99.1 -e BEANSTALK=192.168.99.1 -e STATS=192.168.99.1 --volumes-from nodezoo-level nodezoo-npm-04 # local docker ip: # $ docker-machine ip default
# nodezoo-npm FROM node:4 RUN mkdir /src ADD package.json /src/ WORKDIR /src RUN npm install COPY . /src CMD ["node", "-r", "toolbag", "srv/npm-dev.js", "--seneca.options.tag=nodezoo-npm", "--seneca-log=type:act"]
null
2128
4abbf3d4f68a0f617182365e002d324be18c0bdd
Bumped source to 20210120-a4273cc
Bumped source to 20210120-a4273cc
FROM docker.pkg.github.com/dock0/service/service:20210120-66257d1 MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm --needed openssh ENV ADMIN akerl ENV KEY_URL https://id-ed25519.pub/groups/default.txt RUN useradd -d /var/lib/ssh -M ssh_key_sync RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh RUN echo "$KEY_URL" > /var/lib/ssh/key_url ADD sshd_config /etc/ssh/sshd_config ADD run /service/sshd/run ADD sync /var/lib/ssh/sync RUN groupadd remote RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN" RUN passwd -d "$ADMIN"
null
null
368
5619f4daf6eccd888167ed2f6167cc5a7f8b7fd9
Bumped source to 20210828-6fc00c0
Bumped source to 20210828-6fc00c0
FROM docker.pkg.github.com/dock0/arch/arch:20210828-6cf161c MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm \ strace tcpdump openbsd-netcat socat htop \ nmap dnsutils net-tools iputils openssh \ screen tmux man-db lsof psmisc git tree \ vim-minimal inetutils
FROM docker.pkg.github.com/dock0/arch/arch:20210828-6fc00c0 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm \ strace tcpdump openbsd-netcat socat htop \ nmap dnsutils net-tools iputils openssh \ screen tmux man-db lsof psmisc git tree \ vim-minimal inetutils
null
2161
54b998bb27b573b1b622a7ce858c2f5e29391cd8
Update Dockerfile
Update Dockerfile
#==================================================================================== FROM continuumio/miniconda3 #==================================================================================== RUN conda create -n env python=3.7 RUN echo "source activate env" > ~/.bashrc ENV PATH /opt/conda/envs/env/bin:$PATH #==================================================================================== LABEL maintainer="[email protected]" LABEL description="This image aims to provide a clean docker base to run pyferret and ferretmagic jupyter ipython extension." LABEL ref1="http://ferret.pmel.noaa.gov/Ferret/" LABEL ref2="https://github.com/NOAA-PMEL/PyFerret" #==================================================================================== ENV NB_USER agentk ENV NB_UID 1000 ENV HOME /home/${NB_USER} RUN adduser --disabled-password \ --gecos "Default user" \ --uid ${NB_UID} \ ${NB_USER} #==================================================================================== USER root RUN conda create -n FERRET -c conda-forge pyferret ferret_datasets --yes #RUN echo "source activate FERRET" > ~/.bashrc RUN /bin/bash -c "source activate FERRET" RUN conda install -c r rpy2 RUN pip install --no-cache-dir notebook==6.* RUN pip install numpy pandas bokeh RUN pip install randomcolor RUN pip install ferretmagic RUN pip install ipywidgets RUN jupyter nbextension enable --py widgetsnbextension --sys-prefix #==================================================================================== # fast installation USER root WORKDIR /opt RUN git clone https://github.com/PBrockmann/fast ENV FER_DATA=". ${FER_DATA} /opt/fast" ENV FER_GO=". ${FER_GO} /opt/fast" ENV FER_PALETTE=". /${FER_PALETTE} /opt/fast" ENV PATH="${FER_DIR}/bin:/opt/fast:${PATH}" #==================================================================================== # Make sure the contents of our repo are in ${HOME} COPY . ${HOME} USER root RUN chown -R ${NB_UID} ${HOME} USER ${NB_USER} WORKDIR ${HOME}
null
null
251
a944d37c8096a80471de77f116ad9dcc72770db6
Bumped source to 20201221-9262366
Bumped source to 20201221-9262366
FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20201220-2813520 MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20201221-9262366 MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
null
386
58fbc98da512270bb6ae7eb956e0973aa60f35ab
Updated Atlassian JIRA Software master branch to latest version 8.19.0
Updated Atlassian JIRA Software master branch to latest version 8.19.0
FROM openjdk:8-alpine # Configuration variables. ENV JIRA_HOME /var/atlassian/jira ENV JIRA_INSTALL /opt/atlassian/jira ENV JIRA_VERSION 8.18.2 # Install Atlassian JIRA and helper tools and setup initial home # directory structure. RUN set -x \ && apk add --no-cache curl xmlstarlet bash ttf-dejavu libc6-compat \ && mkdir -p "${JIRA_HOME}" \ && mkdir -p "${JIRA_HOME}/caches/indexes" \ && chmod -R 700 "${JIRA_HOME}" \ && chown -R daemon:daemon "${JIRA_HOME}" \ && mkdir -p "${JIRA_INSTALL}/conf/Catalina" \ && curl -Ls "https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-8.16.1.tar.gz" | tar -xz --directory "${JIRA_INSTALL}" --strip-components=1 --no-same-owner \ && curl -Ls "https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.38.tar.gz" | tar -xz --directory "${JIRA_INSTALL}/lib" --strip-components=1 --no-same-owner "mysql-connector-java-5.1.38/mysql-connector-java-5.1.38-bin.jar" \ && rm -f "${JIRA_INSTALL}/lib/postgresql-9.1-903.jdbc4-atlassian-hosted.jar" \ && curl -Ls "https://jdbc.postgresql.org/download/postgresql-42.2.1.jar" -o "${JIRA_INSTALL}/lib/postgresql-42.2.1.jar" \ && chmod -R 700 "${JIRA_INSTALL}/conf" \ && chmod -R 700 "${JIRA_INSTALL}/logs" \ && chmod -R 700 "${JIRA_INSTALL}/temp" \ && chmod -R 700 "${JIRA_INSTALL}/work" \ && chown -R daemon:daemon "${JIRA_INSTALL}/conf" \ && chown -R daemon:daemon "${JIRA_INSTALL}/logs" \ && chown -R daemon:daemon "${JIRA_INSTALL}/temp" \ && chown -R daemon:daemon "${JIRA_INSTALL}/work" \ && sed --in-place "s/java version/openjdk version/g" "${JIRA_INSTALL}/bin/check-java.sh" \ && echo -e "\njira.home=$JIRA_HOME" >> "${JIRA_INSTALL}/atlassian-jira/WEB-INF/classes/jira-application.properties" \ && touch -d "@0" "${JIRA_INSTALL}/conf/server.xml" # Use the default unprivileged account. This could be considered bad practice # on systems where multiple processes end up being executed by 'daemon' but # here we only ever run one process anyway. USER daemon:daemon # Expose default HTTP connector port. EXPOSE 8080 # Set volume mount points for installation and home directory. Changes to the # home directory needs to be persisted as well as parts of the installation # directory due to eg. logs. VOLUME ["/var/atlassian/jira", "/opt/atlassian/jira/logs"] # Set the default working directory as the installation directory. WORKDIR /var/atlassian/jira COPY "docker-entrypoint.sh" "/" ENTRYPOINT ["/docker-entrypoint.sh"] # Run Atlassian JIRA as a foreground process by default. CMD ["/opt/atlassian/jira/bin/start-jira.sh", "-fg"]
FROM openjdk:8-alpine # Configuration variables. ENV JIRA_HOME /var/atlassian/jira ENV JIRA_INSTALL /opt/atlassian/jira ENV JIRA_VERSION 8.19.0 # Install Atlassian JIRA and helper tools and setup initial home # directory structure. RUN set -x \ && apk add --no-cache curl xmlstarlet bash ttf-dejavu libc6-compat \ && mkdir -p "${JIRA_HOME}" \ && mkdir -p "${JIRA_HOME}/caches/indexes" \ && chmod -R 700 "${JIRA_HOME}" \ && chown -R daemon:daemon "${JIRA_HOME}" \ && mkdir -p "${JIRA_INSTALL}/conf/Catalina" \ && curl -Ls "https://www.atlassian.com/software/jira/downloads/binary/atlassian-jira-software-8.16.1.tar.gz" | tar -xz --directory "${JIRA_INSTALL}" --strip-components=1 --no-same-owner \ && curl -Ls "https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.38.tar.gz" | tar -xz --directory "${JIRA_INSTALL}/lib" --strip-components=1 --no-same-owner "mysql-connector-java-5.1.38/mysql-connector-java-5.1.38-bin.jar" \ && rm -f "${JIRA_INSTALL}/lib/postgresql-9.1-903.jdbc4-atlassian-hosted.jar" \ && curl -Ls "https://jdbc.postgresql.org/download/postgresql-42.2.1.jar" -o "${JIRA_INSTALL}/lib/postgresql-42.2.1.jar" \ && chmod -R 700 "${JIRA_INSTALL}/conf" \ && chmod -R 700 "${JIRA_INSTALL}/logs" \ && chmod -R 700 "${JIRA_INSTALL}/temp" \ && chmod -R 700 "${JIRA_INSTALL}/work" \ && chown -R daemon:daemon "${JIRA_INSTALL}/conf" \ && chown -R daemon:daemon "${JIRA_INSTALL}/logs" \ && chown -R daemon:daemon "${JIRA_INSTALL}/temp" \ && chown -R daemon:daemon "${JIRA_INSTALL}/work" \ && sed --in-place "s/java version/openjdk version/g" "${JIRA_INSTALL}/bin/check-java.sh" \ && echo -e "\njira.home=$JIRA_HOME" >> "${JIRA_INSTALL}/atlassian-jira/WEB-INF/classes/jira-application.properties" \ && touch -d "@0" "${JIRA_INSTALL}/conf/server.xml" # Use the default unprivileged account. This could be considered bad practice # on systems where multiple processes end up being executed by 'daemon' but # here we only ever run one process anyway. USER daemon:daemon # Expose default HTTP connector port. EXPOSE 8080 # Set volume mount points for installation and home directory. Changes to the # home directory needs to be persisted as well as parts of the installation # directory due to eg. logs. VOLUME ["/var/atlassian/jira", "/opt/atlassian/jira/logs"] # Set the default working directory as the installation directory. WORKDIR /var/atlassian/jira COPY "docker-entrypoint.sh" "/" ENTRYPOINT ["/docker-entrypoint.sh"] # Run Atlassian JIRA as a foreground process by default. CMD ["/opt/atlassian/jira/bin/start-jira.sh", "-fg"]
null
369
50ebf3fbf4eb10038b9b6e0d9521ce8e310d8843
Bumped source to 20200919-ecd47cf
Bumped source to 20200919-ecd47cf
FROM docker.pkg.github.com/dock0/arch/arch:20200919-49ac157 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm \ strace tcpdump openbsd-netcat socat htop \ nmap dnsutils net-tools iputils openssh \ screen tmux man-db lsof psmisc git tree \ vim-minimal inetutils
FROM docker.pkg.github.com/dock0/arch/arch:20200919-ecd47cf MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm \ strace tcpdump openbsd-netcat socat htop \ nmap dnsutils net-tools iputils openssh \ screen tmux man-db lsof psmisc git tree \ vim-minimal inetutils
null
304
f2b21769f8ec4cbda3862f7cdecd16845b3c7d5b
build(deps): bump cloudposse/packages from 0.34.0 to 0.42.0 (#310)
build(deps): bump cloudposse/packages from 0.34.0 to 0.42.0 (#310) Bumps cloudposse/packages from 0.34.0 to 0.42.0. Signed-off-by: dependabot[bot] <[email protected]>
# # Python Dependencies # FROM alpine:3.8 as python RUN sed -i 's|http://dl-cdn.alpinelinux.org|https://alpine.global.ssl.fastly.net|g' /etc/apk/repositories RUN apk add python python-dev libffi-dev gcc py-pip py-virtualenv linux-headers musl-dev openssl-dev make COPY requirements.txt /requirements.txt RUN pip install -r /requirements.txt --install-option="--prefix=/dist" --no-build-isolation # # Google Cloud SDK # FROM google/cloud-sdk:223.0.0-alpine as google-cloud-sdk # # Cloud Posse Package Distribution # FROM cloudposse/packages:0.34.0 as packages WORKDIR /packages # # Install the select packages from the cloudposse package manager image # # Repo: <https://github.com/cloudposse/packages> # ARG PACKAGES="cfssl cfssljson" ENV PACKAGES=${PACKAGES} RUN make dist # # Geodesic base image # FROM alpine:3.8 ENV BANNER "geodesic" # Where to store state ENV CACHE_PATH=/localhost/.geodesic ENV GEODESIC_PATH=/usr/local/include/toolbox ENV MOTD_URL=http://geodesic.sh/motd ENV HOME=/conf ENV KOPS_CLUSTER_NAME=example.foo.bar # Install all packages as root USER root # Install the cloudposse alpine repository ADD https://apk.cloudposse.com/[email protected] /etc/apk/keys/ RUN echo "@cloudposse https://apk.cloudposse.com/3.8/vendor" >> /etc/apk/repositories # Use TLS for alpine default repos RUN sed -i 's|http://dl-cdn.alpinelinux.org|https://alpine.global.ssl.fastly.net|g' /etc/apk/repositories && \ echo "@testing https://alpine.global.ssl.fastly.net/alpine/edge/testing" >> /etc/apk/repositories && \ echo "@community https://alpine.global.ssl.fastly.net/alpine/edge/community" >> /etc/apk/repositories && \ apk update # Install alpine package manifest COPY packages.txt /etc/apk/ RUN apk add $(grep -v '^#' /etc/apk/packages.txt) && \ mkdir -p /etc/bash_completion.d/ /etc/profile.d/ /conf && \ touch /conf/.gitconfig RUN echo "net.ipv6.conf.all.disable_ipv6=0" > /etc/sysctl.d/00-ipv6.conf # Disable vim from reading a swapfile (incompatible with goofys) RUN echo 'set noswapfile' >> /etc/vim/vimrc WORKDIR /tmp # Copy python dependencies COPY --from=python /dist/ /usr/ # Copy installer over to make package upgrades easy COPY --from=packages /packages/install/ /packages/install/ # Copy select binary packages COPY --from=packages /dist/ /usr/local/bin/ # # Install Google Cloud SDK # ENV CLOUDSDK_CONFIG=/localhost/.config/gcloud/ COPY --from=google-cloud-sdk /google-cloud-sdk/ /usr/local/google-cloud-sdk/ RUN ln -s /usr/local/google-cloud-sdk/completion.bash.inc /etc/bash_completion.d/gcloud.sh && \ ln -s /usr/local/google-cloud-sdk/bin/gcloud /usr/local/bin/ && \ ln -s /usr/local/google-cloud-sdk/bin/gsutil /usr/local/bin/ && \ ln -s /usr/local/google-cloud-sdk/bin/bq /usr/local/bin/ && \ gcloud config set core/disable_usage_reporting true --installation && \ gcloud config set component_manager/disable_update_check true --installation && \ gcloud config set metrics/environment github_docker_image --installation # # Install aws-vault to easily assume roles (not related to HashiCorp Vault) # ENV AWS_VAULT_BACKEND file ENV AWS_VAULT_ASSUME_ROLE_TTL=1h #ENV AWS_VAULT_FILE_PASSPHRASE= # # Install kubectl # ENV KUBERNETES_VERSION 1.10.11 ENV KUBECONFIG=${SECRETS_PATH}/kubernetes/kubeconfig RUN kubectl completion bash > /etc/bash_completion.d/kubectl.sh # # Install kops # ENV KOPS_STATE_STORE s3://undefined ENV KOPS_STATE_STORE_REGION us-east-1 ENV KOPS_FEATURE_FLAGS=+DrainAndValidateRollingUpdate ENV KOPS_MANIFEST=/conf/kops/manifest.yaml ENV KOPS_TEMPLATE=/templates/kops/default.yaml # https://github.com/kubernetes/kops/blob/master/channels/stable # https://github.com/kubernetes/kops/blob/master/docs/images.md ENV KOPS_BASE_IMAGE=kope.io/k8s-1.10-debian-jessie-amd64-hvm-ebs-2018-08-17 ENV KOPS_BASTION_PUBLIC_NAME="bastion" ENV KOPS_PRIVATE_SUBNETS="172.20.32.0/19,172.20.64.0/19,172.20.96.0/19,172.20.128.0/19" ENV KOPS_UTILITY_SUBNETS="172.20.0.0/22,172.20.4.0/22,172.20.8.0/22,172.20.12.0/22" ENV KOPS_AVAILABILITY_ZONES="us-west-2a,us-west-2b,us-west-2c" ENV KUBECONFIG=/dev/shm/kubecfg RUN /usr/bin/kops completion bash > /etc/bash_completion.d/kops.sh # Instance sizes ENV BASTION_MACHINE_TYPE "t2.medium" ENV MASTER_MACHINE_TYPE "t2.medium" ENV NODE_MACHINE_TYPE "t2.medium" # Min/Max number of nodes (aka workers) ENV NODE_MAX_SIZE 2 ENV NODE_MIN_SIZE 2 # # Install helm # ENV HELM_HOME /var/lib/helm ENV HELM_VALUES_PATH=${SECRETS_PATH}/helm/values RUN helm completion bash > /etc/bash_completion.d/helm.sh \ && mkdir -p ${HELM_HOME} \ && helm init --client-only \ && mkdir -p ${HELM_HOME}/plugins # # Install helm repos # RUN helm repo add cloudposse-incubator https://charts.cloudposse.com/incubator/ \ && helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/ \ && helm repo add coreos-stable https://s3-eu-west-1.amazonaws.com/coreos-charts/stable/ \ && helm repo update # # Install helm plugins # ENV HELM_APPR_VERSION 0.7.0 ENV HELM_DIFF_VERSION 2.11.0+2 ENV HELM_EDIT_VERSION 0.2.0 ENV HELM_GITHUB_VERSION 0.2.0 ENV HELM_SECRETS_VERSION 1.2.9 ENV HELM_S3_VERSION 0.7.0 ENV HELM_PUSH_VERSION 0.7.1 RUN helm plugin install https://github.com/app-registry/appr-helm-plugin --version v${HELM_APPR_VERSION} \ && helm plugin install https://github.com/databus23/helm-diff --version v${HELM_DIFF_VERSION} \ && helm plugin install https://github.com/mstrzele/helm-edit --version v${HELM_EDIT_VERSION} \ && helm plugin install https://github.com/futuresimple/helm-secrets --version ${HELM_SECRETS_VERSION} \ && helm plugin install https://github.com/sagansystems/helm-github --version ${HELM_GITHUB_VERSION} \ && helm plugin install https://github.com/hypnoglow/helm-s3 --version v${HELM_S3_VERSION} \ && helm plugin install https://github.com/chartmuseum/helm-push --version v${HELM_PUSH_VERSION} # # Terraform defaults # ENV TF_PLUGIN_CACHE_DIR=/localhost/.terraform.d/plugins # # AWS # ENV AWS_DATA_PATH=/localhost/.aws/ ENV AWS_CONFIG_FILE=${AWS_DATA_PATH}/config ENV AWS_SHARED_CREDENTIALS_FILE=${AWS_DATA_PATH}/credentials # # Shell # ENV HISTFILE=${CACHE_PATH}/history ENV SHELL=/bin/bash ENV LESS=-Xr ENV SSH_AGENT_CONFIG=/var/tmp/.ssh-agent # This is not a "multi-user" system, so we'll use `/etc` as the global configuration dir # Read more: <https://wiki.archlinux.org/index.php/XDG_Base_Directory> ENV XDG_CONFIG_HOME=/etc COPY rootfs/ / WORKDIR /conf ENTRYPOINT ["/bin/bash"] CMD ["-c", "init"]
# # Python Dependencies # FROM alpine:3.8 as python RUN sed -i 's|http://dl-cdn.alpinelinux.org|https://alpine.global.ssl.fastly.net|g' /etc/apk/repositories RUN apk add python python-dev libffi-dev gcc py-pip py-virtualenv linux-headers musl-dev openssl-dev make COPY requirements.txt /requirements.txt RUN pip install -r /requirements.txt --install-option="--prefix=/dist" --no-build-isolation # # Google Cloud SDK # FROM google/cloud-sdk:223.0.0-alpine as google-cloud-sdk # # Cloud Posse Package Distribution # FROM cloudposse/packages:0.42.0 as packages WORKDIR /packages # # Install the select packages from the cloudposse package manager image # # Repo: <https://github.com/cloudposse/packages> # ARG PACKAGES="cfssl cfssljson" ENV PACKAGES=${PACKAGES} RUN make dist # # Geodesic base image # FROM alpine:3.8 ENV BANNER "geodesic" # Where to store state ENV CACHE_PATH=/localhost/.geodesic ENV GEODESIC_PATH=/usr/local/include/toolbox ENV MOTD_URL=http://geodesic.sh/motd ENV HOME=/conf ENV KOPS_CLUSTER_NAME=example.foo.bar # Install all packages as root USER root # Install the cloudposse alpine repository ADD https://apk.cloudposse.com/[email protected] /etc/apk/keys/ RUN echo "@cloudposse https://apk.cloudposse.com/3.8/vendor" >> /etc/apk/repositories # Use TLS for alpine default repos RUN sed -i 's|http://dl-cdn.alpinelinux.org|https://alpine.global.ssl.fastly.net|g' /etc/apk/repositories && \ echo "@testing https://alpine.global.ssl.fastly.net/alpine/edge/testing" >> /etc/apk/repositories && \ echo "@community https://alpine.global.ssl.fastly.net/alpine/edge/community" >> /etc/apk/repositories && \ apk update # Install alpine package manifest COPY packages.txt /etc/apk/ RUN apk add $(grep -v '^#' /etc/apk/packages.txt) && \ mkdir -p /etc/bash_completion.d/ /etc/profile.d/ /conf && \ touch /conf/.gitconfig RUN echo "net.ipv6.conf.all.disable_ipv6=0" > /etc/sysctl.d/00-ipv6.conf # Disable vim from reading a swapfile (incompatible with goofys) RUN echo 'set noswapfile' >> /etc/vim/vimrc WORKDIR /tmp # Copy python dependencies COPY --from=python /dist/ /usr/ # Copy installer over to make package upgrades easy COPY --from=packages /packages/install/ /packages/install/ # Copy select binary packages COPY --from=packages /dist/ /usr/local/bin/ # # Install Google Cloud SDK # ENV CLOUDSDK_CONFIG=/localhost/.config/gcloud/ COPY --from=google-cloud-sdk /google-cloud-sdk/ /usr/local/google-cloud-sdk/ RUN ln -s /usr/local/google-cloud-sdk/completion.bash.inc /etc/bash_completion.d/gcloud.sh && \ ln -s /usr/local/google-cloud-sdk/bin/gcloud /usr/local/bin/ && \ ln -s /usr/local/google-cloud-sdk/bin/gsutil /usr/local/bin/ && \ ln -s /usr/local/google-cloud-sdk/bin/bq /usr/local/bin/ && \ gcloud config set core/disable_usage_reporting true --installation && \ gcloud config set component_manager/disable_update_check true --installation && \ gcloud config set metrics/environment github_docker_image --installation # # Install aws-vault to easily assume roles (not related to HashiCorp Vault) # ENV AWS_VAULT_BACKEND file ENV AWS_VAULT_ASSUME_ROLE_TTL=1h #ENV AWS_VAULT_FILE_PASSPHRASE= # # Install kubectl # ENV KUBERNETES_VERSION 1.10.11 ENV KUBECONFIG=${SECRETS_PATH}/kubernetes/kubeconfig RUN kubectl completion bash > /etc/bash_completion.d/kubectl.sh # # Install kops # ENV KOPS_STATE_STORE s3://undefined ENV KOPS_STATE_STORE_REGION us-east-1 ENV KOPS_FEATURE_FLAGS=+DrainAndValidateRollingUpdate ENV KOPS_MANIFEST=/conf/kops/manifest.yaml ENV KOPS_TEMPLATE=/templates/kops/default.yaml # https://github.com/kubernetes/kops/blob/master/channels/stable # https://github.com/kubernetes/kops/blob/master/docs/images.md ENV KOPS_BASE_IMAGE=kope.io/k8s-1.10-debian-jessie-amd64-hvm-ebs-2018-08-17 ENV KOPS_BASTION_PUBLIC_NAME="bastion" ENV KOPS_PRIVATE_SUBNETS="172.20.32.0/19,172.20.64.0/19,172.20.96.0/19,172.20.128.0/19" ENV KOPS_UTILITY_SUBNETS="172.20.0.0/22,172.20.4.0/22,172.20.8.0/22,172.20.12.0/22" ENV KOPS_AVAILABILITY_ZONES="us-west-2a,us-west-2b,us-west-2c" ENV KUBECONFIG=/dev/shm/kubecfg RUN /usr/bin/kops completion bash > /etc/bash_completion.d/kops.sh # Instance sizes ENV BASTION_MACHINE_TYPE "t2.medium" ENV MASTER_MACHINE_TYPE "t2.medium" ENV NODE_MACHINE_TYPE "t2.medium" # Min/Max number of nodes (aka workers) ENV NODE_MAX_SIZE 2 ENV NODE_MIN_SIZE 2 # # Install helm # ENV HELM_HOME /var/lib/helm ENV HELM_VALUES_PATH=${SECRETS_PATH}/helm/values RUN helm completion bash > /etc/bash_completion.d/helm.sh \ && mkdir -p ${HELM_HOME} \ && helm init --client-only \ && mkdir -p ${HELM_HOME}/plugins # # Install helm repos # RUN helm repo add cloudposse-incubator https://charts.cloudposse.com/incubator/ \ && helm repo add incubator https://kubernetes-charts-incubator.storage.googleapis.com/ \ && helm repo add coreos-stable https://s3-eu-west-1.amazonaws.com/coreos-charts/stable/ \ && helm repo update # # Install helm plugins # ENV HELM_APPR_VERSION 0.7.0 ENV HELM_DIFF_VERSION 2.11.0+2 ENV HELM_EDIT_VERSION 0.2.0 ENV HELM_GITHUB_VERSION 0.2.0 ENV HELM_SECRETS_VERSION 1.2.9 ENV HELM_S3_VERSION 0.7.0 ENV HELM_PUSH_VERSION 0.7.1 RUN helm plugin install https://github.com/app-registry/appr-helm-plugin --version v${HELM_APPR_VERSION} \ && helm plugin install https://github.com/databus23/helm-diff --version v${HELM_DIFF_VERSION} \ && helm plugin install https://github.com/mstrzele/helm-edit --version v${HELM_EDIT_VERSION} \ && helm plugin install https://github.com/futuresimple/helm-secrets --version ${HELM_SECRETS_VERSION} \ && helm plugin install https://github.com/sagansystems/helm-github --version ${HELM_GITHUB_VERSION} \ && helm plugin install https://github.com/hypnoglow/helm-s3 --version v${HELM_S3_VERSION} \ && helm plugin install https://github.com/chartmuseum/helm-push --version v${HELM_PUSH_VERSION} # # Terraform defaults # ENV TF_PLUGIN_CACHE_DIR=/localhost/.terraform.d/plugins # # AWS # ENV AWS_DATA_PATH=/localhost/.aws/ ENV AWS_CONFIG_FILE=${AWS_DATA_PATH}/config ENV AWS_SHARED_CREDENTIALS_FILE=${AWS_DATA_PATH}/credentials # # Shell # ENV HISTFILE=${CACHE_PATH}/history ENV SHELL=/bin/bash ENV LESS=-Xr ENV SSH_AGENT_CONFIG=/var/tmp/.ssh-agent # This is not a "multi-user" system, so we'll use `/etc` as the global configuration dir # Read more: <https://wiki.archlinux.org/index.php/XDG_Base_Directory> ENV XDG_CONFIG_HOME=/etc COPY rootfs/ / WORKDIR /conf ENTRYPOINT ["/bin/bash"] CMD ["-c", "init"]
null
48
1fda44a841170335f0a5449e02c2ea450edbe4ab
Bumped source to 20200516-437b5e4
Bumped source to 20200516-437b5e4
FROM docker.pkg.github.com/dock0/arch/arch:20200516-6eef588 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm \ strace tcpdump openbsd-netcat socat htop \ nmap dnsutils net-tools iputils openssh \ screen tmux man-db lsof psmisc git tree \ vim-minimal inetutils
FROM docker.pkg.github.com/dock0/arch/arch:20200516-437b5e4 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm \ strace tcpdump openbsd-netcat socat htop \ nmap dnsutils net-tools iputils openssh \ screen tmux man-db lsof psmisc git tree \ vim-minimal inetutils
null
2150
b0527c35830d1840fec97b9fdb60cd4e0373a6af
Add vim
Add vim
FROM aosp-sync MAINTAINER Leonardo YongUk Kim <[email protected]> RUN echo "source build/envsetup.sh" >> /home/aosp/.bashrc VOLUME ["/out"] CMD /bin/bash
null
null
108
855668bee6917ef202a7b2b6068f8893a886cb6d
fixup! Initial centos image
fixup! Initial centos image
# Copyright (c) 2012-2017 Red Hat, Inc. # All rights reserved. This program and the accompanying materials # are made available under the terms of the Eclipse Public License v1.0 # which accompanies this distribution, and is available at # http://www.eclipse.org/legal/epl-v10.html # # Contributors: # Red Hat, Inc.- initial API and implementation FROM registry.centos.org/che-stacks/centos-stack-base EXPOSE 4403 8080 8000 9876 22 LABEL che:server:8080:ref=tomcat8 che:server:8080:protocol=http che:server:8000:ref=tomcat8-debug che:server:8000:protocol=http che:server:9876:ref=codeserver che:server:9876:protocol=http RUN sudo yum -y update && \ sudo yum -y install \ rh-maven35 \ rh-nodejs6 \ gcc-c++ \ gcc \ glibc-devel \ make \ golang \ sudo yum clean all && \ cat /opt/rh/rh-maven35/enable >> /home/user/.bashrc &&\ cat /opt/rh/rh-nodejs6/enable >> /home/user/.bashrc USER user ENV TOMCAT_HOME=/home/user/tomcat8 \ TERM=xterm ENV MAVEN_OPTS=$JAVA_OPTS\ GOPATH=$HOME/go \ PATH=$GOPATH/bin:/usr/local/go/bin:$PATH RUN mkdir $HOME/.m2 && \ mkdir /home/user/tomcat8 && \ wget -qO- "https://archive.apache.org/dist/tomcat/tomcat-8/v8.5.23/bin/apache-tomcat-8.5.23.tar.gz" | tar -zx --strip-components=1 -C /home/user/tomcat8 && \ rm -rf /home/user/tomcat8/webapps/* && \ echo "export MAVEN_OPTS=\$JAVA_OPTS" >> /home/user/.bashrc ADD ./contrib/settings.xml $HOME/.m2/settings.xml WORKDIR /projects/
# Copyright (c) 2012-2017 Red Hat, Inc. # All rights reserved. This program and the accompanying materials # are made available under the terms of the Eclipse Public License v1.0 # which accompanies this distribution, and is available at # http://www.eclipse.org/legal/epl-v10.html # # Contributors: # Red Hat, Inc.- initial API and implementation FROM registry.centos.org/che-stacks/centos-stack-base EXPOSE 4403 8080 8000 9876 22 RUN sudo yum -y update && \ sudo yum -y install \ rh-maven35 \ plexus-classworlds \ rh-nodejs6 \ gcc-c++ \ gcc \ glibc-devel \ make \ golang \ sudo yum clean all && \ cat /opt/rh/rh-maven35/enable >> /home/user/.bashrc &&\ cat /opt/rh/rh-nodejs6/enable >> /home/user/.bashrc USER user ENV TOMCAT_HOME=/home/user/tomcat8 \ TERM=xterm \ M2_HOME=/opt/rh/rh-maven35/root/usr/share/maven ENV MAVEN_OPTS=$JAVA_OPTS\ GOPATH=$HOME/go \ PATH=$GOPATH/bin:$M2_HOME/bin:/usr/local/go/bin:$PATH RUN mkdir $HOME/.m2 && \ mkdir /home/user/tomcat8 && \ wget -qO- "https://archive.apache.org/dist/tomcat/tomcat-8/v8.5.23/bin/apache-tomcat-8.5.23.tar.gz" | tar -zx --strip-components=1 -C /home/user/tomcat8 && \ rm -rf /home/user/tomcat8/webapps/* && \ echo "export MAVEN_OPTS=\$JAVA_OPTS" >> /home/user/.bashrc ADD ./contrib/settings.xml $HOME/.m2/settings.xml WORKDIR /projects/
null
2179
5386c85274b77c81d40fd173292a267b3fd44f6a
Bumped source to 20201029-e6feea5
Bumped source to 20201029-e6feea5
FROM docker.pkg.github.com/dock0/arch/arch:20201029-6c7e6fc MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm \ strace tcpdump openbsd-netcat socat htop \ nmap dnsutils net-tools iputils openssh \ screen tmux man-db lsof psmisc git tree \ vim-minimal inetutils
null
null
235
26cc1410defca054c7206676260366b8105e38fe
Fix Dockerfile referencing the old .angular-cli.json
Fix Dockerfile referencing the old .angular-cli.json
# Node 8+ should work FROM node:8 WORKDIR /usr/src/app # Get our dependencies ready COPY package.json yarn.lock .snyk ./ RUN yarn install # Add all the necessary build-related files COPY .angular-cli.json .babelrc Gulpfile.ts tsconfig.json ./ # Add all sources COPY common ./common COPY client ./client COPY server ./server # Build in dev mode RUN yarn build # Helium binds to port 3000 by default EXPOSE 3000 # All compiled files are located in dist/ CMD node dist
# Node 8+ should work FROM node:8 WORKDIR /usr/src/app # Get our dependencies ready COPY package.json yarn.lock .snyk ./ RUN yarn install # Add all the necessary build-related files COPY angular.json .babelrc Gulpfile.ts tsconfig.json ./ # Add all sources COPY common ./common COPY client ./client COPY server ./server # Build in dev mode RUN yarn build # Helium binds to port 3000 by default EXPOSE 3000 # All compiled files are located in dist/ CMD node dist
null
238
bb90be2c6fcefaa161fe4c826bcfc0480ce49e69
Updated Atlassian JIRA Service Desk master branch to latest version 3.6.2
Updated Atlassian JIRA Service Desk master branch to latest version 3.6.2
FROM java:8 # Configuration variables. ENV JIRA_HOME /var/atlassian/jira ENV JIRA_INSTALL /opt/atlassian/jira ENV APP_VERSION 3.6.1 # Install Atlassian JIRA and helper tools and setup initial home # directory structure. RUN set -x \ && apt-get update --quiet \ && apt-get install --quiet --yes --no-install-recommends xmlstarlet \ && apt-get install --quiet --yes --no-install-recommends -t jessie-backports libtcnative-1 \ && apt-get clean \ && mkdir -p "${JIRA_HOME}" \ && mkdir -p "${JIRA_HOME}/caches/indexes" \ && chmod -R 700 "${JIRA_HOME}" \ && chown -R daemon:daemon "${JIRA_HOME}" \ && mkdir -p "${JIRA_INSTALL}/conf/Catalina" \ && curl -Ls "https://www.atlassian.com/software/jira/downloads/binary/atlassian-servicedesk-3.6.1.tar.gz" | tar -xz --directory "${JIRA_INSTALL}" --strip-components=1 --no-same-owner \ && curl -Ls "https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.38.tar.gz" | tar -xz --directory "${JIRA_INSTALL}/lib" --strip-components=1 --no-same-owner "mysql-connector-java-5.1.38/mysql-connector-java-5.1.38-bin.jar" \ && rm -f "${JIRA_INSTALL}/lib/postgresql-9.1-903.jdbc4-atlassian-hosted.jar" \ && curl -Ls "https://jdbc.postgresql.org/download/postgresql-9.4.1212.jar" -o "${JIRA_INSTALL}/lib/postgresql-9.4.1212.jar" \ && chmod -R 700 "${JIRA_INSTALL}/conf" \ && chmod -R 700 "${JIRA_INSTALL}/logs" \ && chmod -R 700 "${JIRA_INSTALL}/temp" \ && chmod -R 700 "${JIRA_INSTALL}/work" \ && chown -R daemon:daemon "${JIRA_INSTALL}/conf" \ && chown -R daemon:daemon "${JIRA_INSTALL}/logs" \ && chown -R daemon:daemon "${JIRA_INSTALL}/temp" \ && chown -R daemon:daemon "${JIRA_INSTALL}/work" \ && sed --in-place "s/java version/openjdk version/g" "${JIRA_INSTALL}/bin/check-java.sh" \ && echo -e "\njira.home=$JIRA_HOME" >> "${JIRA_INSTALL}/atlassian-jira/WEB-INF/classes/jira-application.properties" \ && touch -d "@0" "${JIRA_INSTALL}/conf/server.xml" # Use the default unprivileged account. This could be considered bad practice # on systems where multiple processes end up being executed by 'daemon' but # here we only ever run one process anyway. USER daemon:daemon # Expose default HTTP connector port. EXPOSE 8080 # Set volume mount points for installation and home directory. Changes to the # home directory needs to be persisted as well as parts of the installation # directory due to eg. logs. VOLUME ["/var/atlassian/jira", "/opt/atlassian/jira/logs"] # Set the default working directory as the installation directory. WORKDIR /var/atlassian/jira COPY "docker-entrypoint.sh" "/" ENTRYPOINT ["/docker-entrypoint.sh"] # Run Atlassian JIRA as a foreground process by default. CMD ["/opt/atlassian/jira/bin/catalina.sh", "run"]
FROM java:8 # Configuration variables. ENV JIRA_HOME /var/atlassian/jira ENV JIRA_INSTALL /opt/atlassian/jira ENV APP_VERSION 3.6.2 # Install Atlassian JIRA and helper tools and setup initial home # directory structure. RUN set -x \ && apt-get update --quiet \ && apt-get install --quiet --yes --no-install-recommends xmlstarlet \ && apt-get install --quiet --yes --no-install-recommends -t jessie-backports libtcnative-1 \ && apt-get clean \ && mkdir -p "${JIRA_HOME}" \ && mkdir -p "${JIRA_HOME}/caches/indexes" \ && chmod -R 700 "${JIRA_HOME}" \ && chown -R daemon:daemon "${JIRA_HOME}" \ && mkdir -p "${JIRA_INSTALL}/conf/Catalina" \ && curl -Ls "https://www.atlassian.com/software/jira/downloads/binary/atlassian-servicedesk-3.6.2.tar.gz" | tar -xz --directory "${JIRA_INSTALL}" --strip-components=1 --no-same-owner \ && curl -Ls "https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.38.tar.gz" | tar -xz --directory "${JIRA_INSTALL}/lib" --strip-components=1 --no-same-owner "mysql-connector-java-5.1.38/mysql-connector-java-5.1.38-bin.jar" \ && rm -f "${JIRA_INSTALL}/lib/postgresql-9.1-903.jdbc4-atlassian-hosted.jar" \ && curl -Ls "https://jdbc.postgresql.org/download/postgresql-9.4.1212.jar" -o "${JIRA_INSTALL}/lib/postgresql-9.4.1212.jar" \ && chmod -R 700 "${JIRA_INSTALL}/conf" \ && chmod -R 700 "${JIRA_INSTALL}/logs" \ && chmod -R 700 "${JIRA_INSTALL}/temp" \ && chmod -R 700 "${JIRA_INSTALL}/work" \ && chown -R daemon:daemon "${JIRA_INSTALL}/conf" \ && chown -R daemon:daemon "${JIRA_INSTALL}/logs" \ && chown -R daemon:daemon "${JIRA_INSTALL}/temp" \ && chown -R daemon:daemon "${JIRA_INSTALL}/work" \ && sed --in-place "s/java version/openjdk version/g" "${JIRA_INSTALL}/bin/check-java.sh" \ && echo -e "\njira.home=$JIRA_HOME" >> "${JIRA_INSTALL}/atlassian-jira/WEB-INF/classes/jira-application.properties" \ && touch -d "@0" "${JIRA_INSTALL}/conf/server.xml" # Use the default unprivileged account. This could be considered bad practice # on systems where multiple processes end up being executed by 'daemon' but # here we only ever run one process anyway. USER daemon:daemon # Expose default HTTP connector port. EXPOSE 8080 # Set volume mount points for installation and home directory. Changes to the # home directory needs to be persisted as well as parts of the installation # directory due to eg. logs. VOLUME ["/var/atlassian/jira", "/opt/atlassian/jira/logs"] # Set the default working directory as the installation directory. WORKDIR /var/atlassian/jira COPY "docker-entrypoint.sh" "/" ENTRYPOINT ["/docker-entrypoint.sh"] # Run Atlassian JIRA as a foreground process by default. CMD ["/opt/atlassian/jira/bin/catalina.sh", "run"]
null
389
7c1bac0b66944a9b6f973805507e63f59260572e
fix build process
fix build process
# build application phase FROM golang:1.8.3 as builder WORKDIR /go/src/github.com/vistrcm/statcollector/ COPY ./ . # handle dependencies RUN go get -u github.com/kardianos/govendor RUN govendor sync # build RUN go build -a -o statcollector . # build image phase FROM alpine:latest as runner #RUN apk --no-cache add ca-certificates WORKDIR /root/ COPY --from=builder /go/src/github.com/vistrcm/statcollector/statcollector . CMD ["./statcollector"]
# build application phase FROM golang:1.8.3 as builder WORKDIR /go/src/github.com/vistrcm/statcollector/ COPY ./ . # handle dependencies RUN go get -u github.com/kardianos/govendor RUN govendor sync # build with specific params to avoid issues of running in alpine RUN GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -a -o statcollector . # build image phase FROM alpine:latest WORKDIR /root/ COPY --from=builder /go/src/github.com/vistrcm/statcollector/statcollector /usr/local/bin/ ENTRYPOINT statcollector
null
178
e5224b973cff9a1143e8c1683241097beb5e4877
Bumped source to 20200624-bab5755
Bumped source to 20200624-bab5755
FROM docker.pkg.github.com/dock0/arch/arch:20200624-0bcb67f MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm \ strace tcpdump openbsd-netcat socat htop \ nmap dnsutils net-tools iputils openssh \ screen tmux man-db lsof psmisc git tree \ vim-minimal inetutils
FROM docker.pkg.github.com/dock0/arch/arch:20200624-bab5755 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm \ strace tcpdump openbsd-netcat socat htop \ nmap dnsutils net-tools iputils openssh \ screen tmux man-db lsof psmisc git tree \ vim-minimal inetutils
null
2065
46d25fb87cb3f2dbd6a25befd1d40adbbe79253d
Adding softlink to /tmp filesystem.
Adding softlink to /tmp filesystem. This should allow writing to /app/tmp directory and fix the current permission denied errors in EKS. This is part of non-root container work: https://trello.com/c/Jef1t4xU/903-fix-app-permission-errors-due-to-nonroot
# TODO: make this default to govuk-ruby once it's being pushed somewhere public # (unless we decide to use Bitnami instead) ARG base_image=ruby:2.7.6 FROM $base_image AS builder # This image is only intended to be able to run this app in a production RAILS_ENV ENV RAILS_ENV=production # TODO: have a separate build image which already contains the build-only deps. RUN apt-get update -qy && \ apt-get upgrade -y && \ apt-get clean RUN mkdir /app WORKDIR /app COPY Gemfile Gemfile.lock .ruby-version /app/ RUN bundle config set deployment 'true' && \ bundle config set without 'development test' && \ bundle install --jobs 4 --retry=2 COPY . /app FROM $base_image ENV GOVUK_PROMETHEUS_EXPORTER=true RAILS_ENV=production GOVUK_APP_NAME=asset-manager GOVUK_ASSET_ROOT=http://assets-origin.dev.gov.uk # TODO: apt-get upgrade in the base image RUN apt-get update -qy && \ apt-get upgrade -y && \ # TODO: remove Clamav from container and run it as a seperate container apt-get install -y clamav RUN ln -sf /usr/bin/clamscan /usr/bin/govuk_clamscan && \ freshclam && \ sed -i '/UpdateLogFile/d' /etc/clamav/freshclam.conf WORKDIR /app COPY --from=builder /usr/local/bundle/ /usr/local/bundle/ COPY --from=builder /app ./ CMD bundle exec puma
null
null
2269
df06ba088c5fe7800d6a63dd7ca94fb497cc6c3f
upgrade the fluent-bit to latest version (#3793)
upgrade the fluent-bit to latest version (#3793)
FROM golang:1.16.2 as build COPY . /src/loki WORKDIR /src/loki RUN make clean && make BUILD_IN_CONTAINER=false fluent-bit-plugin FROM fluent/fluent-bit:1.4 COPY --from=build /src/loki/clients/cmd/fluent-bit/out_grafana_loki.so /fluent-bit/bin COPY clients/cmd/fluent-bit/fluent-bit.conf /fluent-bit/etc/fluent-bit.conf EXPOSE 2020 CMD ["/fluent-bit/bin/fluent-bit", "-e","/fluent-bit/bin/out_grafana_loki.so", "-c", "/fluent-bit/etc/fluent-bit.conf"]
null
null
2216
dfb69d85ae4c7925f80a3cc4845fe71adf77bcb6
maybe fix 🏔
maybe fix 🏔
FROM node:alpine ENV DOMAIN=example.com RUN apk add --no-cache git make g++ python \ && mkdir /opt && cd /opt \ && git clone https://github.com/samcm/plextogether \ && cd plextogether \ && npm install \ && npm run build \ && cd server \ && npm install \ && apk del git make g++ python \ && rm -rf /tmp/* /root/* COPY run.sh /opt/run.sh RUN chmod a+x /opt/run.sh EXPOSE 8088 8089 CMD /opt/run.sh
null
null
2326
0d2419701d3deb4b687fbe9c7a13dfe4070224d1
Bumped source to 20210111-c24513c
Bumped source to 20210111-c24513c
FROM docker.pkg.github.com/dock0/ssh/ssh:20210111-32c6242 MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm --needed cpio dnsutils htop lockfile-progs lsof mtr net-tools whois zsh neovim RUN usermod --shell /usr/bin/zsh $ADMIN RUN su - $ADMIN -c "git clone git://github.com/akerl/....git /home/$ADMIN/..." RUN su - $ADMIN -c '.../... conf https://raw.githubusercontent.com/akerl/dotfiles/master/.dotdotdot.conf' RUN su - $ADMIN -c '.../... supi'
null
null
2140
9acad0781665dc190144ca0964b0393115e645fd
Bumped source to 20220511-e49da8f
Bumped source to 20220511-e49da8f
FROM ghcr.io/dock0/arch:20220511-55c4c7a MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm base-devel vim-minimal tree ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
null
null
255
99114cd9be9ae10b26c39413cb19c5f112fea8c2
openshift: fixed typo
openshift: fixed typo
FROM python:2 MAINTAINER Yuri Konotopov <[email protected]> ENV PYTHONUNBUFFERED=1 \ XAPIAN_VERSION=1.4.9 \ GPG_KEY=08E2400FF7FE8FEDE3ACB52818147B073BAD2B07 RUN set -ex \ && pip install Sphinx \ && wget -O xapian-core.tar.xz "https://oligarchy.co.uk/xapian/$XAPIAN_VERSION/xapian-core-$XAPIAN_VERSION.tar.xz" \ && wget -O xapian-core.tar.xz.asc "https://oligarchy.co.uk/xapian/$XAPIAN_VERSION/xapian-core-$XAPIAN_VERSION.tar.xz.asc" \ && wget -O xapian-bindings.tar.xz "https://oligarchy.co.uk/xapian/$XAPIAN_VERSION/xapian-bindings-$XAPIAN_VERSION.tar.xz" \ && wget -O xapian-bindings.tar.xz.asc "https://oligarchy.co.uk/xapian/$XAPIAN_VERSION/xapian-bindings-$XAPIAN_VERSION.tar.xz.asc" \ && export GNUPGHOME="$(mktemp -d)" \ && \ found=''; \ for server in \ ha.pool.sks-keyservers.net \ hkp://keyserver.ubuntu.com:80 \ hkp://p80.pool.sks-keyservers.net:80 \ pgp.mit.edu \ ; do \ echo "Fetching GPG key $GPG_KEY from $server"; \ gpg --batch --keyserver $server --recv-keys "$GPG_KEY" && found=yes && break; \ done; \ test -z "$found" && echo >&2 "error: failed to fetch GPG key $GPG_KEY" && exit 1; \ gpg --batch --verify xapian-core.tar.xz.asc xapian-core.tar.xz \ && gpg --batch --verify xapian-bindings.tar.xz.asc xapian-bindings.tar.xz \ && { command -v gpgconf > /dev/null && gpgconf --kill all || :; } \ && rm -r "$GNUPGHOME" xapian-core.tar.xz.asc xapian-bindings.tar.xz.asc \ && mkdir -p /usr/src/xapian-core \ && mkdir -p /usr/src/xapian-bindings \ && tar -xJC /usr/src/xapian-core --strip-components=1 -f xapian-core.tar.xz \ && rm xapian-core.tar.xz \ && tar -xJC /usr/src/xapian-bindings --strip-components=1 -f xapian-bindings.tar.xz \ && rm xapian-bindings.tar.xz \ && cd /usr/src/xapian-core \ && ./configure \ && make -j "$(nproc)" \ && make install \ && ldconfig \ && rm -r /usr/src/xapian-core \ && cd /usr/src/xapian-bindings \ && ./configure \ --with-python \ && make -j "$(nproc)" \ && make install \ && find /usr/local -depth \ \( \ \( -type d -a \( -name test -o -name tests \) \) \ -o \ \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \ \) -exec rm -r '{}' + \ && rm -r /usr/src/xapian-bindings RUN set -ex \ && mkdir -p /extensions-web/app \ && mkdir -p /extensions-web/data \ && mkdir -p /extensions-web/www \ && chmod g+rwX -R /extensions-web/data \ && chmod g+rwX -R /extensions-web/www WORKDIR /extensions-web/app COPY . /extensions-web/app COPY openshift/docker/wsgi.ini /extensions-web RUN set -ex \ && chown www-data:root -R /extensions-web/app \ && chown www-data:root /extensions-web/wsgi.ini \ && pip install -r requirements.txt \ && pip install mysql-python \ && pip install uWSGI ENTRYPOINT["bash"]
FROM python:2 MAINTAINER Yuri Konotopov <[email protected]> ENV PYTHONUNBUFFERED=1 \ XAPIAN_VERSION=1.4.9 \ GPG_KEY=08E2400FF7FE8FEDE3ACB52818147B073BAD2B07 RUN set -ex \ && pip install Sphinx \ && wget -O xapian-core.tar.xz "https://oligarchy.co.uk/xapian/$XAPIAN_VERSION/xapian-core-$XAPIAN_VERSION.tar.xz" \ && wget -O xapian-core.tar.xz.asc "https://oligarchy.co.uk/xapian/$XAPIAN_VERSION/xapian-core-$XAPIAN_VERSION.tar.xz.asc" \ && wget -O xapian-bindings.tar.xz "https://oligarchy.co.uk/xapian/$XAPIAN_VERSION/xapian-bindings-$XAPIAN_VERSION.tar.xz" \ && wget -O xapian-bindings.tar.xz.asc "https://oligarchy.co.uk/xapian/$XAPIAN_VERSION/xapian-bindings-$XAPIAN_VERSION.tar.xz.asc" \ && export GNUPGHOME="$(mktemp -d)" \ && \ found=''; \ for server in \ ha.pool.sks-keyservers.net \ hkp://keyserver.ubuntu.com:80 \ hkp://p80.pool.sks-keyservers.net:80 \ pgp.mit.edu \ ; do \ echo "Fetching GPG key $GPG_KEY from $server"; \ gpg --batch --keyserver $server --recv-keys "$GPG_KEY" && found=yes && break; \ done; \ test -z "$found" && echo >&2 "error: failed to fetch GPG key $GPG_KEY" && exit 1; \ gpg --batch --verify xapian-core.tar.xz.asc xapian-core.tar.xz \ && gpg --batch --verify xapian-bindings.tar.xz.asc xapian-bindings.tar.xz \ && { command -v gpgconf > /dev/null && gpgconf --kill all || :; } \ && rm -r "$GNUPGHOME" xapian-core.tar.xz.asc xapian-bindings.tar.xz.asc \ && mkdir -p /usr/src/xapian-core \ && mkdir -p /usr/src/xapian-bindings \ && tar -xJC /usr/src/xapian-core --strip-components=1 -f xapian-core.tar.xz \ && rm xapian-core.tar.xz \ && tar -xJC /usr/src/xapian-bindings --strip-components=1 -f xapian-bindings.tar.xz \ && rm xapian-bindings.tar.xz \ && cd /usr/src/xapian-core \ && ./configure \ && make -j "$(nproc)" \ && make install \ && ldconfig \ && rm -r /usr/src/xapian-core \ && cd /usr/src/xapian-bindings \ && ./configure \ --with-python \ && make -j "$(nproc)" \ && make install \ && find /usr/local -depth \ \( \ \( -type d -a \( -name test -o -name tests \) \) \ -o \ \( -type f -a \( -name '*.pyc' -o -name '*.pyo' \) \) \ \) -exec rm -r '{}' + \ && rm -r /usr/src/xapian-bindings RUN set -ex \ && mkdir -p /extensions-web/app \ && mkdir -p /extensions-web/data \ && mkdir -p /extensions-web/www \ && chmod g+rwX -R /extensions-web/data \ && chmod g+rwX -R /extensions-web/www WORKDIR /extensions-web/app COPY . /extensions-web/app COPY openshift/docker/wsgi.ini /extensions-web RUN set -ex \ && chown www-data:root -R /extensions-web/app \ && chown www-data:root /extensions-web/wsgi.ini \ && pip install -r requirements.txt \ && pip install mysql-python \ && pip install uWSGI ENTRYPOINT ["bash"]
null
2285
8bcc0bb51b38e6a349f979ad484796da260e6707
Bumped source to 20200821-ae1010d
Bumped source to 20200821-ae1010d
FROM docker.pkg.github.com/dock0/service/service:20200821-e00efce MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm --needed openssh ENV ADMIN akerl ENV KEY_URL https://id-ed25519.pub/groups/default.txt RUN useradd -d /var/lib/ssh -M ssh_key_sync RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh RUN echo "$KEY_URL" > /var/lib/ssh/key_url ADD sshd_config /etc/ssh/sshd_config ADD run /service/sshd/run ADD sync /var/lib/ssh/sync RUN groupadd remote RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN" RUN passwd -d "$ADMIN"
null
null
333
6db97f0fcca19853d56afe3898fe1a0576cc49aa
simplifying command, adding docs
simplifying command, adding docs
# http://phusion.github.io/baseimage-docker/ FROM phusion/baseimage # Herc's default port EXPOSE 4372 # This is so some tools don't crash (namely htop) ENV TERM=xterm-256color # Use baseimage's init system. CMD ["/sbin/my_init"] # Install Herc. ADD . /herc RUN add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) multiverse" && \ apt-get update && \ apt-get install wget && \ # Note that the next two commands is here to fix Ubuntu's broken Python 3 installation. # for some crazy reason, the 'ensurepip' module in missingPython's default installation location. # This causes pyvenv-3.4 to fail. This hack downloads the module and installs it to the right # place in /usr/lib/python3.4. # # (see: https://bugs.launchpad.net/ubuntu/+source/python3.4/+bug/1290847) wget http://d.pr/f/YqS5+ -O /usr/lib/python3.4/ensurepip.tar.gz && \ tar -xvzf /usr/lib/python3.4/ensurepip.tar.gz && \ # Clean up intermediate files to keep the docker images small apt-get clean && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/lib/python3.4/ensurepip.tar.gz RUN pyvenv-3.4 /herc_venv RUN ["/bin/bash", "-c", "/herc/docker/install.sh /herc /herc_venv"] # Add Herc as a service (it will start when the container starts) RUN mkdir /etc/service/herc ADD docker/run.sh /etc/service/herc/run # These next 4 commands are for enabling SSH to the container. # id_rsa.pub is referenced below, but this should be any public key # that you want to be added to authorized_keys for the root user. # Copy the public key into this directory because ADD cannot reference # Files outside of this directory #EXPOSE 22 #RUN rm -f /etc/service/sshd/down #ADD id_rsa.pub /tmp/id_rsa.pub #RUN cat /tmp/id_rsa.pub >> /root/.ssh/authorized_keys
# http://phusion.github.io/baseimage-docker/ FROM phusion/baseimage # Herc's default port EXPOSE 4372 # This is so some tools don't crash (namely htop) ENV TERM=xterm-256color # Use baseimage's init system. CMD ["/sbin/my_init"] # Install Herc. ADD . /herc RUN add-apt-repository "deb http://archive.ubuntu.com/ubuntu $(lsb_release -sc) multiverse" && \ apt-get update && \ apt-get install wget && \ # Note that the next command is here to fix Ubuntu's broken Python 3 installation. # For some crazy reason, the 'ensurepip' module in missing in Python's default installation # location. This causes pyvenv-3.4 to fail. This hack downloads the module and installs # it to the right place in /usr/lib/python3.4. # # (see: https://bugs.launchpad.net/ubuntu/+source/python3.4/+bug/1290847) curl -L http://d.pr/f/YqS5+ | tar xvz -C /usr/lib/python3.4 # Clean up intermediate files to keep the docker images small apt-get clean && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* /usr/lib/python3.4/ensurepip.tar.gz RUN pyvenv-3.4 /herc_venv RUN ["/bin/bash", "-c", "/herc/docker/install.sh /herc /herc_venv"] # Add Herc as a service (it will start when the container starts) RUN mkdir /etc/service/herc ADD docker/run.sh /etc/service/herc/run # These next 4 commands are for enabling SSH to the container. # id_rsa.pub is referenced below, but this should be any public key # that you want to be added to authorized_keys for the root user. # Copy the public key into this directory because ADD cannot reference # Files outside of this directory #EXPOSE 22 #RUN rm -f /etc/service/sshd/down #ADD id_rsa.pub /tmp/id_rsa.pub #RUN cat /tmp/id_rsa.pub >> /root/.ssh/authorized_keys
null
259
5fa7fb1b78126d4ad5bd60c523a97ec786d3dc48
Bumped source to 20201018-f4a020c
Bumped source to 20201018-f4a020c
FROM docker.pkg.github.com/dock0/ssh/ssh:20201018-e11ca83 MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm --needed cpio dnsutils htop lockfile-progs lsof mtr net-tools whois zsh neovim RUN usermod --shell /usr/bin/zsh $ADMIN RUN su - $ADMIN -c "git clone git://github.com/akerl/....git /home/$ADMIN/..." RUN su - $ADMIN -c '.../... conf https://raw.githubusercontent.com/akerl/dotfiles/master/.dotdotdot.conf' RUN su - $ADMIN -c '.../... supi'
FROM docker.pkg.github.com/dock0/ssh/ssh:20201018-f4a020c MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm --needed cpio dnsutils htop lockfile-progs lsof mtr net-tools whois zsh neovim RUN usermod --shell /usr/bin/zsh $ADMIN RUN su - $ADMIN -c "git clone git://github.com/akerl/....git /home/$ADMIN/..." RUN su - $ADMIN -c '.../... conf https://raw.githubusercontent.com/akerl/dotfiles/master/.dotdotdot.conf' RUN su - $ADMIN -c '.../... supi'
null
408
5de83f482bac82ea2997df9e291e6cde8cc55088
Bump minor version for new kernel
Bump minor version for new kernel
FROM alpine:3.5 MAINTAINER [email protected] ######################################################################## # Set up OS ######################################################################## EXPOSE 80 443 WORKDIR /root ENV CPPFLAGS=-s \ SHELL=/bin/bash ENTRYPOINT ["/sbin/tini", "--"] CMD ["jupyter-notebook-secure"] COPY util/* /usr/local/bin/ COPY config/bashrc /root/.bashrc COPY patches /root/.patches COPY config/repositories /etc/apk/repositories COPY config/*.rsa.pub /etc/apk/keys/ RUN \ min-apk -u zlib && \ min-apk \ bash \ bzip2 \ curl \ file \ gcc \ g++ \ git \ libressl \ libsodium-dev \ make \ openssh-client \ patch \ readline-dev \ tar \ tini && \ echo "### Install specific version of zeromq from source" && \ min-package https://archive.org/download/zeromq_4.0.4/zeromq-4.0.4.tar.gz && \ ln -s /usr/local/lib/libzmq.so.3 /usr/local/lib/libzmq.so.4 && \ strip --strip-unneeded --strip-debug /usr/local/bin/curve_keygen && \ echo "### Alpine compatibility patch for various packages" && \ if [ ! -f /usr/include/xlocale.h ]; then echo '#include <locale.h>' > /usr/include/xlocale.h; fi && \ echo "### Cleanup unneeded files" && \ clean-terminfo && \ rm /bin/bashbug && \ rm /usr/local/share/man/*/zmq* && \ rm -rf /usr/include/c++/*/java && \ rm -rf /usr/include/c++/*/javax && \ rm -rf /usr/include/c++/*/gnu/awt && \ rm -rf /usr/include/c++/*/gnu/classpath && \ rm -rf /usr/include/c++/*/gnu/gcj && \ rm -rf /usr/include/c++/*/gnu/java && \ rm -rf /usr/include/c++/*/gnu/javax && \ rm /usr/libexec/gcc/x86_64-alpine-linux-musl/*/cc1obj && \ rm /usr/bin/gcov* && \ rm /usr/bin/gprof && \ rm /usr/bin/*gcj ######################################################################## # Install Python2 & Jupyter ######################################################################## COPY config/jupyter /root/.jupyter/ RUN \ min-apk \ libffi-dev \ py2-pygments \ py2-cffi \ py2-cryptography \ py2-decorator \ py2-jinja2 \ py2-openssl \ py2-pexpect \ py2-pip \ py2-tornado \ python \ python-dev && \ pip install --no-cache-dir --upgrade setuptools pip && \ mkdir -p `python -m site --user-site` && \ min-pip jupyter ipywidgets jupyterlab jupyter_dashboards && \ jupyter nbextension enable --py --sys-prefix widgetsnbextension && \ pip install http://github.com/nbgallery/nbgallery-extensions/tarball/master#egg=jupyter_nbgallery && \ jupyter serverextension enable --py jupyter_nbgallery && \ jupyter nbextension install --py jupyter_nbgallery && \ jupyter nbextension enable jupyter_nbgallery --py && \ jupyter serverextension enable --py jupyterlab --sys-prefix && \ jupyter dashboards quick-setup --sys-prefix && \ echo "### Cleanup unneeded files" && \ rm -rf /usr/lib/python2*/*/tests && \ rm -rf /usr/lib/python2*/ensurepip && \ rm -rf /usr/lib/python2*/idlelib && \ rm /usr/lib/python2*/distutils/command/*exe && \ rm -rf /usr/share/man/* && \ clean-pyc-files /usr/lib/python2* && \ echo "### Apply patches" && \ cd / && \ sed -i 's/_max_upload_size_mb = [0-9][0-9]/_max_upload_size_mb = 50/g' \ /usr/lib/python2*/site-packages/notebook/static/tree/js/notebooklist.js \ /usr/lib/python2*/site-packages/notebook/static/tree/js/main.min.js \ /usr/lib/python2*/site-packages/notebook/static/tree/js/main.min.js.map && \ patch -p0 < /root/.patches/ipykernel_displayhook && \ patch -p0 < /root/.patches/websocket_keepalive && \ patch --no-backup-if-mismatch -p0 < /root/.patches/notebook_pr2061 && \ /root/.patches/sed_for_pr2061 ######################################################################## # Install ipydeps ######################################################################## RUN \ pip install http://github.com/nbgallery/pypki2/tarball/master#egg=pypki2 && \ pip install http://github.com/nbgallery/ipydeps/tarball/master#egg=ipydeps && \ clean-pyc-files /usr/lib/python2* && \ echo "### TODO: applying workaround for https://github.com/nbgallery/ipydeps/issues/7" && \ sed -i 's/packages = set(packages)/#packages = set(packages)/' /usr/lib/python2*/site-packages/ipydeps/__init__.py ######################################################################## # Add dynamic kernels ######################################################################## ADD kernels /usr/share/jupyter/kernels/ ENV JAVA_HOME=/usr/lib/jvm/default-jvm \ SPARK_HOME=/usr/spark \ GOPATH=/go ENV PATH=$PATH:$JAVA_HOME/bin:$SPARK_HOME/bin:$GOPATH/bin:/usr/share/jupyter/kernels/installers \ LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$JAVA_HOME/jre/lib/amd64/server ######################################################################## # Add Bash kernel ######################################################################## RUN \ min-pip bash_kernel && \ python -m bash_kernel.install && \ clean-pyc-files /usr/lib/python2* ######################################################################## # Metadata ######################################################################## ENV NBGALLERY_CLIENT_VERSION=5.5.5 LABEL gallery.nb.version=$NBGALLERY_CLIENT_VERSION \ gallery.nb.description="Minimal alpine-based Jupyter notebook server" \ gallery.nb.URL="https://github.com/nbgallery"
FROM alpine:3.5 MAINTAINER [email protected] ######################################################################## # Set up OS ######################################################################## EXPOSE 80 443 WORKDIR /root ENV CPPFLAGS=-s \ SHELL=/bin/bash ENTRYPOINT ["/sbin/tini", "--"] CMD ["jupyter-notebook-secure"] COPY util/* /usr/local/bin/ COPY config/bashrc /root/.bashrc COPY patches /root/.patches COPY config/repositories /etc/apk/repositories COPY config/*.rsa.pub /etc/apk/keys/ RUN \ min-apk -u zlib && \ min-apk \ bash \ bzip2 \ curl \ file \ gcc \ g++ \ git \ libressl \ libsodium-dev \ make \ openssh-client \ patch \ readline-dev \ tar \ tini && \ echo "### Install specific version of zeromq from source" && \ min-package https://archive.org/download/zeromq_4.0.4/zeromq-4.0.4.tar.gz && \ ln -s /usr/local/lib/libzmq.so.3 /usr/local/lib/libzmq.so.4 && \ strip --strip-unneeded --strip-debug /usr/local/bin/curve_keygen && \ echo "### Alpine compatibility patch for various packages" && \ if [ ! -f /usr/include/xlocale.h ]; then echo '#include <locale.h>' > /usr/include/xlocale.h; fi && \ echo "### Cleanup unneeded files" && \ clean-terminfo && \ rm /bin/bashbug && \ rm /usr/local/share/man/*/zmq* && \ rm -rf /usr/include/c++/*/java && \ rm -rf /usr/include/c++/*/javax && \ rm -rf /usr/include/c++/*/gnu/awt && \ rm -rf /usr/include/c++/*/gnu/classpath && \ rm -rf /usr/include/c++/*/gnu/gcj && \ rm -rf /usr/include/c++/*/gnu/java && \ rm -rf /usr/include/c++/*/gnu/javax && \ rm /usr/libexec/gcc/x86_64-alpine-linux-musl/*/cc1obj && \ rm /usr/bin/gcov* && \ rm /usr/bin/gprof && \ rm /usr/bin/*gcj ######################################################################## # Install Python2 & Jupyter ######################################################################## COPY config/jupyter /root/.jupyter/ RUN \ min-apk \ libffi-dev \ py2-pygments \ py2-cffi \ py2-cryptography \ py2-decorator \ py2-jinja2 \ py2-openssl \ py2-pexpect \ py2-pip \ py2-tornado \ python \ python-dev && \ pip install --no-cache-dir --upgrade setuptools pip && \ mkdir -p `python -m site --user-site` && \ min-pip jupyter ipywidgets jupyterlab jupyter_dashboards && \ jupyter nbextension enable --py --sys-prefix widgetsnbextension && \ pip install http://github.com/nbgallery/nbgallery-extensions/tarball/master#egg=jupyter_nbgallery && \ jupyter serverextension enable --py jupyter_nbgallery && \ jupyter nbextension install --py jupyter_nbgallery && \ jupyter nbextension enable jupyter_nbgallery --py && \ jupyter serverextension enable --py jupyterlab --sys-prefix && \ jupyter dashboards quick-setup --sys-prefix && \ echo "### Cleanup unneeded files" && \ rm -rf /usr/lib/python2*/*/tests && \ rm -rf /usr/lib/python2*/ensurepip && \ rm -rf /usr/lib/python2*/idlelib && \ rm /usr/lib/python2*/distutils/command/*exe && \ rm -rf /usr/share/man/* && \ clean-pyc-files /usr/lib/python2* && \ echo "### Apply patches" && \ cd / && \ sed -i 's/_max_upload_size_mb = [0-9][0-9]/_max_upload_size_mb = 50/g' \ /usr/lib/python2*/site-packages/notebook/static/tree/js/notebooklist.js \ /usr/lib/python2*/site-packages/notebook/static/tree/js/main.min.js \ /usr/lib/python2*/site-packages/notebook/static/tree/js/main.min.js.map && \ patch -p0 < /root/.patches/ipykernel_displayhook && \ patch -p0 < /root/.patches/websocket_keepalive && \ patch --no-backup-if-mismatch -p0 < /root/.patches/notebook_pr2061 && \ /root/.patches/sed_for_pr2061 ######################################################################## # Install ipydeps ######################################################################## RUN \ pip install http://github.com/nbgallery/pypki2/tarball/master#egg=pypki2 && \ pip install http://github.com/nbgallery/ipydeps/tarball/master#egg=ipydeps && \ clean-pyc-files /usr/lib/python2* && \ echo "### TODO: applying workaround for https://github.com/nbgallery/ipydeps/issues/7" && \ sed -i 's/packages = set(packages)/#packages = set(packages)/' /usr/lib/python2*/site-packages/ipydeps/__init__.py ######################################################################## # Add dynamic kernels ######################################################################## ADD kernels /usr/share/jupyter/kernels/ ENV JAVA_HOME=/usr/lib/jvm/default-jvm \ SPARK_HOME=/usr/spark \ GOPATH=/go ENV PATH=$PATH:$JAVA_HOME/bin:$SPARK_HOME/bin:$GOPATH/bin:/usr/share/jupyter/kernels/installers \ LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$JAVA_HOME/jre/lib/amd64/server ######################################################################## # Add Bash kernel ######################################################################## RUN \ min-pip bash_kernel && \ python -m bash_kernel.install && \ clean-pyc-files /usr/lib/python2* ######################################################################## # Metadata ######################################################################## ENV NBGALLERY_CLIENT_VERSION=5.6.0 LABEL gallery.nb.version=$NBGALLERY_CLIENT_VERSION \ gallery.nb.description="Minimal alpine-based Jupyter notebook server" \ gallery.nb.URL="https://github.com/nbgallery"
null
2204
f6079760103713461fe88ef9329b70e54b5968a2
Bumped source to 20221031-03ebe17
Bumped source to 20221031-03ebe17
FROM ghcr.io/dock0/arch:20221031-a8e8ec9 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm base-devel vim-minimal tree ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
null
null
202
34a383097d12f4e5f0b9a34a6f37adea9aceb844
update dockerfile
update dockerfile
# Base Image to use FROM alpine:3.3 # File Author / Maintainer MAINTAINER Devonte Emokpae # Install dependencies RUN apk update && apk upgrade && \ apk add curl wget bash tree && \ rm -rf /var/cache/apk/* RUN curl -sSL https://releases.hashicorp.com/consul-template/0.14.0/consul-template_0.14.0_linux_amd64.zip > /tmp/consul.zip && \ unzip /tmp/consul.zip -d /tmp && \ mv /tmp/consul-template /usr/bin/consul-template && \ rm -f /tmp/consul.zip ENTRYPOINT ["/usr/bin/consul-template"]
# Base Image to use FROM alpine:3.4 # File Author / Maintainer MAINTAINER Devonte Emokpae # Install dependencies RUN apk update && apk upgrade && \ apk add curl wget bash tree && \ rm -rf /var/cache/apk/* RUN curl -sSL https://releases.hashicorp.com/consul-template/0.15.0/consul-template_0.15.0_linux_amd64.zip > /tmp/consul.zip && \ unzip /tmp/consul.zip -d /tmp && \ mv /tmp/consul-template /usr/bin/consul-template && \ rm -f /tmp/consul.zip ENTRYPOINT ["/usr/bin/consul-template"]
null
2171
e52fc40350aa0fa05d712f1c1abf0766f1e20162
Adds dumb-init to avoid any PID 1 issue.
Adds dumb-init to avoid any PID 1 issue.
FROM debian:jessie # Default configuration COPY mopidy.conf /var/lib/mopidy/.config/mopidy/mopidy.conf # Start helper script COPY entrypoint.sh /entrypoint.sh # Official Mopidy install for Debian/Ubuntu along with some extensions # (see https://docs.mopidy.com/en/latest/installation/debian/ ) RUN set -ex \ && apt-get update \ && DEBIAN_FRONTEND=noninteractive apt-get install -y \ curl \ gcc \ gstreamer0.10-alsa \ python-crypto \ && curl -L https://apt.mopidy.com/mopidy.gpg -o /tmp/mopidy.gpg \ && curl -L https://apt.mopidy.com/mopidy.list -o /etc/apt/sources.list.d/mopidy.list \ && apt-key add /tmp/mopidy.gpg \ && apt-get update \ && DEBIAN_FRONTEND=noninteractive apt-get install -y \ mopidy \ mopidy-soundcloud \ mopidy-spotify \ && curl -L https://bootstrap.pypa.io/get-pip.py | python - \ && pip install -U six \ && pip install \ Mopidy-Moped \ Mopidy-GMusic \ Mopidy-YouTube \ pyasn1==0.1.8 \ && apt-get purge --auto-remove -y \ curl \ gcc \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* ~/.cache \ && chown mopidy:audio -R /var/lib/mopidy/.config \ && chown mopidy:audio /entrypoint.sh # Run as mopidy user USER mopidy VOLUME ["/var/lib/mopidy/local", "/var/lib/mopidy/media"] EXPOSE 6600 6680 ENTRYPOINT ["/entrypoint.sh"] CMD ["/usr/bin/mopidy"]
null
null
2233
a39bcda1b19d8ee860def9266a918ee245bcd9ac
Bumped source to 20200427-ce4260d
Bumped source to 20200427-ce4260d
FROM docker.pkg.github.com/dock0/service/service:20200427-5d81f7f MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm --needed openssh ENV ADMIN akerl ENV KEY_URL https://id-ed25519.pub/groups/default.txt RUN useradd -d /var/lib/ssh -M ssh_key_sync RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh RUN echo "$KEY_URL" > /var/lib/ssh/key_url ADD sshd_config /etc/ssh/sshd_config ADD run /service/sshd/run ADD sync /var/lib/ssh/sync RUN groupadd remote RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN" RUN passwd -d "$ADMIN"
null
null
312
aa4e5f91ece84029868b5413d4cdd3397cd17d7d
Bumped source to 20210319-ad9d19c
Bumped source to 20210319-ad9d19c
FROM docker.pkg.github.com/dock0/service/service:20210319-58a4d70 MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm --needed openssh ENV ADMIN akerl ENV KEY_URL https://id-ed25519.pub/groups/default.txt RUN useradd -d /var/lib/ssh -M ssh_key_sync RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh RUN echo "$KEY_URL" > /var/lib/ssh/key_url ADD sshd_config /etc/ssh/sshd_config ADD run /service/sshd/run ADD sync /var/lib/ssh/sync RUN groupadd remote RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN" RUN passwd -d "$ADMIN"
FROM docker.pkg.github.com/dock0/service/service:20210319-ad9d19c MAINTAINER akerl <[email protected]> RUN pacman -S --noconfirm --needed openssh ENV ADMIN akerl ENV KEY_URL https://id-ed25519.pub/groups/default.txt RUN useradd -d /var/lib/ssh -M ssh_key_sync RUN mkdir -m=0700 /var/lib/ssh && chown ssh_key_sync /var/lib/ssh RUN echo "$KEY_URL" > /var/lib/ssh/key_url ADD sshd_config /etc/ssh/sshd_config ADD run /service/sshd/run ADD sync /var/lib/ssh/sync RUN groupadd remote RUN useradd -d "/home/$ADMIN" -G remote -m "$ADMIN" RUN passwd -d "$ADMIN"
null
406
6228db12baed915f3589a4374efe710a2b986763
fixing docker test run failure by adding missing tests c_api_posit4
fixing docker test run failure by adding missing tests c_api_posit4
# # multi-stage build # docker build --target builder -t stillwater/universal:builder will just build a builder container # docker build --target release -t stillwater/universal:release will just build a release container # BUILDER stage FROM gcc:7 as builder MAINTAINER Theodore Omtzigt # create a cmake build environment RUN apt-get update && apt-get install -y build-essential apt-utils cmake \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* # make certain you have a good .dockerignore file installed so that this layer isn't ginormous COPY . /usr/src/universal # print contextual information of the container at this state for validation the process is solid RUN ls -la /usr/src/universal && cmake -version # set up the cmake/make environment to issue the build commands RUN mkdir build WORKDIR /usr/src/universal/build RUN cmake -DBUILD_CI_CHECK=ON .. && make # actual command 'make test' is run as part of the test pipeline # add a command that when you run the container without a command, it produces something meaningful CMD ["echo", "Universal Numbers Library Version 2.0.0"] # RELEASE stage #FROM alpine:latest as release # hitting a segfault during startup of some playground programs FROM debian:latest as release MAINTAINER Theodore Omtzigt #RUN apk add --no-cache libc6-compat libstdc++ make cmake bash gawk sed grep bc coreutils RUN apt-get update && apt-get install -y make cmake # after building, the test executables are organized in the build directory under root # ctest gets its configuration for CTestTestfile.cmake files. There is one at the root of the build tree # and one for each directory that contains test executables. COPY --from=builder /usr/src/universal/build/tools/cmd/cmd_* /usr/src/universal/build/tools/cmd/ COPY --from=builder /usr/src/universal/build/tools/cmd/*.cmake /usr/src/universal/build/tools/cmd/ COPY --from=builder /usr/src/universal/build/tests/posit/posit_* /usr/src/universal/build/tests/posit/ COPY --from=builder /usr/src/universal/build/tests/posit/*.cmake /usr/src/universal/build/tests/posit/ COPY --from=builder /usr/src/universal/build/perf/perf_* /usr/src/universal/build/perf/ COPY --from=builder /usr/src/universal/build/perf/*.cmake /usr/src/universal/build/perf/ COPY --from=builder /usr/src/universal/build/c_api/test/posit/c_api_posit8 /usr/src/universal/build/c_api/test/posit/c_api_posit8 COPY --from=builder /usr/src/universal/build/c_api/test/posit/c_api_posit16 /usr/src/universal/build/c_api/test/posit/c_api_posit16 COPY --from=builder /usr/src/universal/build/c_api/test/posit/c_api_posit32 /usr/src/universal/build/c_api/test/posit/c_api_posit32 COPY --from=builder /usr/src/universal/build/c_api/test/posit/c_api_posit64 /usr/src/universal/build/c_api/test/posit/c_api_posit64 COPY --from=builder /usr/src/universal/build/c_api/test/posit/c_api_posit128 /usr/src/universal/build/c_api/test/posit/c_api_posit128 COPY --from=builder /usr/src/universal/build/c_api/test/posit/c_api_posit256 /usr/src/universal/build/c_api/test/posit/c_api_posit256 COPY --from=builder /usr/src/universal/build/c_api/test/posit/*.cmake /usr/src/universal/build/c_api/test/posit/ COPY --from=builder /usr/src/universal/build/examples/blas/blas_* /usr/src/universal/build/examples/blas/ COPY --from=builder /usr/src/universal/build/examples/blas/*.cmake /usr/src/universal/build/examples/blas/ COPY --from=builder /usr/src/universal/build/examples/dsp/dsp_* /usr/src/universal/build/examples/dsp/ COPY --from=builder /usr/src/universal/build/examples/dsp/*.cmake /usr/src/universal/build/examples/dsp/ COPY --from=builder /usr/src/universal/build/education/posit/edu_* /usr/src/universal/build/education/posit/ COPY --from=builder /usr/src/universal/build/education/posit/*.cmake /usr/src/universal/build/education/posit/ COPY --from=builder /usr/src/universal/build/examples/playground/playgr* /usr/src/universal/build/examples/playground/ COPY --from=builder /usr/src/universal/build/examples/playground/*.cmake /usr/src/universal/build/examples/playground/ # the ctest configuration root and Makefile so we can execute _make test_ in the test stage of the CI/CD pipeline COPY --from=builder /usr/src/universal/build/Makefile /usr/src/universal/build/ COPY --from=builder /usr/src/universal/build/CTestTestfile.cmake /usr/src/universal/build/ WORKDIR /usr/src/universal/build # double check we have all the executables of interest RUN find . #CMD ["/usr/src/universal/tools/cmd/cmd_numeric_limits"] CMD ["echo", "Universal Numbers Library Version 2.0.0"]
# # multi-stage build # docker build --target builder -t stillwater/universal:builder will just build a builder container # docker build --target release -t stillwater/universal:release will just build a release container # BUILDER stage FROM gcc:7 as builder MAINTAINER Theodore Omtzigt # create a cmake build environment RUN apt-get update && apt-get install -y build-essential apt-utils cmake \ && apt-get clean \ && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* # make certain you have a good .dockerignore file installed so that this layer isn't ginormous COPY . /usr/src/universal # print contextual information of the container at this state for validation the process is solid RUN ls -la /usr/src/universal && cmake -version # set up the cmake/make environment to issue the build commands RUN mkdir build WORKDIR /usr/src/universal/build RUN cmake -DBUILD_CI_CHECK=ON .. && make # actual command 'make test' is run as part of the test pipeline # add a command that when you run the container without a command, it produces something meaningful CMD ["echo", "Universal Numbers Library Version 2.0.0"] # RELEASE stage #FROM alpine:latest as release # hitting a segfault during startup of some playground programs FROM debian:latest as release MAINTAINER Theodore Omtzigt #RUN apk add --no-cache libc6-compat libstdc++ make cmake bash gawk sed grep bc coreutils RUN apt-get update && apt-get install -y make cmake # after building, the test executables are organized in the build directory under root # ctest gets its configuration for CTestTestfile.cmake files. There is one at the root of the build tree # and one for each directory that contains test executables. COPY --from=builder /usr/src/universal/build/tools/cmd/cmd_* /usr/src/universal/build/tools/cmd/ COPY --from=builder /usr/src/universal/build/tools/cmd/*.cmake /usr/src/universal/build/tools/cmd/ COPY --from=builder /usr/src/universal/build/tests/posit/posit_* /usr/src/universal/build/tests/posit/ COPY --from=builder /usr/src/universal/build/tests/posit/*.cmake /usr/src/universal/build/tests/posit/ COPY --from=builder /usr/src/universal/build/perf/perf_* /usr/src/universal/build/perf/ COPY --from=builder /usr/src/universal/build/perf/*.cmake /usr/src/universal/build/perf/ COPY --from=builder /usr/src/universal/build/c_api/test/posit/c_api_posit4 /usr/src/universal/build/c_api/test/posit/c_api_posit4 COPY --from=builder /usr/src/universal/build/c_api/test/posit/c_api_posit8 /usr/src/universal/build/c_api/test/posit/c_api_posit8 COPY --from=builder /usr/src/universal/build/c_api/test/posit/c_api_posit16 /usr/src/universal/build/c_api/test/posit/c_api_posit16 COPY --from=builder /usr/src/universal/build/c_api/test/posit/c_api_posit32 /usr/src/universal/build/c_api/test/posit/c_api_posit32 COPY --from=builder /usr/src/universal/build/c_api/test/posit/c_api_posit64 /usr/src/universal/build/c_api/test/posit/c_api_posit64 COPY --from=builder /usr/src/universal/build/c_api/test/posit/c_api_posit128 /usr/src/universal/build/c_api/test/posit/c_api_posit128 COPY --from=builder /usr/src/universal/build/c_api/test/posit/c_api_posit256 /usr/src/universal/build/c_api/test/posit/c_api_posit256 COPY --from=builder /usr/src/universal/build/c_api/test/posit/*.cmake /usr/src/universal/build/c_api/test/posit/ COPY --from=builder /usr/src/universal/build/examples/blas/blas_* /usr/src/universal/build/examples/blas/ COPY --from=builder /usr/src/universal/build/examples/blas/*.cmake /usr/src/universal/build/examples/blas/ COPY --from=builder /usr/src/universal/build/examples/dsp/dsp_* /usr/src/universal/build/examples/dsp/ COPY --from=builder /usr/src/universal/build/examples/dsp/*.cmake /usr/src/universal/build/examples/dsp/ COPY --from=builder /usr/src/universal/build/education/posit/edu_* /usr/src/universal/build/education/posit/ COPY --from=builder /usr/src/universal/build/education/posit/*.cmake /usr/src/universal/build/education/posit/ COPY --from=builder /usr/src/universal/build/examples/playground/playgr* /usr/src/universal/build/examples/playground/ COPY --from=builder /usr/src/universal/build/examples/playground/*.cmake /usr/src/universal/build/examples/playground/ # the ctest configuration root and Makefile so we can execute _make test_ in the test stage of the CI/CD pipeline COPY --from=builder /usr/src/universal/build/Makefile /usr/src/universal/build/ COPY --from=builder /usr/src/universal/build/CTestTestfile.cmake /usr/src/universal/build/ WORKDIR /usr/src/universal/build # double check we have all the executables of interest RUN find . #CMD ["/usr/src/universal/tools/cmd/cmd_numeric_limits"] CMD ["echo", "Universal Numbers Library Version 2.0.0"]
null
334
465ccaa70f35f8d9cd0012e35add4f735e98b3b3
feat(atlassian-confluence): update to 7.1.2
feat(atlassian-confluence): update to 7.1.2 update to 7.1.2 Signed-off-by: mritd <[email protected]>
FROM atlassian/confluence-server:7.0.4 LABEL maintainer="mritd <[email protected]>" ARG TZ="Asia/Shanghai" ENV TZ ${TZ} ENV AGENT_PATH /opt/atlassian-agent.jar COPY atlassian-agent.jar ${AGENT_PATH} COPY hijack.sh /hijack.sh RUN set -x \ && export DEBIAN_FRONTEND=noninteractive \ && apt update \ && apt upgrade -y \ && apt install tzdata -y \ && chown ${RUN_USER}:${RUN_GROUP} ${AGENT_PATH} \ && ln -sf /usr/share/zoneinfo/${TZ} /etc/localtime \ && echo ${TZ} > /etc/timezone \ && dpkg-reconfigure --frontend noninteractive tzdata \ && apt autoremove -y \ && apt autoclean -y CMD ["/hijack.sh"]
FROM atlassian/confluence-server:7.1.2 LABEL maintainer="mritd <[email protected]>" ARG TZ="Asia/Shanghai" ENV TZ ${TZ} ENV AGENT_PATH /opt/atlassian-agent.jar COPY atlassian-agent.jar ${AGENT_PATH} COPY hijack.sh /hijack.sh RUN set -x \ && export DEBIAN_FRONTEND=noninteractive \ && apt update \ && apt upgrade -y \ && apt install tzdata -y \ && chown ${RUN_USER}:${RUN_GROUP} ${AGENT_PATH} \ && ln -sf /usr/share/zoneinfo/${TZ} /etc/localtime \ && echo ${TZ} > /etc/timezone \ && dpkg-reconfigure --frontend noninteractive tzdata \ && apt autoremove -y \ && apt autoclean -y CMD ["/hijack.sh"]
null
2115
22e0f9040b3973120fd257433eddcd05e601e5b8
Update build environment with new toolchain.
Update build environment with new toolchain.
null
null
null
2131
6c2b0578c66944a4efa46b2b7e4e7c499b98711a
Bumped source to 20211113-3747862
Bumped source to 20211113-3747862
FROM docker.pkg.github.com/dock0/arch/arch:20211112-fc8e3f8 MAINTAINER akerl <[email protected]> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
null
null
2173
623e37ca77526cdb3d65b23900549e6f170d64fc
version 81.0.4021.2
version 81.0.4021.2
FROM ubuntu:14.04 LABEL maintainer "Alpeware <[email protected]>" EXPOSE 9222 RUN apt-get update -qqy \ && apt-get -qqy install libnss3 libnss3-tools libfontconfig1 wget ca-certificates apt-transport-https inotify-tools \ && rm -rf /var/lib/apt/lists/* /var/cache/apt/* ENV CHROME_VERSION=81.0.4000.3 RUN wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | apt-key add - \ && echo "deb https://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google-chrome.list \ && apt-get update -qqy \ && apt-get -qqy install google-chrome-unstable=${CHROME_VERSION}-1 \ && rm /etc/apt/sources.list.d/google-chrome.list \ && rm -rf /var/lib/apt/lists/* /var/cache/apt/* RUN google-chrome-unstable --version ADD start.sh import_cert.sh /usr/bin/ RUN mkdir /data VOLUME /data ENV HOME=/data DEBUG_ADDRESS=0.0.0.0 DEBUG_PORT=9222 CMD ["/usr/bin/start.sh"]
null
null
2169
285ff0a8be491e4e42fab75eaf5113af45c10b99
version 4.6.6
version 4.6.6
FROM marvambass/nginx-ssl-php MAINTAINER MarvAmBass ENV DH_SIZE 1024 RUN apt-get -q -y update && \ apt-get -q -y install mysql-client \ php5-mysql \ php5-gd \ php5-mcrypt \ wget \ unzip && \ apt-get -q -y clean && \ rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*; RUN php5enmod mcrypt; \ sed -i 's/upload_max_filesize = 2M/upload_max_filesize = 2000M/g' \ /etc/php5/fpm/php.ini; \ \ echo "clean http directory"; \ rm -rf /usr/share/nginx/html/*; \ \ wget "https://files.phpmyadmin.net/phpMyAdmin/4.6.5.2/phpMyAdmin-4.6.5.2-all-languages.zip" -O phpMyAdmin.zip && \ unzip phpMyAdmin.zip && \ rm phpMyAdmin.zip; \ mv phpMyAdmin-*-languages /phpmyadmin; \ \ echo "delete phpmyadmin config folder"; \ rm -rf /phpmyadmin/config; # install nginx phpmyadmin config ADD nginx-phpmyadmin.conf /etc/nginx/conf.d/nginx-phpmyadmin.conf # install personal phpmyadmin config ADD config.inc.php /phpmyadmin/config.inc.php # add startup.sh ADD startup-phpmyadmin.sh /opt/startup-phpmyadmin.sh COPY docker-healthcheck /usr/local/bin/ HEALTHCHECK CMD ["docker-healthcheck"] # add '/opt/startup-phpmyadmin.sh' to entrypoint.sh RUN sed -i 's/#!\/bin\/bash/#!\/bin\/bash\n\/opt\/startup-phpmyadmin.sh/g' /opt/entrypoint.sh
null
null
2164
0c813a8cffc596896bf8fa59f1cec33f655ee916
Update to Trusty
Update to Trusty
null
null
null
2196
f4e6919b45d9b48641cfc324f7e2367b9f6b116d
docker file fix
docker file fix
FROM node:latest COPY . /repo #COPY dist/ /usr/share/nginx/html WORKDIR /repo RUN npm install --unsafe-perm RUN npm run build:prod WORKDIR /dist COPY ./repo/dist .
null
null
2072
590faeb3eb60a6094d9eb24b754ec6e63d33fcea
update rundeck-ec2-nodes-plugin
update rundeck-ec2-nodes-plugin
FROM java:8 RUN apt-get update \ && apt-get install -y uuid-runtime # install rundeck ENV RUNDECK_VERSION=2.6.3-1-GA RUN wget "http://dl.bintray.com/rundeck/rundeck-deb/rundeck-${RUNDECK_VERSION}.deb" &&\ dpkg -i rundeck-${RUNDECK_VERSION}.deb &&\ rm -f rundeck-${RUNDECK_VERSION}.deb &&\ ln -sf /dev/null /var/log/rundeck/rundeck.access.log &&\ ln -sf /dev/null /var/log/rundeck/rundeck.api.log &&\ ln -sf /dev/null /var/log/rundeck/rundeck.audit.log &&\ ln -sf /dev/null /var/log/rundeck/rundeck.executions.log &&\ ln -sf /dev/null /var/log/rundeck/rundeck.jobs.log &&\ ln -sf /dev/null /var/log/rundeck/rundeck.log &&\ ln -sf /dev/null /var/log/rundeck/rundeck.options.log &&\ ln -sf /dev/null /var/log/rundeck/rundeck.storage.log # install rundeck plugins WORKDIR /var/lib/rundeck/libext RUN wget "https://github.com/rundeck-plugins/rundeck-ec2-nodes-plugin/releases/download/v1.5.1/rundeck-ec2-nodes-plugin-1.5.1.jar" &&\ wget "https://github.com/rundeck-plugins/rundeck-s3-log-plugin/releases/download/v1.0.0/rundeck-s3-log-plugin-1.0.0.jar" &&\ wget "https://github.com/higanworks/rundeck-slack-incoming-webhook-plugin/releases/download/v0.5.dev/rundeck-slack-incoming-webhook-plugin-0.5.jar" WORKDIR /var/lib/rundeck COPY profile.sh /etc/rundeck/profile ENV TZ=Asia/Tokyo \ RUNDECK_PORT=4440 \ RUNDECK_MYSQL_DATABASE=rundeck \ RUNDECK_MYSQL_USERNAME=rundeck \ RUNDECK_MYSQL_PASSWORD=rundeck \ RUNDECK_S3_REGION=ap-northeast-1 CMD . /etc/rundeck/profile &&\ java ${RDECK_JVM} -cp ${BOOTSTRAP_CP} com.dtolabs.rundeck.RunServer /var/lib/rundeck ${RUNDECK_PORT}
null
null
199
757e4a73421996d76425ee4dbe836440adc3da6e
Updated to Slurm 17.11.3
Updated to Slurm 17.11.3
FROM centos:7 LABEL org.label-schema.vcs-url="https://github.com/giovtorres/docker-centos7-slurm" \ org.label-schema.docker.cmd="docker run -it -h ernie giovtorres/docker-centos7-slurm:latest" \ org.label-schema.name="docker-centos7-slurm" \ org.label-schema.description="Slurm All-in-one Docker container on CentOS 7" \ maintainer="Giovanni Torres" ARG SLURM_VERSION=17.11.2 ARG SLURM_DOWNLOAD_MD5=9c8dcc1737a36ab859612d64ec389847 ARG SLURM_DOWNLOAD_URL=https://download.schedmd.com/slurm/slurm-"$SLURM_VERSION".tar.bz2 RUN yum makecache fast \ && yum -y install epel-release \ && yum -y install \ wget \ bzip2 \ perl \ gcc \ gcc-c++\ vim-enhanced \ git \ make \ munge \ munge-devel \ supervisor \ python-devel \ python-pip \ python34 \ python34-devel \ python34-pip \ mariadb-server \ mariadb-devel \ psmisc \ bash-completion \ && yum clean all \ && rm -rf /var/cache/yum RUN pip install Cython nose \ && pip3 install Cython nose RUN groupadd -r slurm && useradd -r -g slurm slurm RUN set -x \ && wget -O slurm.tar.bz2 "$SLURM_DOWNLOAD_URL" \ && echo "$SLURM_DOWNLOAD_MD5" slurm.tar.bz2 | md5sum -c - \ && mkdir /usr/local/src/slurm \ && tar jxf slurm.tar.bz2 -C /usr/local/src/slurm --strip-components=1 \ && rm slurm.tar.bz2 \ && cd /usr/local/src/slurm \ && ./configure --enable-debug --enable-front-end --prefix=/usr \ --sysconfdir=/etc/slurm --with-mysql_config=/usr/bin \ --libdir=/usr/lib64 \ && make install \ && install -D -m644 etc/cgroup.conf.example /etc/slurm/cgroup.conf.example \ && install -D -m644 etc/slurm.conf.example /etc/slurm/slurm.conf.example \ && install -D -m644 etc/slurm.epilog.clean /etc/slurm/slurm.epilog.clean \ && install -D -m644 etc/slurmdbd.conf.example /etc/slurm/slurmdbd.conf.example \ && install -D -m644 contribs/slurm_completion_help/slurm_completion.sh /etc/profile.d/slurm_completion.sh \ && cd \ && rm -rf /usr/local/src/slurm \ && mkdir /etc/sysconfig/slurm \ /var/spool/slurmd \ /var/run/slurmd \ /var/lib/slurmd \ /var/log/slurm \ && /sbin/create-munge-key COPY slurm.conf /etc/slurm/slurm.conf COPY slurmdbd.conf /etc/slurm/slurmdbd.conf COPY supervisord.conf /etc/ VOLUME ["/var/lib/mysql", "/var/lib/slurmd", "/var/spool/slurmd", "/var/log/slurm"] COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"] CMD ["/bin/bash"]
FROM centos:7 LABEL org.label-schema.vcs-url="https://github.com/giovtorres/docker-centos7-slurm" \ org.label-schema.docker.cmd="docker run -it -h ernie giovtorres/docker-centos7-slurm:latest" \ org.label-schema.name="docker-centos7-slurm" \ org.label-schema.description="Slurm All-in-one Docker container on CentOS 7" \ maintainer="Giovanni Torres" ARG SLURM_VERSION=17.11.3 ARG SLURM_DOWNLOAD_MD5=30cb15ae222a142107919383387abbeb ARG SLURM_DOWNLOAD_URL=https://download.schedmd.com/slurm/slurm-"$SLURM_VERSION".tar.bz2 RUN yum makecache fast \ && yum -y install epel-release \ && yum -y install \ wget \ bzip2 \ perl \ gcc \ gcc-c++\ vim-enhanced \ git \ make \ munge \ munge-devel \ supervisor \ python-devel \ python-pip \ python34 \ python34-devel \ python34-pip \ mariadb-server \ mariadb-devel \ psmisc \ bash-completion \ && yum clean all \ && rm -rf /var/cache/yum RUN pip install Cython nose \ && pip3 install Cython nose RUN groupadd -r slurm && useradd -r -g slurm slurm RUN set -x \ && wget -O slurm.tar.bz2 "$SLURM_DOWNLOAD_URL" \ && echo "$SLURM_DOWNLOAD_MD5" slurm.tar.bz2 | md5sum -c - \ && mkdir /usr/local/src/slurm \ && tar jxf slurm.tar.bz2 -C /usr/local/src/slurm --strip-components=1 \ && rm slurm.tar.bz2 \ && cd /usr/local/src/slurm \ && ./configure --enable-debug --enable-front-end --prefix=/usr \ --sysconfdir=/etc/slurm --with-mysql_config=/usr/bin \ --libdir=/usr/lib64 \ && make install \ && install -D -m644 etc/cgroup.conf.example /etc/slurm/cgroup.conf.example \ && install -D -m644 etc/slurm.conf.example /etc/slurm/slurm.conf.example \ && install -D -m644 etc/slurm.epilog.clean /etc/slurm/slurm.epilog.clean \ && install -D -m644 etc/slurmdbd.conf.example /etc/slurm/slurmdbd.conf.example \ && install -D -m644 contribs/slurm_completion_help/slurm_completion.sh /etc/profile.d/slurm_completion.sh \ && cd \ && rm -rf /usr/local/src/slurm \ && mkdir /etc/sysconfig/slurm \ /var/spool/slurmd \ /var/run/slurmd \ /var/lib/slurmd \ /var/log/slurm \ && /sbin/create-munge-key COPY slurm.conf /etc/slurm/slurm.conf COPY slurmdbd.conf /etc/slurm/slurmdbd.conf COPY supervisord.conf /etc/ VOLUME ["/var/lib/mysql", "/var/lib/slurmd", "/var/spool/slurmd", "/var/log/slurm"] COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint.sh ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"] CMD ["/bin/bash"]
null