diff options
-rw-r--r-- | docker/biboumi/alpine/Dockerfile (renamed from docker/biboumi/Dockerfile) | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/docker/biboumi/Dockerfile b/docker/biboumi/alpine/Dockerfile index 67f0f41..da60796 100644 --- a/docker/biboumi/Dockerfile +++ b/docker/biboumi/alpine/Dockerfile @@ -1,4 +1,9 @@ # This Dockerfile creates a docker image running biboumi +# +# It is built by compiling the sources and all its dependencies +# directly inside the image. +# This is the prefered way to build the release image, used by the +# end users, in production. FROM docker.io/alpine:latest @@ -32,7 +37,7 @@ RUN adduser biboumi -D -h /home/biboumi RUN mkdir /var/lib/biboumi RUN chown -R biboumi:biboumi /var/lib/biboumi -COPY ./biboumi.cfg /etc/biboumi/biboumi.cfg +COPY ../biboumi.cfg /etc/biboumi/biboumi.cfg RUN chown -R biboumi:biboumi /etc/biboumi WORKDIR /home/biboumi |