diff options
| author | Fuwn <[email protected]> | 2023-10-31 23:18:19 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-10-31 23:18:19 -0700 |
| commit | cddb44c019183745ada2f3bc28beb8f9b49f6a12 (patch) | |
| tree | fbf99d719786ab4db8bc8ede9a387a9e76c7cd53 /Dockerfile | |
| download | docker-pounce-cddb44c019183745ada2f3bc28beb8f9b49f6a12.tar.xz docker-pounce-cddb44c019183745ada2f3bc28beb8f9b49f6a12.zip | |
feat: initial release
Diffstat (limited to 'Dockerfile')
| -rw-r--r-- | Dockerfile | 23 |
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"] |