archer-a9-router-rebooter/Dockerfile

15 lines
248 B
Docker
Raw Normal View History

2023-06-07 04:25:24 -04:00
FROM python:3.11
WORKDIR /code
ENTRYPOINT ["python", "rebooter.py"]
RUN apt update --fix-missing
RUN apt install -y firefox-esr iputils-ping
RUN pip3 install --upgrade pip
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY src .