Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -12,6 +12,7 @@ RUN apt-get update && \
|
|
12 |
apt-get install -y gcc && \
|
13 |
pip install --no-cache-dir --upgrade pip && \
|
14 |
pip install --no-cache-dir -r requirements.txt && \
|
|
|
15 |
apt-get remove -y gcc && \
|
16 |
apt-get autoremove -y && \
|
17 |
rm -rf /var/lib/apt/lists/*
|
|
|
12 |
apt-get install -y gcc && \
|
13 |
pip install --no-cache-dir --upgrade pip && \
|
14 |
pip install --no-cache-dir -r requirements.txt && \
|
15 |
+
pip install --no-cache-dir pyflakes &&\
|
16 |
apt-get remove -y gcc && \
|
17 |
apt-get autoremove -y && \
|
18 |
rm -rf /var/lib/apt/lists/*
|