Skip to content

Commit

Permalink
Fix Docker build problems
Browse files Browse the repository at this point in the history
  • Loading branch information
failys committed Nov 30, 2019
1 parent bb94a62 commit c64c4ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
FROM ubuntu:latest
MAINTAINER Shamal Faily <admin@cairis.org>
RUN apt-get update
RUN apt-get install -y python3-dev
RUN pip3 install wheel
RUN apt-get install -y build-essential
RUN apt-get install -y python3-dev
RUN apt-get install -y mysql-client
RUN apt-get install -y graphviz
RUN apt-get install -y python3-pip
Expand All @@ -21,7 +22,6 @@ RUN apt-get install -y ca-certificates

COPY requirements.txt /
COPY wsgi_requirements.txt /
RUN pip3 install wheel
RUN pip3 install -r requirements.txt
RUN pip3 install -r wsgi_requirements.txt
ENV CAIRIS_SRC=/cairis/cairis
Expand Down
2 changes: 1 addition & 1 deletion docker/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ argparse>=1.4.0
coveralls>=1.1
coverage>=4.2
jsonpickle>=0.9.3
mysqlclient==1.4.4
mysqlclient>=1.4.4
numpy>=1.6.2
pyparsing>=2.1.10
pydot>=1.2.3
Expand Down

0 comments on commit c64c4ee

Please sign in to comment.