19 lines
629 B
Docker
19 lines
629 B
Docker
FROM python:3.9
|
|
|
|
RUN apt-get update && apt-get install -y git
|
|
RUN git clone https://gitea.zep.best/zep/Substack_JV.git /app
|
|
WORKDIR /app
|
|
|
|
RUN pip install --upgrade pip
|
|
COPY requirements.txt .
|
|
RUN pip install -r requirements.txt
|
|
|
|
ENV TZ=Europe/Brussels
|
|
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
|
|
|
|
COPY update_and_run.sh /app
|
|
# Normalize line endings (Windows CRLF -> LF) and ensure readable
|
|
RUN sed -i 's/\r$//' /app/update_and_run.sh && chmod a+r /app/update_and_run.sh
|
|
|
|
# Single entrypoint: run via sh (no exec bit required, survives noexec mounts)
|
|
ENTRYPOINT ["sh", "/app/update_and_run.sh"] |