From 6e5d34202a81b8ec64a78fb9a417689d453837c3 Mon Sep 17 00:00:00 2001 From: darkicewolf50 Date: Sat, 21 Dec 2024 23:09:12 -0700 Subject: [PATCH] fix(dockerfile): now includes requirements.txt --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 14935d1..153392e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,7 @@ WORKDIR /BajaCloudBackend COPY ./InterviewBooking /BajaCloudBackend/InterviewBooking # Copy the main file to the working directory COPY main.py /BajaCloudBackend +COPY requirements.txt /BajaCloudBackend # Install any necessary dependencies RUN pip install --no-cache-dir -r requirements.txt