cooperchris17 commited on
Commit
d520c37
·
verified ·
1 Parent(s): ce4cb04

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -3
Dockerfile CHANGED
@@ -2,11 +2,9 @@ FROM python:3.12-slim
2
 
3
  WORKDIR /app
4
 
5
- # unzip Stanza models
6
- RUN unzip -d /app/stanza_resources /app/stanza_resources/default.zip
7
-
8
  # Install dependencies
9
  COPY requirements.txt .
 
10
  RUN pip install --upgrade pip && \
11
  pip install --no-cache-dir -r requirements.txt
12
 
 
2
 
3
  WORKDIR /app
4
 
 
 
 
5
  # Install dependencies
6
  COPY requirements.txt .
7
+
8
  RUN pip install --upgrade pip && \
9
  pip install --no-cache-dir -r requirements.txt
10