Update Dockerfile
Browse files- Dockerfile +1 -2
Dockerfile
CHANGED
@@ -8,9 +8,8 @@ WORKDIR "app"
|
|
8 |
RUN mkdir -p /app/data
|
9 |
RUN chmod -R 777 /app/data
|
10 |
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
11 |
|
12 |
EXPOSE 5005
|
13 |
|
14 |
-
ENV API_PREFIX="nai"
|
15 |
-
|
16 |
CMD ["python", "app.py", "--host", "0.0.0.0:5005"]
|
|
|
8 |
RUN mkdir -p /app/data
|
9 |
RUN chmod -R 777 /app/data
|
10 |
RUN pip install --no-cache-dir -r requirements.txt
|
11 |
+
RUN pip install python-multipart
|
12 |
|
13 |
EXPOSE 5005
|
14 |
|
|
|
|
|
15 |
CMD ["python", "app.py", "--host", "0.0.0.0:5005"]
|