Skip to content

Commit

Permalink
add git and less to dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
psathyrella committed Feb 26, 2024
1 parent c70f5da commit 4754846
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ RUN apt-get --allow-releaseinfo-change update && apt-get install -y \
cmake \
emacs \
fonts-lato \
git \
less \
libboost-dev \
libgsl-dev \
libncurses-dev \
Expand All @@ -27,8 +29,8 @@ RUN micromamba install -y -c conda-forge -c bioconda -cbiocore -c etetoolkit \
mafft circlify ete3
RUN pip install colored-traceback dendropy levenshtein
ENV XDG_RUNTIME_DIR=/tmp/xdgrd
RUN mkdir /tmp/xdgrd
RUN chmod 0700 /tmp/xdgrd
RUN mkdir $XDG_RUNTIME_DIR
RUN chmod 0700 $XDG_RUNTIME_DIR
COPY --chown=$MAMBA_USER:$MAMBA_USER_GID . /partis
WORKDIR /partis
RUN ./bin/build.sh
Expand Down

0 comments on commit 4754846

Please sign in to comment.