This repository has been archived on 2025-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
Files
speedport-smart-reconnect/Dockerfile
2022-04-23 13:29:16 +03:00

13 lines
294 B
Docker

FROM python
RUN apt-get update -y && apt-get upgrade -y
RUN apt-get install iputils-ping dnsutils -y
RUN pip install --upgrade pip
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip3 install -r requirements.txt
COPY ./src .
CMD [ "python3", "-m" , "flask", "run", "--host=0.0.0.0"]