From c82929671763d2ec1bedec361b33eb2e1ad21888 Mon Sep 17 00:00:00 2001 From: darkicewolf50 Date: Sat, 21 Dec 2024 23:21:21 -0700 Subject: [PATCH] fix(dockerfile): wording is now fixed --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 153392e..825d620 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,10 +4,11 @@ FROM python:3.10-slim # Set the working directory inside the container WORKDIR /BajaCloudBackend -# Copy the current directory contents into the container at /app +# Copy the current directory contents into the container at /workingdir/InterviewBooking COPY ./InterviewBooking /BajaCloudBackend/InterviewBooking -# Copy the main file to the working directory +# Copy the main file to the working container directory COPY main.py /BajaCloudBackend +# Copy requirements to working container directory COPY requirements.txt /BajaCloudBackend # Install any necessary dependencies