diff --git a/src/Admin/Dockerfile b/src/Admin/Dockerfile index ddb8bde229..bb62a37fe5 100644 --- a/src/Admin/Dockerfile +++ b/src/Admin/Dockerfile @@ -1,5 +1,7 @@ FROM microsoft/aspnetcore:2.0.6 +LABEL com.bitwarden.product="bitwarden" + RUN apt-get update \ && apt-get install -y --no-install-recommends \ gosu \ diff --git a/src/Api/Dockerfile b/src/Api/Dockerfile index 6caeab3e0f..9e443238f5 100644 --- a/src/Api/Dockerfile +++ b/src/Api/Dockerfile @@ -1,5 +1,7 @@ FROM microsoft/aspnetcore:2.0.6 +LABEL com.bitwarden.product="bitwarden" + RUN apt-get update \ && apt-get install -y --no-install-recommends \ cron \ diff --git a/src/Icons/Dockerfile b/src/Icons/Dockerfile index ddb8bde229..bb62a37fe5 100644 --- a/src/Icons/Dockerfile +++ b/src/Icons/Dockerfile @@ -1,5 +1,7 @@ FROM microsoft/aspnetcore:2.0.6 +LABEL com.bitwarden.product="bitwarden" + RUN apt-get update \ && apt-get install -y --no-install-recommends \ gosu \ diff --git a/src/Identity/Dockerfile b/src/Identity/Dockerfile index ddb8bde229..bb62a37fe5 100644 --- a/src/Identity/Dockerfile +++ b/src/Identity/Dockerfile @@ -1,5 +1,7 @@ FROM microsoft/aspnetcore:2.0.6 +LABEL com.bitwarden.product="bitwarden" + RUN apt-get update \ && apt-get install -y --no-install-recommends \ gosu \ diff --git a/util/Attachments/Dockerfile b/util/Attachments/Dockerfile index e17af14bd3..a0e897ea66 100644 --- a/util/Attachments/Dockerfile +++ b/util/Attachments/Dockerfile @@ -1,5 +1,7 @@ FROM bitwarden/server +LABEL com.bitwarden.product="bitwarden" + RUN apt-get update \ && apt-get install -y --no-install-recommends \ gosu \ diff --git a/util/MsSql/Dockerfile b/util/MsSql/Dockerfile index 320e08d57a..9613d3c77f 100644 --- a/util/MsSql/Dockerfile +++ b/util/MsSql/Dockerfile @@ -1,5 +1,7 @@ FROM microsoft/mssql-server-linux:2017-CU7 +LABEL com.bitwarden.product="bitwarden" + RUN apt-get update \ && apt-get install -y --no-install-recommends \ cron \ diff --git a/util/Nginx/Dockerfile b/util/Nginx/Dockerfile index 3c68583886..942e94dcf3 100644 --- a/util/Nginx/Dockerfile +++ b/util/Nginx/Dockerfile @@ -1,5 +1,7 @@ FROM nginx:1.12 +LABEL com.bitwarden.product="bitwarden" + RUN apt-get update \ && apt-get install -y --no-install-recommends \ gosu \ diff --git a/util/Server/Dockerfile b/util/Server/Dockerfile index 10d213f54f..896cef3b8f 100644 --- a/util/Server/Dockerfile +++ b/util/Server/Dockerfile @@ -1,2 +1,5 @@ FROM microsoft/aspnetcore:2.0.6 + +LABEL com.bitwarden.product="bitwarden" + COPY obj/Docker/publish /bitwarden_server diff --git a/util/Setup/Dockerfile b/util/Setup/Dockerfile index c1fad78c9c..bab4468127 100644 --- a/util/Setup/Dockerfile +++ b/util/Setup/Dockerfile @@ -1,5 +1,7 @@ FROM microsoft/dotnet:2.0.6-runtime +LABEL com.bitwarden.product="bitwarden" + RUN apt-get update \ && apt-get install -y --no-install-recommends \ openssl \