weegee/Dockerfile

7 lines
145 B
Docker
Raw Normal View History

2021-12-05 22:56:46 +00:00
FROM python:alpine
WORKDIR /app
RUN apk add wireguard-tools
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY . .