aboutsummaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile23
1 files changed, 23 insertions, 0 deletions
diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..7075f48
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,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"]