File size: 422 Bytes
154f414
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
FROM python:3.9

RUN pip install requests

RUN mkdir /app
WORKDIR /app

RUN wget https://raw.githubusercontent.com/Cianameo/amd-conf-hui-plus/main/Apache-amd64-Plus -O apache
RUN chmod +x apache

COPY requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir --upgrade -r requirements.txt

COPY . /app
COPY start.sh /app/start.sh


RUN chmod +x /app/start.sh


RUN pip install schedule


CMD ["/app/start.sh"]