File size: 353 Bytes
7f10f54 5896fe9 5f52669 7f10f54 5f52669 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # 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"] |