mirror of
https://github.com/postgrespro/pg_probackup.git
synced 2026-06-21 01:34:15 +02:00
built-in package infrastructure (#418)
[PR #418] built-in package infrastructure
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
FROM alt:p8
|
||||
RUN ulimit -n 1024 && apt-get update -y && apt-get install -y tar wget rpm-build
|
||||
RUN ulimit -n 1024 && apt-get install -y make perl libicu-devel glibc-devel bison flex
|
||||
RUN ulimit -n 1024 && apt-get install -y git perl-devel readline-devel libxml2-devel libxslt-devel python-devel zlib-devel openssl-devel libkrb5 libkrb5-devel
|
||||
RUN ulimit -n 1024 && apt-get upgrade -y
|
||||
@@ -0,0 +1,5 @@
|
||||
FROM alt:p9
|
||||
RUN ulimit -n 1024 && apt-get update -y && apt-get install -y tar wget rpm-build
|
||||
RUN ulimit -n 1024 && apt-get install -y make perl libicu-devel glibc-devel bison flex
|
||||
RUN ulimit -n 1024 && apt-get install -y git perl-devel readline-devel libxml2-devel libxslt-devel python-devel zlib-devel openssl-devel libkrb5 libkrb5-devel
|
||||
RUN ulimit -n 1024 && apt-get dist-upgrade -y
|
||||
@@ -0,0 +1,7 @@
|
||||
FROM pgpro/astra:1.11
|
||||
RUN apt-get update -y
|
||||
RUN apt-get install -y devscripts
|
||||
RUN apt-get install -y dpkg-dev lsb-release git equivs wget vim
|
||||
RUN apt-get install -y cmake bison flex libboost-all-dev
|
||||
RUN apt-get install reprepro -y
|
||||
RUN apt-get upgrade -y
|
||||
@@ -0,0 +1,5 @@
|
||||
FROM centos:7
|
||||
RUN yum install -y tar wget rpm-build yum-utils
|
||||
RUN yum install -y gcc make perl libicu-devel glibc-devel bison flex
|
||||
RUN yum install -y git
|
||||
RUN yum upgrade -y
|
||||
@@ -0,0 +1,5 @@
|
||||
FROM centos:8
|
||||
RUN yum install -y tar wget rpm-build yum-utils
|
||||
RUN yum install -y gcc make perl libicu-devel glibc-devel bison flex
|
||||
RUN yum install -y git
|
||||
RUN yum upgrade -y
|
||||
@@ -0,0 +1,4 @@
|
||||
FROM ubuntu:17.10
|
||||
RUN apt-get -qq update -y
|
||||
RUN apt-get -qq install -y reprepro rpm createrepo gnupg rsync perl less wget expect rsync dpkg-dev
|
||||
RUN apt-get upgrade -y
|
||||
@@ -0,0 +1,7 @@
|
||||
FROM debian:10
|
||||
RUN apt-get update -y
|
||||
RUN apt-get install -y devscripts
|
||||
RUN apt-get install -y dpkg-dev lsb-release git equivs wget vim
|
||||
RUN apt-get install -y cmake bison flex libboost-all-dev
|
||||
RUN apt-get install -y reprepro
|
||||
RUN apt-get upgrade -y
|
||||
@@ -0,0 +1,7 @@
|
||||
FROM debian:11
|
||||
RUN apt-get update -y
|
||||
RUN apt-get install -y devscripts
|
||||
RUN apt-get install -y dpkg-dev lsb-release git equivs wget vim
|
||||
RUN apt-get install -y cmake bison flex libboost-all-dev
|
||||
RUN apt-get install -y reprepro
|
||||
RUN apt-get upgrade -y
|
||||
@@ -0,0 +1,7 @@
|
||||
FROM debian:8
|
||||
RUN apt-get update -y
|
||||
RUN apt-get install -y devscripts
|
||||
RUN apt-get install -y dpkg-dev lsb-release git equivs wget vim
|
||||
RUN apt-get install -y cmake bison flex libboost-all-dev
|
||||
RUN apt-get install -y reprepro
|
||||
RUN apt-get upgrade -y
|
||||
@@ -0,0 +1,7 @@
|
||||
FROM debian:9
|
||||
RUN apt-get update -y
|
||||
RUN apt-get install -y devscripts
|
||||
RUN apt-get install -y dpkg-dev lsb-release git equivs wget vim
|
||||
RUN apt-get install -y cmake bison flex libboost-all-dev
|
||||
RUN apt-get install -y reprepro
|
||||
RUN apt-get upgrade -y
|
||||
@@ -0,0 +1,5 @@
|
||||
FROM oraclelinux:6
|
||||
RUN yum install -y tar wget rpm-build yum-utils
|
||||
RUN yum install -y gcc make perl libicu-devel glibc-devel bison flex
|
||||
RUN yum install -y git openssl
|
||||
RUN yum upgrade -y
|
||||
@@ -0,0 +1,5 @@
|
||||
FROM oraclelinux:7
|
||||
RUN yum install -y tar wget rpm-build yum-utils
|
||||
RUN yum install -y gcc make perl libicu-devel glibc-devel bison flex
|
||||
RUN yum install -y git openssl
|
||||
RUN yum upgrade -y
|
||||
@@ -0,0 +1,5 @@
|
||||
FROM oraclelinux:8
|
||||
RUN yum install -y tar wget rpm-build yum-utils
|
||||
RUN yum install -y gcc make perl libicu-devel glibc-devel bison flex
|
||||
RUN yum install -y git openssl
|
||||
RUN yum upgrade -y
|
||||
@@ -0,0 +1,7 @@
|
||||
FROM registry.access.redhat.com/ubi7
|
||||
RUN yum install -y http://mirror.centos.org/centos/7/os/x86_64/Packages/elfutils-0.176-5.el7.x86_64.rpm
|
||||
RUN yum install -y http://mirror.centos.org/centos/7/os/x86_64/Packages/rpm-build-4.11.3-45.el7.x86_64.rpm
|
||||
RUN yum install -y tar wget yum-utils
|
||||
RUN yum install -y gcc make perl libicu-devel glibc-devel
|
||||
RUN yum install -y git
|
||||
RUN yum upgrade -y
|
||||
@@ -0,0 +1,5 @@
|
||||
FROM registry.access.redhat.com/ubi8
|
||||
RUN yum install -y tar wget rpm-build yum-utils
|
||||
RUN yum install -y gcc make perl libicu-devel glibc-devel
|
||||
RUN yum install -y git
|
||||
RUN yum upgrade -y
|
||||
@@ -0,0 +1,5 @@
|
||||
FROM pgpro/rosa-6
|
||||
RUN yum install -y tar wget rpm-build yum-utils
|
||||
RUN yum install -y gcc make perl libicu-devel glibc-devel bison flex
|
||||
RUN yum install -y git
|
||||
RUN yum upgrade -y
|
||||
@@ -0,0 +1,4 @@
|
||||
FROM opensuse/leap:15.1
|
||||
RUN ulimit -n 1024 && zypper install -y tar wget rpm-build
|
||||
RUN ulimit -n 1024 && zypper install -y gcc make perl libicu-devel glibc-devel bison flex
|
||||
RUN ulimit -n 1024 && zypper install -y git rsync
|
||||
@@ -0,0 +1,4 @@
|
||||
FROM opensuse/leap:15.2
|
||||
RUN ulimit -n 1024 && zypper install -y tar wget rpm-build
|
||||
RUN ulimit -n 1024 && zypper install -y gcc make perl libicu-devel glibc-devel bison flex
|
||||
RUN ulimit -n 1024 && zypper install -y git rsync
|
||||
@@ -0,0 +1,7 @@
|
||||
FROM ubuntu:14.04
|
||||
RUN apt-get update -y
|
||||
RUN apt-get install -y devscripts
|
||||
RUN apt-get install -y dpkg-dev lsb-release git equivs wget vim
|
||||
RUN apt-get install -y cmake bison flex libboost-all-dev
|
||||
RUN apt-get install -y reprepro
|
||||
RUN apt-get upgrade -y
|
||||
@@ -0,0 +1,7 @@
|
||||
FROM ubuntu:16.04
|
||||
RUN apt-get update -y
|
||||
RUN apt-get install -y devscripts
|
||||
RUN apt-get install -y dpkg-dev lsb-release git equivs wget vim
|
||||
RUN apt-get install -y cmake bison flex libboost-all-dev
|
||||
RUN apt-get install -y reprepro
|
||||
RUN apt-get upgrade -y
|
||||
@@ -0,0 +1,7 @@
|
||||
FROM ubuntu:18.04
|
||||
RUN apt-get update -y
|
||||
RUN apt-get install -y devscripts
|
||||
RUN apt-get install -y dpkg-dev lsb-release git equivs wget vim
|
||||
RUN apt-get install -y cmake bison flex libboost-all-dev
|
||||
RUN apt-get install -y reprepro
|
||||
RUN apt-get upgrade -y
|
||||
@@ -0,0 +1,7 @@
|
||||
FROM ubuntu:18.10
|
||||
RUN apt-get update -y
|
||||
RUN apt-get install -y devscripts
|
||||
RUN apt-get install -y dpkg-dev lsb-release git equivs wget vim
|
||||
RUN apt-get install -y cmake bison flex libboost-all-dev
|
||||
RUN apt-get install -y reprepro
|
||||
RUN apt-get upgrade -y
|
||||
@@ -0,0 +1,8 @@
|
||||
FROM ubuntu:20.04
|
||||
ENV DEBIAN_FRONTEND noninteractive
|
||||
RUN ulimit -n 1024 && apt-get update -y
|
||||
RUN ulimit -n 1024 && apt-get install -y devscripts
|
||||
RUN ulimit -n 1024 && apt-get install -y dpkg-dev lsb-release git equivs wget vim
|
||||
RUN ulimit -n 1024 && apt-get install -y cmake bison flex libboost-all-dev
|
||||
RUN ulimit -n 1024 && apt-get install -y reprepro
|
||||
RUN ulimit -n 1024 && apt-get upgrade -y
|
||||
Reference in New Issue
Block a user