File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,4 @@ WORKDIR /workspace
4
4
COPY requirements.txt .
5
5
RUN pip install -r requirements.txt
6
6
7
- # ENTRYPOINT [ "python" ]
8
- # CMD [ "main.py" ]
9
-
10
7
CMD ["sleep" , "infinity" ]
Original file line number Diff line number Diff line change @@ -22,14 +22,14 @@ Download a goodwiki dump from huggingface https://huggingface.co/datasets/euirim
22
22
23
23
Rename the file to ` goodwiki.parquet ` and run
24
24
```
25
- docker compose run --build app import_dump.py
25
+ docker compose run app python import_dump.py
26
26
```
27
27
This will take some time. But you can start querying already while it's running.
28
28
29
29
### Start the REPL to query the dataset
30
30
31
31
```
32
- docker compose run --build app repl.py
32
+ docker compose run app python repl.py
33
33
```
34
34
## Development
35
35
You can’t perform that action at this time.
0 commit comments