FROM pytorch/pytorch:2.0.1-cuda11.7-cudnn8-devel LABEL authors="khushaalan" RUN apt-get update RUN apt-get install -y --no-install-recommends \ python3-pip && \ rm -rf /var/lib/apt/lists/* # Set the working directory inside the container WORKDIR /app # Copy the contents of your project directory to the container COPY . /app # Install any additional dependencies you may have (update as needed) RUN pip install -r requirements.txt # Expose the port your application will run on (if applicable) EXPOSE 8000 # Command to run your application (adjust as needed) CMD ["python3", "runserver.py"]