Update Dockerfile
Browse files- Dockerfile +1 -14
Dockerfile
CHANGED
|
@@ -183,20 +183,7 @@ RUN apt-get update && \
|
|
| 183 |
chown -R user:user /app
|
| 184 |
|
| 185 |
# Install runtime dependencies with proper repository update
|
| 186 |
-
RUN
|
| 187 |
-
apt-get install -y --no-install-recommends \
|
| 188 |
-
build-essential \
|
| 189 |
-
nodejs \
|
| 190 |
-
npm \
|
| 191 |
-
libgmp-dev \
|
| 192 |
-
libmpfr-dev \
|
| 193 |
-
libmpc-dev \
|
| 194 |
-
libssl-dev \
|
| 195 |
-
postgresql-client \
|
| 196 |
-
redis-tools && \
|
| 197 |
-
apt-get clean && \
|
| 198 |
-
rm -rf /var/lib/apt/lists/* && \
|
| 199 |
-
pip install --no-cache-dir \
|
| 200 |
gunicorn \
|
| 201 |
gevent \
|
| 202 |
grpcio \
|
|
|
|
| 183 |
chown -R user:user /app
|
| 184 |
|
| 185 |
# Install runtime dependencies with proper repository update
|
| 186 |
+
RUN pip install --no-cache-dir \
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 187 |
gunicorn \
|
| 188 |
gevent \
|
| 189 |
grpcio \
|