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
377
f7686f581ba49536f247c87e3bed67eed6959186
Bumped source to 20200704-4564ae1
Bumped source to 20200704-4564ae1
FROM docker.pkg.github.com/dock0/arch/arch:20200704-9afb8c6 MAINTAINER akerl <me@lesaker.org> 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:20200704-4564ae1 MAINTAINER akerl <me@lesaker.org> 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
feature addition
168
470fd4cd049744614ac31ede7531d94a0db8e63b
Bumped source to 20211103-04550ce
Bumped source to 20211103-04550ce
FROM docker.pkg.github.com/dock0/arch/arch:20211103-74d018e MAINTAINER akerl <me@lesaker.org> 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:20211103-04550ce MAINTAINER akerl <me@lesaker.org> 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
bug fix
2298
6d6524eae9219d832d27dc79ee043baec9422d9a
Added gsutil
Added gsutil
FROM nvidia/cuda:10.1-cudnn7-devel-ubuntu18.04 MAINTAINER nejumi <dr_jingles@mac.com> ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ apt-get install -y software-properties-common && \ add-apt-repository ppa:git-core/ppa && \ apt-get update && \ apt-get install -y git build-essential cmake &...
null
bug fix
5
c708551d2329b5cfc37a6b10455c168e1f3e50db
fix dirs
fix dirs
FROM ubuntu LABEL maintainer="sboulema@gmail.com" ENV PHP_VERSION=8.0 ENV DEBIAN_FRONTEND=noninteractive RUN useradd ttrss # add PHP repository RUN apt-get update && \ apt-get install -y software-properties-common && \ add-apt-repository ppa:ondrej/php # install PHP and extensions RUN apt-get update && apt-get...
FROM ubuntu LABEL maintainer="sboulema@gmail.com" ENV PHP_VERSION=8.0 ENV DEBIAN_FRONTEND=noninteractive RUN useradd ttrss # add PHP repository RUN apt-get update && \ apt-get install -y software-properties-common && \ add-apt-repository ppa:ondrej/php # install PHP and extensions RUN apt-get update && apt-get...
bug fix
353
e9cf413cb44d32b1934826c194d597f02075d48a
Updated Dockerfile. Try to fix error by adding key --unsafe-perm when npm install work.
Updated Dockerfile. Try to fix error by adding key --unsafe-perm when npm install work.
# Create image based on the official Node 6 image from dockerhub FROM ubuntu:14.04 # Create a directory where our app will be placed RUN mkdir -p /usr/src/app/docker # Change directory so that our commands run inside this new directory WORKDIR /usr/src/app # Copy dependency definitions COPY package.json /usr/src/app...
# Create image based on the official Node 6 image from dockerhub FROM ubuntu:14.04 # Create a directory where our app will be placed RUN mkdir -p /usr/src/app/docker # Change directory so that our commands run inside this new directory WORKDIR /usr/src/app # Copy dependency definitions COPY package.json /usr/src/app...
code refactoring
110
98773482dcedb2aefca60cb0bac01a8c01f2f028
Fix syntax error with single quote
Fix syntax error with single quote
FROM ubuntu:latest MAINTAINER Oleg Khryptul <okreptul@yahoo.com> RUN apt-get update ENV DEBIAN_FRONTEND noninteractive RUN apt-get install -y vim git python-pip wget openjdk-7-jre RUN pip install flake8 RUN useradd dev RUN echo "ALL ALL = (ALL) NOPASSWD: ALL" >> /etc/sudoers RUN cp /usr/share/zoneinfo/Am...
FROM ubuntu:latest MAINTAINER Oleg Khryptul <okreptul@yahoo.com> RUN apt-get update ENV DEBIAN_FRONTEND noninteractive RUN apt-get install -y vim git python-pip wget openjdk-7-jre RUN pip install flake8 RUN useradd dev RUN echo "ALL ALL = (ALL) NOPASSWD: ALL" >> /etc/sudoers RUN cp /usr/share/zoneinfo/Am...
code refactoring
2155
0f3f46a355170ee64bdba76fcb5fd422afc5ea2d
update to crystal 0.23.1
update to crystal 0.23.1
FROM drujensen/crystal:0.23.0 WORKDIR /app/user ADD . /app/user RUN crystal deps CMD ["crystal", "spec"]
null
bug fix
314
85fd660f031ee1021845bb419fa1a41359d6b984
Update Dockerfile for launch.sh script
Update Dockerfile for launch.sh script
FROM gliderlabs/alpine MAINTAINER Steven Borrelli <steve@aster.is> ENV CONSUL_TEMPLATE_VERSION=0.7.0 RUN apk-install haproxy ADD https://github.com/hashicorp/consul-template/releases/download/v${CONSUL_TEMPLATE_VERSION}/consul-template_${CONSUL_TEMPLATE_VERSION}_linux_amd64.tar.gz / RUN tar zxvf consul-template_${...
FROM gliderlabs/alpine MAINTAINER Steven Borrelli <steve@aster.is> ENV CONSUL_TEMPLATE_VERSION=0.7.0 RUN apk-install bash haproxy ADD https://github.com/hashicorp/consul-template/releases/download/v${CONSUL_TEMPLATE_VERSION}/consul-template_${CONSUL_TEMPLATE_VERSION}_linux_amd64.tar.gz / RUN tar zxvf consul-templa...
code refactoring
239
b055f7b72c69b37e7f5fe29d58b18406f3f9531f
bug: missing ping
bug: missing ping added to enable icmp checks
# Cabot Dockerfile # # https://github.com/shoonoise/cabot-docker # # VERSION 1.0 FROM ubuntu:14.04 MAINTAINER Alexander Kushnarev <avkushnarev@gmail.com> # Prepare RUN apt-get update RUN apt-get install -y build-essential nodejs libpq-dev python-dev npm nginx git curl libldap2-dev libsasl2-dev RUN curl -OL https://r...
# Cabot Dockerfile # # https://github.com/shoonoise/cabot-docker # # VERSION 1.0 FROM ubuntu:14.04 MAINTAINER Alexander Kushnarev <avkushnarev@gmail.com> # Prepare RUN apt-get update RUN apt-get install -y build-essential nodejs libpq-dev python-dev npm nginx git curl libldap2-dev libsasl2-dev iputils-ping RUN curl ...
maintenance/other
2111
565c12a49385e7a2780acb0226b2d06719ed940e
Update certbot and lexicon
Update certbot and lexicon
FROM python:alpine3.8 LABEL maintainer="Adrien Ferrand <ferrand.ad@gmail.com>" # Scripts in /scripts are required to be in the PATH to run properly as certbot's hooks ENV PATH /scripts:$PATH # Versioning ENV LEXICON_VERSION 3.0.8 ENV CERTBOT_VERSION 0.30.0 # Let's Encrypt configuration ENV LETSENCRYPT_STAGING false ...
null
feature addition
2120
1542e5110d1c5e27cecc5e5e8522a69690978d08
Bumped source to 20210810-8833a2b
Bumped source to 20210810-8833a2b
FROM docker.pkg.github.com/dock0/service/service:20210810-9bb62fc MAINTAINER akerl <me@lesaker.org> 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...
null
bug fix
14
633ebc58e10cb19dcb4bb2d4f9235c68a9eaa750
Adding RSYNC user. Adding no-install-recommends...
Adding RSYNC user. Adding no-install-recommends... to apt-get, and moved things around.
FROM phusion/baseimage:0.9.10 MAINTAINER github.com/jasonswindle # https://github.com/dotcloud/docker/issues/4846 and move SSH to a different port RUN sed -i 's/session required pam_loginuid.so/#session required pam_loginuid.so/' /etc/pam.d/sshd # Set root's password RUN echo "root:changeme" | chpasswd...
FROM phusion/baseimage:0.9.10 MAINTAINER github.com/jasonswindle # Set correct environment variables. ENV HOME /root # Set root's password RUN echo "root:changeme" | chpasswd # Add the user rsync, touch the authorized_keys file, chown RUN useradd rsync_user --create-home RUN touch /home/rsync_user/.ssh/authorized_k...
code refactoring
226
11781f913e26cae0eb4f714731cc7fed333bdbcb
fix paths
fix paths
# Use an official Python runtime as a parent image FROM python:3.6-slim ENV PYTHONUNBUFFERED 1 ENV NODE_ENV production # add our user and group first to make sure their IDs get assigned consistently RUN groupadd -r zeus && useradd -r -m -g zeus zeus RUN mkdir -p /usr/src/app WORKDIR /usr/src/app RUN set -x \ &...
# Use an official Python runtime as a parent image FROM python:3.6-slim ENV PYTHONUNBUFFERED 1 ENV NODE_ENV production # add our user and group first to make sure their IDs get assigned consistently RUN groupadd -r zeus && useradd -r -m -g zeus zeus RUN mkdir -p /usr/src/app WORKDIR /usr/src/app RUN set -x \ &...
maintenance/other
2124
29adf4b74b1dd6194a49756b70ce860bd294c9b2
[Wen Hao] - update dockerfile.
[Wen Hao] - update dockerfile.
FROM centos:centos7 MAINTAINER Wen Hao (https://github.com/wenhao) # Jenkins LTS packages from # https://pkg.jenkins.io/redhat-stable/ LABEL version=v1.0.0 \ k8s.io.description="Jenkins is a continuous integration server" \ k8s.io.display-name="Jenkins 2.60.2" \ openshift.io.expose-services="8080:h...
null
code refactoring
79
5451996d9263390cbf34ada2c22252d9a0b15594
Bumped source to 20201201-cae139e
Bumped source to 20201201-cae139e
FROM docker.pkg.github.com/dock0/arch/arch:20201201-b0a7036 MAINTAINER akerl <me@lesaker.org> 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:20201201-cae139e MAINTAINER akerl <me@lesaker.org> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
Not enough inforamtion
105
e28a824971ee6773d4f9f85a41d0f13e0351e648
Update Node.js to v18 (#7643)
Update Node.js to v18 (#7643) Co-authored-by: Renovate Bot <c71e7261d37a4f6ae4cfb0cbd79081310a237e67@renovateapp.com>
FROM node:14 ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ apt-get install -y xorg xvfb libxss-dev libgtk-3-0 gconf2 libnss3 libasound2 libsecret-1-0 ENV CXX="g++-4.9" ENV CC="gcc-4.9" ENV DISPLAY=:99.0 WORKDIR /app ENTRYPOINT ["sh", "-c", "(Xvfb $DISPLAY -screen 0 1024x768x16 &) && npm run test"]...
FROM node:18 ARG DEBIAN_FRONTEND=noninteractive RUN apt-get update && \ apt-get install -y xorg xvfb libxss-dev libgtk-3-0 gconf2 libnss3 libasound2 libsecret-1-0 ENV CXX="g++-4.9" ENV CC="gcc-4.9" ENV DISPLAY=:99.0 WORKDIR /app ENTRYPOINT ["sh", "-c", "(Xvfb $DISPLAY -screen 0 1024x768x16 &) && npm run test"]...
maintenance/other
2276
272513f0e73daa13231b4b35b1fc270788c2b427
Update Dockerfile
Update Dockerfile
FROM postgres:11-alpine RUN apk add --no-cache curl jq ENV DB_NAME="" ENV DB_SCHEMA="" ENV DB_CRUD_USER="" ENV DB_CRUD_PASS="" ENV DB_R_USER="" ENV DB_R_PASS="" COPY ./users.sql /docker-entrypoint-initdb.d/01.sql COPY ./database.sql /docker-entrypoint-initdb.d/02.sql COPY...
null
bug fix
407
833ac22b7a805cee6e4e11c15a7a61201c26e118
Bumped source to 20220514-b2fe335
Bumped source to 20220514-b2fe335
FROM ghcr.io/dock0/arch:20220514-1763649 MAINTAINER akerl <me@lesaker.org> RUN pacman -S --needed --noconfirm base-devel vim-minimal tree ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
FROM ghcr.io/dock0/arch:20220514-b2fe335 MAINTAINER akerl <me@lesaker.org> RUN pacman -S --needed --noconfirm base-devel vim-minimal tree ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
maintenance/other
268
9ca96efee277bfc1148f512dcc087636f7cf8ec1
Debugging.
Debugging.
# DOCKER-VERSION 0.3.4 # image olafradicke/fedora20-icinga2-check_km # Install based on Doku http://docs.icinga.org/icinga2/latest/doc/module/icinga2/chapter/getting-started FROM fedora:20 MAINTAINER Olaf Raicke <olaf@atix.de> ENV ICINGA2_USER icinga ENV ICINGA2_GROUP icingacmd ENV ICINGA2_CONFIG_FILE /etc/icinga2/ic...
# DOCKER-VERSION 0.3.4 # image olafradicke/fedora20-icinga2-check_km # Install based on Doku http://docs.icinga.org/icinga2/latest/doc/module/icinga2/chapter/getting-started FROM fedora:20 MAINTAINER Olaf Raicke <olaf@atix.de> ENV ICINGA2_USER icinga ENV ICINGA2_GROUP icingacmd ENV ICINGA2_CONFIG_FILE /etc/icinga2/ic...
bug fix
67
47ef33928f5b668a93061406e4d400d6e75f16e6
Bumped source to 20200328-c42f720
Bumped source to 20200328-c42f720
FROM docker.pkg.github.com/dock0/service/service:20200328-ecbb6dc MAINTAINER akerl <me@lesaker.org> 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...
FROM docker.pkg.github.com/dock0/service/service:20200328-c42f720 MAINTAINER akerl <me@lesaker.org> 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...
code refactoring
27
8d47ced7d134f032c395c67a61351ba07c999b24
fix bug in Dockerfile
fix bug in Dockerfile
# to build the image # # sudo docker build -t simonsdave/cloudfeaster . # # for testing/debugging # # sudo docker run -i -t simonsdave/cloudfeaster /bin/bash # # to push to dockerhub # # sudo docker push simonsdave/cloudfeaster # FROM ubuntu:14.04 MAINTAINER Dave Simons RUN apt-get update -y # was getting "ch...
# to build the image # # sudo docker build -t simonsdave/cloudfeaster . # # for testing/debugging # # sudo docker run -i -t simonsdave/cloudfeaster /bin/bash # # to push to dockerhub # # sudo docker push simonsdave/cloudfeaster # FROM ubuntu:14.04 MAINTAINER Dave Simons RUN apt-get update -y # was getting "ch...
code refactoring
64
74065d913dec2ed7603f87e440a05bc207ec2551
Bump ruby version to 2.2.3
Bump ruby version to 2.2.3
FROM ruby:2.2.2-onbuild MAINTAINER Issei Naruta <mimitako@gmail.com> ENV LANG C.UTF-8 ENTRYPOINT ["fav2reblog"] CMD ["-c", "fav2reblog.yml", "-i", "60"]
FROM ruby:2.2.3-onbuild MAINTAINER Issei Naruta <mimitako@gmail.com> ENV LANG C.UTF-8 ENTRYPOINT ["fav2reblog"] CMD ["-c", "fav2reblog.yml", "-i", "60"]
bug fix
2234
27c2dc317c3ce0f5b4eb02f8a4820afbddd2343f
Upgrade
Upgrade
null
null
maintenance/other
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 <erika.pauwels@gmail.com> ENV MU_APPLICATION_SALT '' ENV USERS_GRAPH 'http://mu.semte.ch/application' ENV SESSIONS_GRAPH 'http://mu.semte.ch/application'
null
code refactoring
211
587c28716217c0655b0abb9a8e9b417d2e21967f
Bumped source to 20201008-5afda63
Bumped source to 20201008-5afda63
FROM docker.pkg.github.com/dock0/service/service:20201008-6d6c2be MAINTAINER akerl <me@lesaker.org> 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...
FROM docker.pkg.github.com/dock0/service/service:20201008-5afda63 MAINTAINER akerl <me@lesaker.org> 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...
maintenance/other
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 r...
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...
bug fix
139
08d7719eb074c3d393a33306e645bb01b2b234c1
Bumped source to 20200730-62b8ab8
Bumped source to 20200730-62b8ab8
FROM docker.pkg.github.com/dock0/arch/arch:20200730-cec5f17 MAINTAINER akerl <me@lesaker.org> 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 <me@lesaker.org> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
maintenance/other
249
f849f6690811669d05e64ab623598d788ee39b9f
Add debugging information to Dockerfile
Add debugging information to Dockerfile
FROM golang:1.9 MAINTAINER The Stripe Observability Team <support@stripe.com> 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/proto...
FROM golang:1.9 MAINTAINER The Stripe Observability Team <support@stripe.com> 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/proto...
maintenance/other
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 <me@lesaker.org> 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 <me@lesaker.org> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
maintenance/other
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 <me@lesaker.org> RUN yes | pacman -Syu --force --needed --nodeps \ curl-amylum \ gmp-amylum \ gnupg-amylum \ gpgme-amylum \ krb5-amylum \ libarchive-amylum \ libassuan-amylum \ libgcrypt-amylum \ ...
FROM docker.pkg.github.com/dock0/amylum_arch/amylum_arch:20200214-c47b88c MAINTAINER akerl <me@lesaker.org> RUN yes | pacman -Syu --force --needed --nodeps \ curl-amylum \ gmp-amylum \ gnupg-amylum \ gpgme-amylum \ krb5-amylum \ libarchive-amylum \ libassuan-amylum \ libgcrypt-amylum \ ...
bug fix
2263
876fe93570b4e03df76f102b028223c4839e5b0d
Bumped source to 20210905-c1ef314
Bumped source to 20210905-c1ef314
FROM docker.pkg.github.com/dock0/arch/arch:20210905-f4f3473 MAINTAINER akerl <me@lesaker.org> 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
maintenance/other
2292
c5408b9b7636958d1156f1939e4079ad683b98df
Fix permissions of `app/cache` dir
Fix permissions of `app/cache` dir
FROM debian:wheezy MAINTAINER William Durand <william.durand1@gmail.com> 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/...
null
maintenance/other
198
10bcb6184ca7779766289104193bb5f567c648e5
Bumped source to 20211221-3af6661
Bumped source to 20211221-3af6661
FROM docker.pkg.github.com/dock0/arch/arch:20211221-b0cfb87 MAINTAINER akerl <me@lesaker.org> 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 <me@lesaker.org> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
maintenance/other
134
ea78adaf6321fce0ddd63f388b49801a4426a881
Bumped source to 20210803-f1e279c
Bumped source to 20210803-f1e279c
FROM docker.pkg.github.com/dock0/service/service:20210803-2386ccc MAINTAINER akerl <me@lesaker.org> 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...
FROM docker.pkg.github.com/dock0/service/service:20210803-f1e279c MAINTAINER akerl <me@lesaker.org> 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...
code refactoring
2258
cf90b840d3ac7eecee1bdf570aad657b5d939c6c
Bumped source to 20201115-1030562
Bumped source to 20201115-1030562
FROM docker.pkg.github.com/dock0/arch/arch:20201115-2d39c60 MAINTAINER akerl <me@lesaker.org> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
null
code refactoring
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
bug fix
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 <support-silkroad@bq.com> # 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 ...
null
maintenance/other
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 Organi...
null
maintenance/other
163
e7850bbe2a7e471c9a7664a31aeba7432e3d9d70
Bumped source to 20201019-6f8e9bb
Bumped source to 20201019-6f8e9bb
FROM docker.pkg.github.com/dock0/arch/arch:20201019-9fe28a5 MAINTAINER akerl <me@lesaker.org> 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 <me@lesaker.org> 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
maintenance/other
252
9843cf6f186dc0c342269592856ac7a117ceb32d
Bumped source to 20200814-ee66659
Bumped source to 20200814-ee66659
FROM docker.pkg.github.com/dock0/arch/arch:20200814-af58a04 MAINTAINER akerl <me@lesaker.org> 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 <me@lesaker.org> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
code refactoring
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 <me@lesaker.org> 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 <me@lesaker.org> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
maintenance/other
397
78192e9fac3e99bd6b07a745d8b13e428c0d8426
Update to 2.2.16
Update to 2.2.16
FROM node:argon MAINTAINER Raul Rodriguez <raul@raulr.net> 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 <raul@raulr.net> 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"]
feature addition
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 <me@lesaker.org> 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 <me@lesaker.org> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
maintenance/other
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 &...
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 &...
maintenance/other
2282
83d6f7cb75d1bedcb34ed9f32027930f62a433d0
Bumped source to 20201129-a325984
Bumped source to 20201129-a325984
FROM docker.pkg.github.com/dock0/ssh/ssh:20201129-4565f3d MAINTAINER akerl <me@lesaker.org> 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 ...
null
maintenance/other
2265
eac773c1d3a14d52159d01f35e4861e042038cfd
Bumped source to 20211013-1e1930d
Bumped source to 20211013-1e1930d
FROM docker.pkg.github.com/dock0/arch/arch:20211013-301a6d1 MAINTAINER akerl <me@lesaker.org> 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
maintenance/other
183
606e10b0fdeec3678306a00214d4fc03346cf783
Bumped source to 20210824-cfcafd0
Bumped source to 20210824-cfcafd0
FROM docker.pkg.github.com/dock0/arch/arch:20210824-7560e8d MAINTAINER akerl <me@lesaker.org> 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 <me@lesaker.org> 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
feature addition
2184
f42f00fac59648b10633dcdf40f8869f9af53f60
Bumped source to 20200704-ce3cbba
Bumped source to 20200704-ce3cbba
FROM docker.pkg.github.com/dock0/service/service:20200704-d2525e2 MAINTAINER akerl <me@lesaker.org> 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...
null
maintenance/other
2320
b7b6b95e1d8aef3d92cf01d97ed1c8bf1def8d93
Added DEBIAN_FRONTEND=noninteractive before apt-get commands
Added DEBIAN_FRONTEND=noninteractive before apt-get commands
FROM ubuntu MAINTAINER Justin Plock <justin.plock@ge.com> 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.ma...
null
code refactoring
289
424572a3e6180208a721fc38fe3161e64e519f95
Bumped source to 20210109-3d48068
Bumped source to 20210109-3d48068
FROM docker.pkg.github.com/dock0/arch/arch:20210109-5485830 MAINTAINER akerl <me@lesaker.org> 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 <me@lesaker.org> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
maintenance/other
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_BUIL...
null
bug fix
341
3fea5aec737b37c576a1d2ab328e3503c037b60d
Bumped source to 20200911-934b1c5
Bumped source to 20200911-934b1c5
FROM docker.pkg.github.com/dock0/arch/arch:20200911-9cb9cec MAINTAINER akerl <me@lesaker.org> 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 <me@lesaker.org> 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
maintenance/other
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...
null
bug fix
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 <me@lesaker.org> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
null
feature addition
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, ...
# 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, ...
maintenance/other
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 regist...
FROM openjdk:8 MAINTAINER delivery-engineering@netflix.com 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 .. && \ ...
FROM openjdk:8 MAINTAINER delivery-engineering@netflix.com 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 .. && \ ...
Not enough inforamtion
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 <me@lesaker.org> 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 <me@lesaker.org> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
maintenance/other
257
c9f8f307b5ae03dfdde13dbeac8b1c31ab0f0ba3
Updated Dockerfile
Updated Dockerfile
FROM ubuntu:trusty MAINTAINER Werner Maisl <werner@myhomenet.at> # 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/apache...
FROM ubuntu:trusty MAINTAINER Werner Maisl <werner@myhomenet.at> # 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/apache...
bug fix
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 <me@lesaker.org> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
null
maintenance/other
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,...
null
code refactoring
372
624c0ce52b90ca9ce61a97185908b605c3f8535b
Bumped source to 20220430-92b305d
Bumped source to 20220430-92b305d
FROM ghcr.io/dock0/arch:20220430-c44361f MAINTAINER akerl <me@lesaker.org> 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 <me@lesaker.org> RUN pacman -S --needed --noconfirm base-devel vim-minimal tree ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
feature addition
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. ...
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. ...
maintenance/other
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 JAV...
null
maintenance/other
143
98b63c912d4f07b6ad9f20e41f2dc6214df8a154
Bumped source to 20200916-9110dd6
Bumped source to 20200916-9110dd6
FROM docker.pkg.github.com/dock0/arch/arch:20200916-e08c9f6 MAINTAINER akerl <me@lesaker.org> 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 <me@lesaker.org> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
maintenance/other
35
31f8b3a2952edf76d3eb3e2991867309b5ab59ed
Bumped source to 20200309-d3b09fb
Bumped source to 20200309-d3b09fb
FROM docker.pkg.github.com/dock0/ssh/ssh:20200309-1f429df MAINTAINER akerl <me@lesaker.org> 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 ...
FROM docker.pkg.github.com/dock0/ssh/ssh:20200309-d3b09fb MAINTAINER akerl <me@lesaker.org> 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 ...
maintenance/other
100
08326236d2772b8cffa54c1080074993ee6166e6
Bumped source to 20201011-9ed8a5c
Bumped source to 20201011-9ed8a5c
FROM docker.pkg.github.com/dock0/service/service:20201011-35fda10 MAINTAINER akerl <me@lesaker.org> 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...
FROM docker.pkg.github.com/dock0/service/service:20201011-9ed8a5c MAINTAINER akerl <me@lesaker.org> 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...
maintenance/other
317
0daab36ea584572dd313bc56468e14458f7c6be9
Bumped source to 20210817-14c11c7
Bumped source to 20210817-14c11c7
FROM docker.pkg.github.com/dock0/arch/arch:20210817-e52d23a MAINTAINER akerl <me@lesaker.org> 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 <me@lesaker.org> 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
Not enough inforamtion
2133
f9066a76dade410c5f9d873b491bc4bdbf734723
Bumped source to 20210406-b04420a
Bumped source to 20210406-b04420a
FROM docker.pkg.github.com/dock0/ssh/ssh:20210406-f4c4501 MAINTAINER akerl <me@lesaker.org> 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 ...
null
feature addition
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...
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...
maintenance/other
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 \ bu...
## 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 \ bu...
feature addition
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 <me@lesaker.org> 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 <me@lesaker.org> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
maintenance/other
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 <support@cerbo.io> 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/...
null
Not enough inforamtion
380
a0e71692f0aedcff1ad2f47538c407cf22e19218
Dockerfile version bump
Dockerfile version bump
FROM alpine MAINTAINER David Personette <dperson@gmail.com> # 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 && \...
FROM alpine MAINTAINER David Personette <dperson@gmail.com> # 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 && \...
Not enough inforamtion
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 de...
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 ser...
code refactoring
205
0b9afe6e4ad94dd2b70421742dc8cccfc764853a
Update Dockerfile. Part 3.
Update Dockerfile. Part 3.
FROM centos:7 MAINTAINER Igor Zubkov <igor.zubkov@gmail.com> 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 EN...
FROM centos:7 MAINTAINER Igor Zubkov <igor.zubkov@gmail.com> 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 EN...
maintenance/other
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....
# 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....
maintenance/other
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 <me@lesaker.org> 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 <me@lesaker.org> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
feature addition
50
7c6505b899d7baf5b19ae4c26c55ee392eeff4b0
Bumped source to 20200506-6192e79
Bumped source to 20200506-6192e79
FROM docker.pkg.github.com/dock0/ssh/ssh:20200505-4727542 MAINTAINER akerl <me@lesaker.org> 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 ...
FROM docker.pkg.github.com/dock0/ssh/ssh:20200506-6192e79 MAINTAINER akerl <me@lesaker.org> 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 ...
maintenance/other
2107
e85771180a754547114683f6ef989947de63711c
accidentially added bitbucket
accidentially added bitbucket
FROM debian:jessie MAINTAINER Shane Starcher <shanestarcher@gmail.com> 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.l...
null
maintenance/other
2223
80c6ef2596786c6ee7fc3a7f0efdec0f55278a16
Bumped source to 20210826-418f7fd
Bumped source to 20210826-418f7fd
FROM docker.pkg.github.com/dock0/arch/arch:20210826-d6c3c5f MAINTAINER akerl <me@lesaker.org> RUN pacman -S --needed --noconfirm base-devel musl vim-minimal tree openssh ENV EDITOR vim WORKDIR /opt/build CMD ["make", "local"]
null
Not enough inforamtion
2286
73da7e633cf1033a4444e9d200fd57c1522eccba
Bumped source to 20200712-af6faf9
Bumped source to 20200712-af6faf9
FROM docker.pkg.github.com/dock0/ssh/ssh:20200712-23d091a MAINTAINER akerl <me@lesaker.org> 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 ...
null
maintenance/other
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.1...
# 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"]
maintenance/other
2128
4abbf3d4f68a0f617182365e002d324be18c0bdd
Bumped source to 20210120-a4273cc
Bumped source to 20210120-a4273cc
FROM docker.pkg.github.com/dock0/service/service:20210120-66257d1 MAINTAINER akerl <me@lesaker.org> 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...
null
code refactoring
368
5619f4daf6eccd888167ed2f6167cc5a7f8b7fd9
Bumped source to 20210828-6fc00c0
Bumped source to 20210828-6fc00c0
FROM docker.pkg.github.com/dock0/arch/arch:20210828-6cf161c MAINTAINER akerl <me@lesaker.org> 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 <me@lesaker.org> 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
maintenance/other
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 #...
null
code refactoring
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 <me@lesaker.org> 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 <me@lesaker.org> RUN pacman -S --noconfirm s6 execline musl-amylum ADD service /service ADD init /init CMD ["/init"]
maintenance/other
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-com...
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-com...
code refactoring
369
50ebf3fbf4eb10038b9b6e0d9521ce8e310d8843
Bumped source to 20200919-ecd47cf
Bumped source to 20200919-ecd47cf
FROM docker.pkg.github.com/dock0/arch/arch:20200919-49ac157 MAINTAINER akerl <me@lesaker.org> 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 <me@lesaker.org> 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
maintenance/other
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] <5bdcd3c0d4d24ae3e71b3b452a024c6324c7e4bb@dependabot.com>
# # 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 insta...
# # 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 insta...
feature addition
48
1fda44a841170335f0a5449e02c2ea450edbe4ab
Bumped source to 20200516-437b5e4
Bumped source to 20200516-437b5e4
FROM docker.pkg.github.com/dock0/arch/arch:20200516-6eef588 MAINTAINER akerl <me@lesaker.org> 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 <me@lesaker.org> 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
bug fix
2150
b0527c35830d1840fec97b9fdb60cd4e0373a6af
Add vim
Add vim
FROM aosp-sync MAINTAINER Leonardo YongUk Kim <dalinaum@gmail.com> RUN echo "source build/envsetup.sh" >> /home/aosp/.bashrc VOLUME ["/out"] CMD /bin/bash
null
maintenance/other
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.- i...
# 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.- i...
bug fix
2179
5386c85274b77c81d40fd173292a267b3fd44f6a
Bumped source to 20201029-e6feea5
Bumped source to 20201029-e6feea5
FROM docker.pkg.github.com/dock0/arch/arch:20201029-6c7e6fc MAINTAINER akerl <me@lesaker.org> 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
code refactoring
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 ....
# 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 ./serv...
bug fix
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-inst...
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-inst...
maintenance/other
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-c...
# 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 -...
feature addition
178
e5224b973cff9a1143e8c1683241097beb5e4877
Bumped source to 20200624-bab5755
Bumped source to 20200624-bab5755
FROM docker.pkg.github.com/dock0/arch/arch:20200624-0bcb67f MAINTAINER akerl <me@lesaker.org> 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 <me@lesaker.org> 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
code refactoring
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 ima...
null
bug fix
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 ...
null
maintenance/other
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 /tm...
null
maintenance/other