Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -8,6 +8,7 @@ WORKDIR /code
|
|
8 |
COPY ./requirements.txt /code/requirements.txt
|
9 |
|
10 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
|
|
11 |
|
12 |
COPY . .
|
13 |
|
|
|
8 |
COPY ./requirements.txt /code/requirements.txt
|
9 |
|
10 |
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
|
11 |
+
RUN pip install fastapi uvicorn flask
|
12 |
|
13 |
COPY . .
|
14 |
|