mirror of
https://github.com/iv-org/smart-ipv6-rotator.git
synced 2024-12-04 03:50:47 +00:00
13 lines
208 B
Docker
13 lines
208 B
Docker
|
FROM python:3-slim
|
||
|
|
||
|
WORKDIR /app/
|
||
|
|
||
|
COPY requirements.txt .
|
||
|
|
||
|
RUN --mount=type=cache,target=/root/.cache/pip \
|
||
|
pip install -r requirements.txt
|
||
|
|
||
|
COPY . .
|
||
|
|
||
|
ENTRYPOINT ["python", "/app/smart-ipv6-rotator.py"]
|