copy files
All checks were successful
Build and Push Docker Images / build (push) Successful in 39s

This commit is contained in:
christian 2024-06-01 18:07:45 +02:00
parent 14cfc63afd
commit a38aa4cd83

View File

@ -5,8 +5,8 @@ FROM python:3.12-slim
WORKDIR /app
# Copy the script and requirements.txt into the container at /app
COPY ./jobindex.py /app/
COPY ./requirements.txt /app/
COPY jobindex.py .
COPY requirements.txt .
# Install the required Python packages
RUN pip install -r requirements.txt