1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00
This commit is contained in:
Vince Grassia 2025-03-10 16:01:19 -04:00
parent e305e1490d
commit b89a04d7ff
No known key found for this signature in database
GPG Key ID: 9AD7505E8448CC08

View File

@ -27,7 +27,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
ARG NODE_VERSION=16.20.2
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 \
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash \
&& . $NVM_DIR/nvm.sh \
&& nvm install $NODE_VERSION \
&& nvm alias default $NODE_VERSION \
@ -77,6 +77,7 @@ COPY .git/. ./.git/
# Build project
WORKDIR /source/src/Admin
RUN npm ci
RUN npm run build
RUN . /tmp/rid.txt && dotnet publish -c release -o /app/Admin --no-restore --no-self-contained -r $RID