Skip to content

Commit

Permalink
Fix numpy build error, add some dev dependencies (jq, nano) #6
Browse files Browse the repository at this point in the history
  • Loading branch information
akarve authored Jul 31, 2020
2 parents 5db93c2 + c53360f commit ef2c2a5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
17 changes: 10 additions & 7 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,16 @@ FROM amazonlinux:2018.03
# Need to set "ulimit -n" to a small value to stop yum from hanging:
# https://bugzilla.redhat.com/show_bug.cgi?id=1715254#c1
RUN ulimit -n 1024 && yum -y update && yum -y install \
git \
gcc \
python36 \
python36-pip \
python36-devel \
zip \
&& yum clean all
git \
gcc \
python36 \
python36-pip \
python36-devel \
jq \
nano \
unzip \
zip \
&& yum clean all

COPY requirements.txt quilt/requirements.txt

Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# from `pip freeze` under Python 3.6 lambda image 16-Apr-2020
boto3==1.12.22
botocore==1.15.22
Cython==0.29.16
Cython==0.29.21
docutils==0.15.2
jmespath==0.9.5
python-dateutil==2.8.1
Expand Down

0 comments on commit ef2c2a5

Please sign in to comment.