aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
blob: 7075f4866c24ef267354f4e8243c07dad3eed846 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FROM debian:12.2-slim as builder

RUN apt-get clean && apt-get -y update

RUN apt-get install -y libtls-dev git pkg-config make build-essential

WORKDIR /pounce

RUN git clone https://git.causal.agency/pounce

WORKDIR /pounce/pounce

RUN ./configure

RUN make all

RUN make install

WORKDIR /root/.config/pounce

EXPOSE 6697

CMD ["pounce", "default"]