leonsimon23 commited on
Commit
68c09e8
·
verified ·
1 Parent(s): 5ea98f8

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +22 -0
Dockerfile ADDED
@@ -0,0 +1,22 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use the official Python base image
2
+ FROM python:3.9-slim
3
+
4
+ # Set the working directory inside the container
5
+ WORKDIR /app
6
+
7
+ # Clone the repository from GitHub
8
+ RUN git clone https://github.com/leoncool23/testhg.git .
9
+
10
+ # Install the required Python packages
11
+ COPY requirements.txt .
12
+ RUN pip install -r requirements.txt
13
+
14
+ # Expose the Streamlit default port
15
+ EXPOSE 8501
16
+
17
+ # Set environment variables for Streamlit configuration (optional)
18
+ ENV STREAMLIT_SERVER_PORT=8501
19
+ ENV STREAMLIT_SERVER_HEADLESS=true
20
+
21
+ # Run the Streamlit application (assuming app.py is in the root of the cloned repo)
22
+ CMD ["streamlit", "run", "app.py"]