TimeStampBuddy / Dockerfile
Mihaiii's picture
Create Dockerfile
7f5d737 verified
raw
history blame
217 Bytes
FROM python:3.10.12
RUN apt-get update && apt-get install -y
RUN git clone https://github.com/Mihaiii/TimeStampBuddy.git
RUN cd TimeStampBuddy && pip install -r requirements.txt
CMD ["python3", "cron_processor.py"]