FROM python:3.11-alpine ENV PYTHONUNBUFFERED=1 RUN pip install poetry RUN apk add nftables wireguard-tools WORKDIR /code COPY . /code/ RUN poetry install CMD docker/entrypoint.sh