MaxAtoms commited on
Commit
411fe19
·
1 Parent(s): ec47fa8

Move Dockerfile

Browse files

Required for Hugging Face to build the container
when pushing the whole repo.

Files changed (3) hide show
  1. app/Dockerfile → Dockerfile +4 -2
  2. ToDo.md +0 -54
  3. requirements.txt +0 -8
app/Dockerfile → Dockerfile RENAMED
@@ -2,12 +2,14 @@ FROM python:3.12
2
 
3
  WORKDIR /code
4
 
5
- COPY ./requirements.txt /code/requirements.txt
6
 
7
- RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
8
 
9
  COPY . .
10
 
11
  EXPOSE 7860
12
 
 
 
13
  CMD ["shiny", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]
 
2
 
3
  WORKDIR /code
4
 
5
+ COPY ./app/requirements.txt /code/app/requirements.txt
6
 
7
+ RUN pip install --no-cache-dir --upgrade -r /code/app/requirements.txt
8
 
9
  COPY . .
10
 
11
  EXPOSE 7860
12
 
13
+ WORKDIR /code/app
14
+
15
  CMD ["shiny", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]
ToDo.md DELETED
@@ -1,54 +0,0 @@
1
- # To-Do List
2
-
3
- ## 🏷️ Categories
4
- - **Functionality**
5
- - **Look**
6
- - **Usability**
7
- - **Clarity**
8
- - **Ease of putting the solution in regular production**
9
- - **User relevance**
10
-
11
- ---
12
-
13
- ## 🌟 Priorities Key
14
- - 🟥 **High Priority**
15
- - 🟨 **Medium Priority**
16
- - 🟩 **Low Priority**
17
-
18
- ---
19
-
20
- ## 🗓️ To-Do Items
21
-
22
- ### **Tasks**
23
- - [ ] 🟥 **Task1**
24
- *Task:* .
25
-
26
- - [ ] 🟨 **Task1**
27
- *Task:* .
28
-
29
- ### **Task**
30
- - [ ] 🟥 **Task1**
31
- *Task:* .
32
-
33
- - [ ] 🟩 **Task1**
34
- *Task:* .
35
-
36
- ### **Task**
37
- - [ ] 🟨 **Task1**
38
- *Task:* .
39
-
40
- - [ ] 🟩 **Task1**
41
- *Task:* .
42
-
43
- ### **Task**
44
- - [ ] 🟥 **Task1**
45
- *Task:* .
46
-
47
- - [ ] 🟨 **Task1**
48
- *Task:* ..
49
-
50
- ---
51
-
52
-
53
- ## ✅ Completed Tasks
54
- - [ ] Add completed tasks here!
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
requirements.txt DELETED
@@ -1,8 +0,0 @@
1
- pyproj
2
- geopandas
3
- pandas
4
- matplotlib
5
- seaborn
6
- Ipython
7
- ipyleaflet
8
- folium