mirror of
https://github.com/UofCBaja/BajaCloud.git
synced 2025-07-08 20:17:13 -06:00
feat(InterviewBooking): almost preped for merge into one repo
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user