sw-jobs-api/scrapers/Dockerfile
christian b80839e448
Some checks failed
Build and Push Docker Images / build (push) Failing after 29s
slim buster with cron
2024-06-01 17:58:02 +02:00

28 lines
716 B
Docker

# Use the official Python image from the Docker Hub
FROM python:3.9-slim-buster
# Set the working directory inside the container
WORKDIR /app
# Copy the script and requirements.txt into the container at /app
COPY jobindex.py /app/
COPY requirements.txt /app/
# Install the required Python packages
RUN pip install -r requirements.txt
# Copy the cron job file into the cron directory
COPY cronjob /etc/cron.d/jobindex-cron
# Give execution rights on the cron job
RUN chmod 0644 /etc/cron.d/jobindex-cron
# Apply cron job
RUN crontab /etc/cron.d/jobindex-cron
# Create the log file to be able to run tail
RUN touch /var/log/cron.log
# Run the command on container startup
CMD cron && tail -f /var/log/cron.log