Skip to content

Commit

Permalink
updated docker container to install wget, less, and vim; also fixed r…
Browse files Browse the repository at this point in the history
…equirements for numpy
  • Loading branch information
stevemussmann committed Feb 18, 2022
1 parent 8c6a095 commit fb96174
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ ENV HOME /home/$USERNAME
ENV IMAGE_NAME $IMAGE_NAME
ENV IMAGE_TAG $IMAGE_TAG

RUN apt-get update && apt-get install -y --no-install-recommends build-essential r-base r-base-dev python3.6 python3-pip python3-setuptools python3-dev git autoconf automake
RUN apt-get update && apt-get install -y --no-install-recommends build-essential r-base r-base-dev python3.6 python3-pip python3-setuptools python3-dev git autoconf automake vim wget less

WORKDIR /app

Expand Down Expand Up @@ -93,5 +93,5 @@ RUN echo "export PATH=/app/bin:/app/scripts/python/admixturePipeline:${PATH}" >>

USER $USER

WORKDIR /app
WORKDIR /app/data

4 changes: 2 additions & 2 deletions Docker/buildDocker.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

#docker image build --no-cache -t admixpipe --file Dockerfile .
docker image build -t admixpipe --file Dockerfile .
docker image build --no-cache -t admixpipe --file Dockerfile .
#docker image build -t admixpipe --file Dockerfile .


exit
1 change: 1 addition & 0 deletions Docker/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ geopandas==0.9.0
pandas==1.1.5
rpy2==3.4.3
matplotlib==3.3.4
numpy==1.22.2

0 comments on commit fb96174

Please sign in to comment.