From 4ea3437dfab423b6710b32b2aa9d50f9f750bed9 Mon Sep 17 00:00:00 2001 From: Nicolas Duchon Date: Wed, 9 Mar 2022 12:05:56 +0100 Subject: [PATCH] chore: include license into the Docker images --- .dockerignore | 1 - Dockerfile | 2 +- Dockerfile.alpine | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.dockerignore b/.dockerignore index 6849862..aad7a31 100644 --- a/.dockerignore +++ b/.dockerignore @@ -5,6 +5,5 @@ test .gitignore *.yml Dockerfile* -LICENSE Makefile README.md diff --git a/Dockerfile b/Dockerfile index 35a2dbb..8a46d97 100644 --- a/Dockerfile +++ b/Dockerfile @@ -67,7 +67,7 @@ COPY --from=dockergen /usr/local/bin/docker-gen /usr/local/bin/docker-gen COPY network_internal.conf /etc/nginx/ -COPY app nginx.tmpl /app/ +COPY app nginx.tmpl LICENSE /app/ WORKDIR /app/ ENTRYPOINT ["/app/docker-entrypoint.sh"] diff --git a/Dockerfile.alpine b/Dockerfile.alpine index 602c5f9..cc1247e 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -64,7 +64,7 @@ COPY --from=dockergen /usr/local/bin/docker-gen /usr/local/bin/docker-gen COPY network_internal.conf /etc/nginx/ -COPY app nginx.tmpl /app/ +COPY app nginx.tmpl LICENSE /app/ WORKDIR /app/ ENTRYPOINT ["/app/docker-entrypoint.sh"]