8 lines
178 B
Text
8 lines
178 B
Text
|
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
|