smart-data-refinery / Dockerfile
3v324v23's picture
Initial commit with robust upload and demo data
e15a3ce
raw
history blame contribute delete
213 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Create upload directory
RUN mkdir -p /tmp/uploads
EXPOSE 7860
CMD ["python", "app.py"]