diff --git a/bitwarden_license/src/Scim/Dockerfile b/bitwarden_license/src/Scim/Dockerfile index ce2b29e5c9..c3d97e4758 100644 --- a/bitwarden_license/src/Scim/Dockerfile +++ b/bitwarden_license/src/Scim/Dockerfile @@ -53,7 +53,7 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0 ARG TARGETPLATFORM LABEL com.bitwarden.product="bitwarden" ENV ASPNETCORE_ENVIRONMENT=Production -ENV ASPNETCORE_URLS http://+:5000 +ENV ASPNETCORE_URLS=http://+:5000 EXPOSE 5000 RUN apt-get update \ diff --git a/bitwarden_license/src/Sso/Dockerfile b/bitwarden_license/src/Sso/Dockerfile index a8343a8048..a25eba6ae9 100644 --- a/bitwarden_license/src/Sso/Dockerfile +++ b/bitwarden_license/src/Sso/Dockerfile @@ -6,7 +6,7 @@ FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:8.0 AS build # Docker buildx supplies the value for this arg ARG TARGETPLATFORM ENV NODE_VERSION=16.20.2 -ENV NVM_DIR /usr/local/nvm +ENV NVM_DIR=/usr/local/nvm # Determine proper runtime value for .NET # We put the value in a file to be read by later layers. @@ -31,8 +31,8 @@ RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | b && nvm install $NODE_VERSION \ && nvm alias default $NODE_VERSION \ && nvm use default -ENV NODE_PATH $NVM_DIR/versions/node/v$NODE_VERSION/lib/node_modules -ENV PATH $NVM_DIR/versions/node/v$NODE_VERSION/bin:$PATH +ENV NODE_PATH=$NVM_DIR/versions/node/v$NODE_VERSION/lib/node_modules +ENV PATH=$NVM_DIR/versions/node/v$NODE_VERSION/bin:$PATH # Copy csproj files as distinct layers WORKDIR /source @@ -72,7 +72,7 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0 ARG TARGETPLATFORM LABEL com.bitwarden.product="bitwarden" ENV ASPNETCORE_ENVIRONMENT=Production -ENV ASPNETCORE_URLS http://+:5000 +ENV ASPNETCORE_URLS=http://+:5000 EXPOSE 5000 RUN apt-get update \ diff --git a/src/Admin/Dockerfile b/src/Admin/Dockerfile index d73edcb3d0..c8e54b45e8 100644 --- a/src/Admin/Dockerfile +++ b/src/Admin/Dockerfile @@ -25,15 +25,15 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ # Set up Node ARG NODE_VERSION=16.20.2 -ENV NVM_DIR /usr/local/nvm +ENV NVM_DIR=/usr/local/nvm RUN mkdir -p $NVM_DIR RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.5/install.sh | bash \ && . $NVM_DIR/nvm.sh \ && nvm install $NODE_VERSION \ && nvm alias default $NODE_VERSION \ && nvm use default -ENV NODE_PATH $NVM_DIR/versions/node/v$NODE_VERSION/lib/node_modules -ENV PATH $NVM_DIR/versions/node/v$NODE_VERSION/bin:$PATH +ENV NODE_PATH=$NVM_DIR/versions/node/v$NODE_VERSION/lib/node_modules +ENV PATH=$NVM_DIR/versions/node/v$NODE_VERSION/bin:$PATH # Copying package.json, package-lock.json, and packages.lock.json WORKDIR /source/src/Admin @@ -90,7 +90,7 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0 ARG TARGETPLATFORM LABEL com.bitwarden.product="bitwarden" ENV ASPNETCORE_ENVIRONMENT=Production -ENV ASPNETCORE_URLS http://+:5000 +ENV ASPNETCORE_URLS=http://+:5000 EXPOSE 5000 RUN apt-get update && apt-get install -y --no-install-recommends \ diff --git a/src/Api/Dockerfile b/src/Api/Dockerfile index bacfb6a312..d88e31bc22 100644 --- a/src/Api/Dockerfile +++ b/src/Api/Dockerfile @@ -57,7 +57,7 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0 ARG TARGETPLATFORM LABEL com.bitwarden.product="bitwarden" ENV ASPNETCORE_ENVIRONMENT=Production -ENV ASPNETCORE_URLS http://+:5000 +ENV ASPNETCORE_URLS=http://+:5000 EXPOSE 5000 RUN apt-get update \ diff --git a/src/Billing/Dockerfile b/src/Billing/Dockerfile index 6b58185585..1e47c2ada9 100644 --- a/src/Billing/Dockerfile +++ b/src/Billing/Dockerfile @@ -53,7 +53,7 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0 ARG TARGETPLATFORM LABEL com.bitwarden.product="bitwarden" ENV ASPNETCORE_ENVIRONMENT=Production -ENV ASPNETCORE_URLS http://+:5000 +ENV ASPNETCORE_URLS=http://+:5000 EXPOSE 5000 RUN apt-get update \ diff --git a/src/Events/Dockerfile b/src/Events/Dockerfile index fddc1367e5..6cc8ef2438 100644 --- a/src/Events/Dockerfile +++ b/src/Events/Dockerfile @@ -53,7 +53,7 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0 ARG TARGETPLATFORM LABEL com.bitwarden.product="bitwarden" ENV ASPNETCORE_ENVIRONMENT=Production -ENV ASPNETCORE_URLS http://+:5000 +ENV ASPNETCORE_URLS=http://+:5000 EXPOSE 5000 RUN apt-get update \ diff --git a/src/EventsProcessor/Dockerfile b/src/EventsProcessor/Dockerfile index fa302b7375..16a13851aa 100644 --- a/src/EventsProcessor/Dockerfile +++ b/src/EventsProcessor/Dockerfile @@ -53,7 +53,7 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0 ARG TARGETPLATFORM LABEL com.bitwarden.product="bitwarden" ENV ASPNETCORE_ENVIRONMENT=Production -ENV ASPNETCORE_URLS http://+:5000 +ENV ASPNETCORE_URLS=http://+:5000 EXPOSE 5000 RUN apt-get update \ diff --git a/src/Icons/Dockerfile b/src/Icons/Dockerfile index f8c26ccbcf..12d8700179 100644 --- a/src/Icons/Dockerfile +++ b/src/Icons/Dockerfile @@ -53,7 +53,7 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0 ARG TARGETPLATFORM LABEL com.bitwarden.product="bitwarden" ENV ASPNETCORE_ENVIRONMENT=Production -ENV ASPNETCORE_URLS http://+:5000 +ENV ASPNETCORE_URLS=http://+:5000 EXPOSE 5000 RUN apt-get update \ diff --git a/src/Identity/Dockerfile b/src/Identity/Dockerfile index 1ad1bad8cb..715f779b27 100644 --- a/src/Identity/Dockerfile +++ b/src/Identity/Dockerfile @@ -53,7 +53,7 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0 ARG TARGETPLATFORM LABEL com.bitwarden.product="bitwarden" ENV ASPNETCORE_ENVIRONMENT=Production -ENV ASPNETCORE_URLS http://+:5000 +ENV ASPNETCORE_URLS=http://+:5000 EXPOSE 5000 RUN apt-get update \ diff --git a/src/Notifications/Dockerfile b/src/Notifications/Dockerfile index 26ed86d2ce..fc42b07542 100644 --- a/src/Notifications/Dockerfile +++ b/src/Notifications/Dockerfile @@ -53,7 +53,7 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0 ARG TARGETPLATFORM LABEL com.bitwarden.product="bitwarden" ENV ASPNETCORE_ENVIRONMENT=Production -ENV ASPNETCORE_URLS http://+:5000 +ENV ASPNETCORE_URLS=http://+:5000 EXPOSE 5000 RUN apt-get update \ diff --git a/util/Attachments/Dockerfile b/util/Attachments/Dockerfile index 623b5c7466..5dc211d148 100644 --- a/util/Attachments/Dockerfile +++ b/util/Attachments/Dockerfile @@ -45,7 +45,7 @@ FROM mcr.microsoft.com/dotnet/aspnet:8.0 ARG TARGETPLATFORM LABEL com.bitwarden.product="bitwarden" ENV ASPNETCORE_ENVIRONMENT=Production -ENV ASPNETCORE_URLS http://+:5000 +ENV ASPNETCORE_URLS=http://+:5000 EXPOSE 5000 RUN apt-get update \