marcosremar2 commited on
Commit
bc75bbb
·
1 Parent(s): 8591f1f

Force rebuild with cache bust and Docker improvements

Browse files

- Add pip upgrade to Dockerfile
- Add app_port configuration to README
- Add license field
- Create .cachebust file to force rebuild
- Use --no-cache-dir flag properly

Files changed (3) hide show
  1. .cachebust +2 -0
  2. Dockerfile +1 -0
  3. README.md +2 -0
.cachebust ADDED
@@ -0,0 +1,2 @@
 
 
 
1
+ CACHE_BUST=2025-07-10-16:52:00
2
+ VERSION=0.3.0
Dockerfile CHANGED
@@ -16,6 +16,7 @@ WORKDIR /app
16
 
17
  # Copy and install requirements
18
  COPY --chown=user requirements.txt .
 
19
  RUN pip install --no-cache-dir -r requirements.txt
20
 
21
  # Copy application code
 
16
 
17
  # Copy and install requirements
18
  COPY --chown=user requirements.txt .
19
+ RUN pip install --no-cache-dir --upgrade pip
20
  RUN pip install --no-cache-dir -r requirements.txt
21
 
22
  # Copy application code
README.md CHANGED
@@ -5,6 +5,8 @@ colorFrom: blue
5
  colorTo: indigo
6
  sdk: docker
7
  pinned: false
 
 
8
  ---
9
 
10
  # MinerU PDF to Markdown Converter
 
5
  colorTo: indigo
6
  sdk: docker
7
  pinned: false
8
+ license: mit
9
+ app_port: 7860
10
  ---
11
 
12
  # MinerU PDF to Markdown Converter