Skip to content
This repository was archived by the owner on Nov 16, 2022. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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/*

Expand All @@ -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 && \
Expand Down