This repository has been archived on 2025-04-05. You can view files and clone it, but cannot push or open issues or pull requests.
|
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 .
|