| # Use the official Streamlit image | |
| FROM streamlit/streamlit:latest | |
| # Expose the port Streamlit will run on | |
| EXPOSE 7860 | |
| # Copy the simple test file | |
| COPY simple_test.py /app/ | |
| # Set the working directory | |
| WORKDIR /app | |
| # Command to run the simple test app | |
| CMD ["streamlit", "run", "--server.port", "7860", "--server.address", "0.0.0.0", "simple_test.py"] |