SuperKart-App / Dockerfile
dhani10's picture
Update Dockerfile
27f7a27 verified
Raw
History Blame Contribute Delete
321 Bytes
# Use official slim Python image
FROM python:3.10-slim
# Set working directory
WORKDIR /app
# Copy all files
COPY . .
# Install required packages
RUN pip install --no-cache-dir -r requirements.txt
# Expose Flask (5000) and Streamlit (7860)
EXPOSE 5000
EXPOSE 7860
# Run launcher script
CMD ["python", "main.py"]