fix(dockerfile): wording is now fixed

This commit is contained in:
darkicewolf50 2024-12-21 23:21:21 -07:00
parent 4617d9b70d
commit c829296717

View File

@ -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