khwajai/spreadsheet
0
1FROM python:3.10-slim2 3# Set working directory4WORKDIR /code5 6# Copy requirements and install7COPY ./requirements.txt /code/requirements.txt8RUN pip install --no-cache-dir --upgrade pip9RUN pip install --no-cache-dir -r /code/requirements.txt10 11# Copy the rest of the app12COPY . /code13 14# Permissions15RUN chmod -R 777 /code16 17# Start command18CMD ["uvicorn", "backend:app", "--host", "0.0.0.0", "--port", "7860"]