networking/wireguard_container (#5)

Add container with wireguard config, improve general setup with poetry

Reviewed-on: https://gitea.pstruebi.xyz/auracaster/bumble-auracast/pulls/5
This commit was merged in pull request #5.
This commit is contained in:
2025-04-14 09:32:24 +02:00
parent 8ea7aeb412
commit d35a8bee2c
11 changed files with 1739 additions and 16 deletions
+6
View File
@@ -1,6 +1,12 @@
# TODO: investigate using -alpine in the future
FROM python:3.11
# Install system dependencies and poetry
RUN apt-get update && apt-get install -y \
iputils-ping \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /usr/src/app
COPY ./pyproject.toml .