Fix dependency versions in Dockerfile

This commit is contained in:
dev
2026-05-03 14:46:42 +02:00
parent 294ae08cda
commit 1f748d967b
+7 -4
View File
@@ -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 && \