smart-ipv6-rotator/Dockerfile

12 lines
167 B
Docker
Raw Normal View History

2023-10-25 19:30:16 +00:00
FROM python:3-slim
WORKDIR /app/
COPY . .
2023-10-25 19:30:16 +00:00
RUN --mount=type=cache,target=/root/.cache/pip \
pip install ./
2023-10-25 19:30:16 +00:00
ENTRYPOINT ["python", "/app/smart-ipv6-rotator.py"]