KARTE / Dockerfile
shuhayas's picture
Use official Streamlit Docker image for simplicity
7f10f54
raw
history blame contribute delete
353 Bytes
# 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"]