Krishna Prakash
commited on
Commit
·
98dac34
1
Parent(s):
8f64a95
Remove redundant loguru from pip install to fix build error
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
# Use official Python 3.
|
2 |
FROM python:3.2
|
3 |
|
4 |
# Set working directory to /app (root of the repository)
|
@@ -7,8 +7,8 @@ WORKDIR /app
|
|
7 |
# Copy requirements file
|
8 |
COPY ./requirements.txt /app/requirements.txt
|
9 |
|
10 |
-
# Install dependencies
|
11 |
-
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
12 |
|
13 |
# Copy the entire project
|
14 |
COPY . /app
|
|
|
1 |
+
# Use official Python 3.2 image
|
2 |
FROM python:3.2
|
3 |
|
4 |
# Set working directory to /app (root of the repository)
|
|
|
7 |
# Copy requirements file
|
8 |
COPY ./requirements.txt /app/requirements.txt
|
9 |
|
10 |
+
# Install dependencies from requirements.txt only
|
11 |
+
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
12 |
|
13 |
# Copy the entire project
|
14 |
COPY . /app
|