File: Dockerfile

package info (click to toggle)
pg-auto-failover 2.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,368 kB
  • sloc: ansic: 58,369; python: 5,515; sql: 3,177; makefile: 629; sh: 35
file content (20 lines) | stat: -rw-r--r-- 417 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM debian:bullseye-slim

RUN apt-get update \
  && DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
     build-essential \
     ca-certificates \
     curl \
     git \
     gawk \
     make \
     cmake \
     python3 \
     sudo \
 && rm -rf /var/lib/apt/lists/*

WORKDIR /usr/src/pg_auto_failover/ci
COPY tools.mk ./

WORKDIR /usr/src/pg_auto_failover
RUN make -C ci -f tools.mk tools