FROM python:alpine WORKDIR /app RUN apk add wireguard-tools COPY requirements.txt requirements.txt RUN pip3 install -r requirements.txt COPY . .