Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -30,6 +30,8 @@ RUN rm -f /etc/apt/sources.list.d/*.list && \
|
|
| 30 |
software-properties-common \
|
| 31 |
&& rm -rf /var/lib/apt/lists/*
|
| 32 |
|
|
|
|
|
|
|
| 33 |
RUN add-apt-repository ppa:flexiondotorg/nvtop && \
|
| 34 |
apt-get upgrade -y && \
|
| 35 |
apt-get install -y --no-install-recommends nvtop
|
|
@@ -78,7 +80,6 @@ RUN pip install glances
|
|
| 78 |
RUN pip install fastapi
|
| 79 |
RUN pip install uvicorn
|
| 80 |
RUN pip install Jinja2==3.1.2
|
| 81 |
-
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 82 |
RUN pip uninstall numpy -y
|
| 83 |
RUN pip install jq
|
| 84 |
RUN apt update && apt upgrade -y
|
|
|
|
| 30 |
software-properties-common \
|
| 31 |
&& rm -rf /var/lib/apt/lists/*
|
| 32 |
|
| 33 |
+
RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 34 |
+
|
| 35 |
RUN add-apt-repository ppa:flexiondotorg/nvtop && \
|
| 36 |
apt-get upgrade -y && \
|
| 37 |
apt-get install -y --no-install-recommends nvtop
|
|
|
|
| 80 |
RUN pip install fastapi
|
| 81 |
RUN pip install uvicorn
|
| 82 |
RUN pip install Jinja2==3.1.2
|
|
|
|
| 83 |
RUN pip uninstall numpy -y
|
| 84 |
RUN pip install jq
|
| 85 |
RUN apt update && apt upgrade -y
|