diff --git a/Dockerfile b/Dockerfile index c62129d..2c23dfb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,7 @@ RUN ln -fs /usr/share/zoneinfo/UTC /etc/localtime #APT RUN apt-get update && \ + apt-get -y upgrade && \ apt-get install -y libssl-dev libffi-dev curl python3 python3-pip libxml2-dev libxslt-dev python3-lxml python3-dev python3-setuptools build-essential &&\ rm -rf /var/lib/apt/lists/* @@ -21,8 +22,8 @@ RUN pip3 install supervisor &&\ pip3 install FreeTAKServer==${FTS_VERSION} && \ pip3 install FreeTAKServer-UI==${FTS_UI_VERSION} && \ pip3 install defusedxml &&\ - pip3 install pyopenssl &&\ - pip3 install pytak + pip3 install pyopenssl + # Create FTS user RUN addgroup --gid 1000 fts && \