Commit 22b1f0fdc489b389b4ca25226a846415a5ec3810
1 parent
e5f6a996
Exists in
master
and in
29 other branches
dockerfile: add build instructions for development environment
Adding a Dockerfile that builds de development environment. I pushed the first built machine with this Dockerfile on the following repository: https://hub.docker.com/r/noosfero/dev/ I'm assuming the responsibility on maintaining this image updated with the lastest master branch. Whoever feels like help maintaining it send an email to noosfero-dev requesting access to the repository.
Showing
1 changed file
with
16 additions
and
0 deletions
Show diff stats
| ... | ... | @@ -0,0 +1,16 @@ |
| 1 | +# Noosfero development environment | |
| 2 | +# | |
| 3 | +# VERSION 0.0.1 | |
| 4 | + | |
| 5 | +FROM debian:wheezy | |
| 6 | +MAINTAINER Noosfero Development Team <noosfero-dev@listas.softwarelivre.org> | |
| 7 | + | |
| 8 | +LABEL Description="This dockerfile builds a noosfero development environment." | |
| 9 | +WORKDIR /src/noosfero | |
| 10 | + | |
| 11 | +RUN apt-get update && apt-get install -y sudo git | |
| 12 | +RUN git clone --depth 1 https://gitlab.com/noosfero/noosfero.git . | |
| 13 | + | |
| 14 | +RUN sh script/quick-start --skip-translations | |
| 15 | + | |
| 16 | +EXPOSE 3000 | ... | ... |