Update Dockerfile
#3
by
Vallabhpatil777
- opened
- Dockerfile +1 -0
Dockerfile
CHANGED
|
@@ -12,6 +12,7 @@ RUN apt-get update && apt-get install -y \
|
|
| 12 |
COPY requirements.txt ./
|
| 13 |
COPY src/ ./src/
|
| 14 |
COPY main.py ./
|
|
|
|
| 15 |
|
| 16 |
|
| 17 |
RUN pip3 install -r requirements.txt
|
|
|
|
| 12 |
COPY requirements.txt ./
|
| 13 |
COPY src/ ./src/
|
| 14 |
COPY main.py ./
|
| 15 |
+
COPY . .
|
| 16 |
|
| 17 |
|
| 18 |
RUN pip3 install -r requirements.txt
|