aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Dockerfile (renamed from docker/Dockerfile)6
-rw-r--r--docker/README.md8
2 files changed, 11 insertions, 3 deletions
diff --git a/docker/Dockerfile b/Dockerfile
index c91ce4210..4fdd91f60 100644
--- a/docker/Dockerfile
+++ b/Dockerfile
@@ -77,7 +77,7 @@ RUN git clone $GNURL_GIT_URL \
77ENV GNUNET_PREFIX /usr/local/gnunet 77ENV GNUNET_PREFIX /usr/local/gnunet
78ENV CFLAGS '-g -Wall -O0' 78ENV CFLAGS '-g -Wall -O0'
79 79
80COPY ../ /gnunet 80COPY . /gnunet
81 81
82RUN cd /gnunet && \ 82RUN cd /gnunet && \
83 ./bootstrap && \ 83 ./bootstrap && \
@@ -92,8 +92,8 @@ RUN cd /gnunet && \
92 rm -fr /gnunet 92 rm -fr /gnunet
93 93
94# Configure GNUnet 94# Configure GNUnet
95COPY gnunet.conf /etc/gnunet.conf 95COPY docker/gnunet.conf /etc/gnunet.conf
96COPY docker-entrypoint.sh /usr/local/bin/docker-entrypoint 96COPY docker/docker-entrypoint.sh /usr/local/bin/docker-entrypoint
97RUN chmod 755 /usr/local/bin/docker-entrypoint 97RUN chmod 755 /usr/local/bin/docker-entrypoint
98 98
99ENV LOCAL_PORT_RANGE='40001 40200' 99ENV LOCAL_PORT_RANGE='40001 40200'
diff --git a/docker/README.md b/docker/README.md
index 4e0e6b951..ce05012fc 100644
--- a/docker/README.md
+++ b/docker/README.md
@@ -7,6 +7,14 @@ A Dockerfile (and maybe later docker-compose.yml) for getting a running GNUnet d
7## Build it 7## Build it
8This will take quite a while and will consume a bit of data. 8This will take quite a while and will consume a bit of data.
9 9
10First you need to go to the root of this repo.
11
12```bash
13cd ..
14```
15
16Now you can build the image.
17
10```bash 18```bash
11docker build -t gnunet . 19docker build -t gnunet .
12``` 20```