Skip to content

Commit

Permalink
added no-cache-dir and updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
julian.pieles committed Apr 28, 2023
1 parent 1b9f8a2 commit 26bbba4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ WORKDIR /app

COPY requirements.txt /app/requirements.txt

RUN pip install -r requirements.txt && rm requirements.txt
RUN pip install --no-cache-dir -r requirements.txt && rm requirements.txt

COPY server.py /app/server.py

Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ Streamlit Web UI for OCRmyPDF. Its codebase is tiny, so if you want to modify it
docker run --rm -p 127.0.0.1:8501:8501 razemio/ocrmypdfonweb
```

Open http://localhost:8501

## Develop

```
Expand Down

0 comments on commit 26bbba4

Please sign in to comment.