Skip to content

Commit

Permalink
Added Cirro dependency psutils and fixed a couple docker build warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
crosenth committed Jul 11, 2024
1 parent 2b8d590 commit cf786f7
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
FROM python:3.11-slim-bullseye

RUN apt-get -y update && \
apt-get install -y unzip wget
RUN apt-get -y update && apt-get upgrade -y && apt-get install -y \
unzip \
wget \
# Cirro requirement
psutils

WORKDIR /opt/build
COPY dev/install_pplacer.sh /opt/build/install_pplacer.sh
RUN /opt/build/install_pplacer.sh /usr/local

COPY setup.py MANIFEST.in README.rst requirements.txt /opt/build
COPY taxtastic /opt/build/taxtastic
RUN python3 -m pip install --constraint requirements.txt .
COPY setup.py MANIFEST.in README.rst requirements.txt /opt/build/
COPY taxtastic /opt/build/taxtastic/
RUN python3 -m pip install --root-user-action=ignore --upgrade pip && \
python3 -m pip install --constraint requirements.txt --root-user-action=ignore .

WORKDIR /opt/run
RUN mkdir -p /app /fh /mnt /run/shm
Expand Down

0 comments on commit cf786f7

Please sign in to comment.