Eleonora Bernasconi commited on
Commit
cc6d765
·
1 Parent(s): 637d7a3
Files changed (3) hide show
  1. Dockerfile +17 -0
  2. README.md +4 -2
  3. __pycache__/analysis.cpython-37.pyc +0 -0
Dockerfile ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Use an official Python runtime as a parent image
2
+ FROM python:3.9
3
+
4
+ # Set the working directory inside the container
5
+ WORKDIR /app
6
+
7
+ # Copy the current directory contents into the container at /app
8
+ COPY . /app
9
+
10
+ # Install any needed packages specified in requirements.txt
11
+ RUN pip install --no-cache-dir -r requirements.txt
12
+
13
+ # Make port 8501 available to the world outside this container
14
+ EXPOSE 8501
15
+
16
+ # Define the command to run your Streamlit app
17
+ CMD ["streamlit", "run", "app.py"]
README.md CHANGED
@@ -1,5 +1,5 @@
1
  ---
2
- title: Ircdl
3
  emoji: 🔥
4
  colorFrom: yellow
5
  colorTo: purple
@@ -9,4 +9,6 @@ app_file: app.py
9
  pinned: false
10
  ---
11
 
12
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
 
 
1
  ---
2
+ title: Ircdl Confernece
3
  emoji: 🔥
4
  colorFrom: yellow
5
  colorTo: purple
 
9
  pinned: false
10
  ---
11
 
12
+ git clone https://huggingface.co/spaces/eleeleai/ircdl_data
13
+ pip install -r requirements.txt
14
+ streamlit run app.py
__pycache__/analysis.cpython-37.pyc CHANGED
Binary files a/__pycache__/analysis.cpython-37.pyc and b/__pycache__/analysis.cpython-37.pyc differ