Fix dependency versions in Dockerfile
This commit is contained in:
+7
-4
@@ -19,12 +19,15 @@ RUN apt-get update && \
|
|||||||
# PIP3
|
# PIP3
|
||||||
RUN pip3 install supervisor &&\
|
RUN pip3 install supervisor &&\
|
||||||
pip3 install requests &&\
|
pip3 install requests &&\
|
||||||
pip3 install flask-login &&\
|
pip3 install "flask-login" &&\
|
||||||
pip3 install FreeTAKServer==${FTS_VERSION} && \
|
pip3 install "FreeTAKServer==${FTS_VERSION}" && \
|
||||||
pip3 install FreeTAKServer-UI==${FTS_UI_VERSION} && \
|
pip3 install "FreeTAKServer-UI==${FTS_UI_VERSION}" && \
|
||||||
pip3 install defusedxml &&\
|
pip3 install defusedxml &&\
|
||||||
pip3 install pyopenssl &&\
|
pip3 install pyopenssl &&\
|
||||||
pip3 install pytak
|
pip3 install pytak && \
|
||||||
|
pip3 install "markupsafe==2.0.1" && \
|
||||||
|
pip3 install "jinja2==3.0.3" && \
|
||||||
|
pip3 install "flask==2.0.3"
|
||||||
|
|
||||||
# Create FTS user
|
# Create FTS user
|
||||||
RUN addgroup --gid 1000 fts && \
|
RUN addgroup --gid 1000 fts && \
|
||||||
|
|||||||
Reference in New Issue
Block a user