mirror of
https://github.com/postgrespro/pg_probackup.git
synced 2024-11-25 09:01:48 +02:00
4a7db4cf5e
[PR #418] built-in package infrastructure
9 lines
393 B
Plaintext
9 lines
393 B
Plaintext
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
|