Adit1Sharma's picture
Fix multi-mode deployment structure and missing files
38611c2
raw
history blame contribute delete
110 Bytes
FROM python:3.10
WORKDIR /app
COPY . .
RUN pip install -r requirements.txt
CMD ["python", "server/app.py"]