SmitaMahajan's picture
Update Dockerfile
f694bd7 verified
raw
history blame contribute delete
252 Bytes
FROM python:3.10
WORKDIR /home/user/app
# Copy everything into the container
COPY . .
# Run install.sh explicitly
RUN chmod +x install.sh && ./install.sh
# Expose port (for Gradio or Streamlit)
EXPOSE 7860
# Start the app
CMD ["python", "app.py"]