Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
@@ -11,7 +11,7 @@ COPY . /app
|
|
11 |
ENV PYANNOTE_CACHE=/app/.cache
|
12 |
|
13 |
# Install dependencies
|
14 |
-
RUN pip install --no-cache-dir -r requirements.txt
|
15 |
|
16 |
# Expose the port that your endpoint will listen on (if needed)
|
17 |
EXPOSE 8080
|
|
|
11 |
ENV PYANNOTE_CACHE=/app/.cache
|
12 |
|
13 |
# Install dependencies
|
14 |
+
RUN pip install --no-cache-dir --root-user-action=ignore -r requirements.txt
|
15 |
|
16 |
# Expose the port that your endpoint will listen on (if needed)
|
17 |
EXPOSE 8080
|