8 lines
265 B
Docker
8 lines
265 B
Docker
FROM python:3.8
|
|
RUN apt-get update && apt-get install -y git
|
|
RUN git clone http://192.168.1.25:8124/zep/Substack_JV.git /app
|
|
WORKDIR /app
|
|
RUN pip install -r requirements.txt
|
|
COPY update_and_run.sh /app
|
|
RUN chmod +x /app/update_and_run.sh
|
|
CMD ["./update_and_run.sh"] |