feat(InterviewBooking): almost preped for merge into one repo

This commit is contained in:
2024-12-21 22:52:36 -07:00
parent 0de072a5ad
commit 9eae4153ad
31 changed files with 12 additions and 136 deletions

View File

@ -5,12 +5,14 @@ FROM python:3.10-slim
WORKDIR /BajaCloudBackend
# Copy the current directory contents into the container at /app
COPY ./ContainerContents /BajaCloudBackend
COPY ./InterviewBooking /BajaCloudBackend/InterviewBooking
# Copy the main file to the working directory
COPY main.py /BajaCloudBackend
# Install any necessary dependencies
RUN pip install --no-cache-dir -r requirements.txt
# Expose port 8080 for the container to listen on
# Expose port 8000 for the container to listen on
EXPOSE 8000
# Command to run the Python server when the container starts