Commit ·
3ec7d8f
1
Parent(s): 345a372
first
Browse files- Dockerfile +6 -2
Dockerfile
CHANGED
|
@@ -8,8 +8,12 @@ WORKDIR /app
|
|
| 8 |
ENV PATH="/home/user/.local/bin:$PATH"
|
| 9 |
|
| 10 |
# Copy requirements file first
|
| 11 |
-
COPY
|
| 12 |
-
COPY
|
|
|
|
|
|
|
|
|
|
|
|
|
| 13 |
|
| 14 |
# Install deps as root
|
| 15 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
|
|
|
| 8 |
ENV PATH="/home/user/.local/bin:$PATH"
|
| 9 |
|
| 10 |
# Copy requirements file first
|
| 11 |
+
COPY requirements/requirement.txt ./requirements.txt
|
| 12 |
+
COPY lib/ ./lib/
|
| 13 |
+
|
| 14 |
+
RUN pwd
|
| 15 |
+
|
| 16 |
+
RUN ls
|
| 17 |
|
| 18 |
# Install deps as root
|
| 19 |
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|