Commit 2ea43bfd30305059b3488b5084679a6ffd41dcab
1 parent
b867d614
Exists in
master
and in
18 other branches
Add Dockerfile to build Debian Jessie CI image
Showing
1 changed file
with
10 additions
and
0 deletions
Show diff stats
| @@ -0,0 +1,10 @@ | @@ -0,0 +1,10 @@ | ||
| 1 | +FROM debian:jessie | ||
| 2 | +MAINTAINER Noosfero Development Team <noosfero-dev@listas.softwarelivre.org> | ||
| 3 | + | ||
| 4 | +RUN apt-get update && apt-get install -y sudo git | ||
| 5 | +RUN git clone --depth 1 https://gitlab.com/noosfero/noosfero.git /var/tmp/noosfero | ||
| 6 | +RUN cd /var/tmp/noosfero && ./script/set-apt-proxy | ||
| 7 | +RUN cd /var/tmp/noosfero && ./script/quick-start | ||
| 8 | +RUN rm -rf /var/tmp/noosfero | ||
| 9 | +RUN apt-get clean | ||
| 10 | +RUN rm -f /etc/apt/apt.conf.d/01proxy |