Ensure latest pip is in docker image

this patch adds a command to update pip in both Dockerfile's
This commit is contained in:
Hemna 2024-04-08 17:00:42 -04:00
parent 1267a53ec8
commit a839dbd3c5
2 changed files with 2 additions and 0 deletions

View File

@ -34,6 +34,7 @@ RUN set -ex \
FROM build as final
WORKDIR /app
RUN pip3 install -U pip
RUN pip3 install aprsd==$APRSD_PIP_VERSION
RUN pip install gevent uwsgi
RUN which aprsd

View File

@ -33,6 +33,7 @@ FROM build as final
WORKDIR /app
RUN git clone -b $APRSD_BRANCH https://github.com/craigerl/aprsd
RUN pip install -U pip
RUN cd aprsd && pip install --no-cache-dir .
RUN pip install gevent uwsgi
RUN which aprsd