tianlong12/cerebras2api
0
1 2 3# Use an official Python runtime as the base image4FROM python:3.9-slim5 6# Set the working directory in the container7WORKDIR /app8 9# Copy the current directory contents into the container at /app10COPY . /app11 12# Install the required packages13RUN pip install --no-cache-dir -r requirements.txt14 15# Make port 7860 available to the world outside this container16EXPOSE 786017 18# Run app.py when the container launches19CMD ["python", "app.py"]20 