triy to fix script and requirements not being copied
All checks were successful
Build and Push Docker Images / build (push) Successful in 38s

This commit is contained in:
christian 2024-06-01 18:04:51 +02:00
parent dd10015927
commit 14cfc63afd

View File

@ -1,12 +1,12 @@
# Use the official Python image from the Docker Hub
FROM python:3.9-slim-buster
FROM python:3.12-slim
# 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/
COPY ./jobindex.py /app/
COPY ./requirements.txt /app/
# Install the required Python packages
RUN pip install -r requirements.txt