1
0
mirror of https://github.com/bitwarden/server.git synced 2025-05-23 04:21:05 -05:00

fix: rm extraneous source revision id arg

This commit is contained in:
tangowithfoxtrot 2025-05-19 13:42:49 -07:00
parent 50df44ba87
commit 54f3d6b977
No known key found for this signature in database

View File

@ -27,13 +27,12 @@ RUN . /tmp/rid.txt && dotnet restore -r $RID
# Build project # Build project
RUN . /tmp/rid.txt && dotnet publish \ RUN . /tmp/rid.txt && dotnet publish \
-c release \ -c release \
--no-restore \ --no-restore \
--self-contained \ --self-contained \
/p:PublishSingleFile=true \ /p:PublishSingleFile=true \
/p:SourceRevisionId="$GIT_COMMIT" \ -r $RID \
-r $RID \ -o out
-o out
WORKDIR /app WORKDIR /app