Update Dockerfile
Browse files- Dockerfile +3 -1
Dockerfile
CHANGED
|
@@ -14,8 +14,10 @@ WORKDIR /app
|
|
| 14 |
# clone repo
|
| 15 |
RUN git clone https://github.com/gilangf3000/rAI.git .
|
| 16 |
|
|
|
|
|
|
|
| 17 |
# install dependencies
|
| 18 |
-
RUN pip install --no-cache-dir -r
|
| 19 |
|
| 20 |
EXPOSE 51379
|
| 21 |
|
|
|
|
| 14 |
# clone repo
|
| 15 |
RUN git clone https://github.com/gilangf3000/rAI.git .
|
| 16 |
|
| 17 |
+
WORKDIR /app/backend
|
| 18 |
+
|
| 19 |
# install dependencies
|
| 20 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 21 |
|
| 22 |
EXPOSE 51379
|
| 23 |
|