weegee/Dockerfile

7 lines
145 B
Docker

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