Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add git-archive-all to Dockerfile. #1

Merged
merged 1 commit into from
Mar 1, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
FROM ubuntu:14.04
MAINTAINER [email protected]

RUN apt-get -y update
ADD build.sh /build.sh
RUN apt-get -y update
RUN apt-get -y install git rpl zip make nsis
RUN git clone git://github.com/AIFDR/inasafe.git
RUN apt-get -y install python-pip
RUN pip install git-archive-all pep8
RUN git clone git://github.com/inasafe/inasafe.git

ADD package-cron /etc/cron.d/package-cron
RUN chmod +x /etc/cron.d/package-cron
Expand Down