Compare commits

...

2 Commits

Author SHA1 Message Date
restitux 852a7c9a15 Add docker-compose.yml 2023-01-16 16:29:33 -07:00
restitux 719b4f3914 Add zlib to output container 2023-01-16 16:17:33 -07:00
2 changed files with 12 additions and 0 deletions
+3
View File
@@ -21,5 +21,8 @@ RUN make -Cbuild -j$(grep -c ^processor /proc/cpuinfo)
RUN make -Cbuild install
FROM debian:bullseye-slim
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y \
zlib1g-dev
COPY --from=builder /usr/local/pvpgn /usr/local/pvpgn
ENTRYPOINT ["/usr/local/pvpgn/sbin/bnetd", "-D"]
+9
View File
@@ -0,0 +1,9 @@
version: '3'
services:
pvpgn:
build:
context: ./pvpgn
dockerfile: Dockerfile.bullseye-slim
ports:
- "6112:6112"
- "6200:6200"