gamingflexer commited on
Commit
bbb8ab4
1 Parent(s): fc8e2ac

Add Dockerfile and update .gitignore

Browse files
Files changed (2) hide show
  1. .gitignore +2 -1
  2. Dockerfile +11 -0
.gitignore CHANGED
@@ -161,4 +161,5 @@ cython_debug/
161
  src/flagged/log.csv
162
  .vscode/PythonImportHelper-v2-Completion.json
163
  notebooks/*.pdf
164
- notebooks/notebooks/papers/*.jsonl
 
 
161
  src/flagged/log.csv
162
  .vscode/PythonImportHelper-v2-Completion.json
163
  notebooks/*.pdf
164
+ notebooks/notebooks/papers/*.jsonl
165
+ src/data/papers/*.jsonl
Dockerfile ADDED
@@ -0,0 +1,11 @@
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM python:3.9
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 ./src/ .
10
+
11
+ CMD ["python","app.py"]